Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

holydragon

Archived
  • Posts

    34
  • Joined

  • Last visited

Profile Information

  • Real Name
    Eliot Geathers

holydragon's Achievements

  1. Hello, I'm using an old version of an Authorize.net module that has never given me a problem. I now have a need to store credit card information this module doesn't do so automatically. Can anyone advise me on how to store information with this module? Regards, HD /* $Id: authorizenet.php,v 1.48 2003/04/10 21:42:30 project3000 Exp $
  2. Hello, I install the contribution and the discount appear in the product info but I get the following error when I go to my shopping cart. Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in underdevelopment.com/includes/functions/database.php on line 99 I write over the shopping_cart.php class with my original and the error goes away (but of course I no longer have the discount functionality)... Any ideas what could be going wrong. The database.php file has not been modified. but here is the line that is has the problem. function tep_db_fetch_array($db_query) { return mysql_fetch_array($db_query, MYSQL_ASSOC); [LINE 99] } any ideas? HD P.S. I posted this in the wrong area a few moments ago.
  3. When I say header info, I'm referring to the Meta Tag info. for college.php I have input keywords and description: keyword: test description: test None of the default options are checked in the Include: area If I log out of my store admin area and log back in the keyword: test and description: test still appear when I select college.php. however, when I select the view result checkbox all of the default store information appears in the keyword and description box. Any thoughts? Regards, HD thanks for the feedback Jack. I think I started selecting the various options when the corresponding header tag information for the page did not appear. I have unchecked all options and now I receive the default page header info rather than what I have entered. The original 'missing sort order' message has disappeared; however, the header information still doesn't appear. Any thoughts?
  4. I mean the Meta tags on the webpage appear with the default information (keywords, description, etc..). The admin textboxes show the information that I want displayed; however, when I select view the default information appears in the boxes below. The default options are not selected for this page either. Regards, HD thanks for the feedback Jack. I think I started selecting the various options when the corresponding header tag information for the page did not appear. I have unchecked all options and now I receive the default page header info rather than what I have entered. The original 'missing sort order' message has disappeared; however, the header information still doesn't appear. Any thoughts? Best Regards, HD What do you mean by header information and where is it missing from? Jack --------------------
  5. thanks for the feedback Jack. I think I started selecting the various options when the corresponding header tag information for the page did not appear. I have unchecked all options and now I receive the default page header info rather than what I have entered. The original 'missing sort order' message has disappeared; however, the header information still doesn't appear. Any thoughts? Best Regards, HD
  6. Would an admin please close or delete this? I did not post it in the most applicable area. Regards, HD
  7. I accidentally posted this in the general discussion area and hence no one probably knows what I'm talking about. I have one file in which the header tags will only show the default information although the tag information is in the database. While saving the information, I do get one error. Missing sort orders are not allowed -> college_shorts.php Any idea why this could be occurring? I'm not familiar with any sort order requirements. Best Regards, HD
  8. I have one file in which the header tags will only show the default information although the tag information is in the database. While saving the information, I do get one error. Missing sort orders are not allowed -> college_shorts.php Any idea why this could be occurring? I'm not familiar with any sort order requirements. Best Regards, HD
  9. FWR, you were right about everything. It turns out a previous mod screwed things up quite a bit. I am rewriting some of the code now and already am seeing the SEO work better. Thanks a million and regards, HD
  10. MY TYPO.. I apologize. I meant to say that I have not hard coded links into the main page. I will inspect the code now (to ensure I'm looking at the right file). I did see the the_href_link() function referenced a few times. A long story short.. I will review the code to see if there are any glaring bugs. Did you visit the site and see the issue that I am referring to? HD
  11. Hello, I have hard-coded anything in the main page and I apologize for not providing the link earlier. The link for the development site is www.claimyourshare.com. Regards, HD
  12. Excellent point and major oversight on my end. That is not a SEO URL. I rechecking at the site and have learned the following: SEO does work properly when selecting manufacturing links / information.php /etc.. I have product info being displayed on the main page and this is where the SEO is having a problem. When I first visit the page my product has the following link.. http://www.mysite.com/product_info.php?pro...fadc13e1851b1ad it should be http://www.mysite.com/SEO_TAG.html?osCsid ….. When I select the link I am taken to the following page http://www.mysite.com/alabama-retro-rise-p-45?osCsid.html Which does not exist.. When I return to the main page the same product link now says http://www.mysite.com/product_info.php?products_id=45 After selecting it this time is works fine; however, as you pointed out it is not a SEO URL The SEO seems to be working for all other pages as I get the SEO URL. Any additional thoughts on the matter? Do you simply believe that it isn’t installed correctly? I tried to follow the letter of the law; however, small oversights can lead to big problems.. Here is the .htaccess file # $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $ # # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to # the AllowOverride configuration # # Example: # # <Directory "/usr/local/apache/htdocs"> # AllowOverride Options # </Directory> # # 'All' with also work. (This configuration is in the # apache/conf/httpd.conf file) # The following makes adjustments to the SSL protocol for Internet # Explorer browsers <IfModule mod_setenvif.c> <IfDefine SSL> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 </IfDefine> </IfModule> # If Search Engine Friendly URLs do not work, try enabling the # following Apache configuration parameter # # AcceptPathInfo On # Fix certain PHP values # (commented out by default to prevent errors occuring on certain # servers) # <IfModule mod_php4.c> php_value session.use_trans_sid 0 php_value register_globals 1 </IfModule> <IfModule mod_php5.c> php_value session.use_trans_sid 0 php_value register_globals 1 </IfModule> Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-([0-9]+).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-([0-9]+).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-([0-9]+).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-([0-9]+).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-([0-9]+).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-([0-9]+).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING} RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC] RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L] All of your help is greatly appreciated.
  13. Actually, I mentioned all of the details in the original message; however, I will clarify some of the details. 1) The first time that I log into my site the following occurs - If I hold the cursor over any link, the link is appended with the osCsid?AZasdasdasas.... session id - After selecting any link I get a page not found (404) error That is the problem 2) If I press the back button in the browser - The session ID is no longer visible - webpages all load fine So in summary. each time that I visit the site a new session is created and regardless of which link I select I get a page not found (404) error. This only occurs on the first link that is selected (can be any link). Afterwards, everything runs fine. I hope that clears things up a little and I appreciate your assistance.
  14. So I'm supposed to get an error the first time a link is selected? And then the next time when the osCsid is not appended the URL even think should work fine? I'm not to sure this is correct. Who puts out contributions that provide a 404 error in a store but then works fine after the back button is pressed and the URL reselects the link? HD
  15. The contribution that I am using is a URL rewriter: Ultimate_SEO_URLSv21d_UPDATED The thing is that is only appends the session ID to the URL the first time the site is accessed (session created?). After that the osCsid is no longer appended to the URL. Regards, HD
×
×
  • Create New...