Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

games4gamers

Pioneers
  • Posts

    55
  • Joined

  • Last visited

Profile Information

games4gamers's Achievements

  1. Hmm that's really strange, wonder why it does it to me then?
  2. Hmm ok, well that is good then. What browser? I use Firefox 3 primarily.
  3. Edit: I just tried it and when I click a featured product it doesn't seem to work, however if I use the category nav, the first time it shoots back to the home page, then the second time it works. This is really odd. Thanks for the compliments. When I click on a product, it shows that as the URL, what does it do for you? The wishlist contribution I used is apparently called: Guest Enhanced Wishlist 3.5 for osCommerce ms2 I believe this is the link: http://www.oscommerce.com/community/contri...search,wishlist I don't recall which version of 3.5 I used however.
  4. Ok all the files for USU 2.1d are on my system now and followed the instructions exactly and it still does: http://www.games4gamersonline.com/catalog/...roduct_info.php Product not found... I'm lost...
  5. Ok so I am using 2.1D's .htaccess file and it's still doing the same problem. Should I overwrite the other files with 2.1d's also?
  6. Thanks. I just overwrote my .htaccess file with the included code from that version and it seems to be working...for now...we'll see if it continues to do so tomorrow morning.
  7. Nowhere did I see where you told me anything about a "proper version" This is straight from the latest update posted on 7/7/08. I made no changes to it whatsoever. Which version is the "proper version" to use (post date)?
  8. Hmm weird...well here's the htaccess file: # Ultimate SEO URLs BEGIN <IfModule mod_rewrite.c> # dont work option # Options +FollowSymLinks RewriteEngine On 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} # Ultimate SEO URLs END # Added to fix article glitch on sub-articles (lonniew at gmail dot com) RewriteRule ^(.*)-t-([0-9]+_[0-9]+).html$ articles.php?tPath=$2&%{QUERY_STRING} # Added polls e newsdesk by lavoriamopervoi.com RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING} RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING} </IfModule>
  9. Yay, new problem for me. I got the .htaccess to work and all, but now it seems to be randomly overwritten server side or something. That is, it randomly decides to not rewrite correctly. Currently it's giving me: http://www.games4gamersonline.com/catalog/...roduct_info.php Where it should be something like: http://www.games4gamersonline.com/catalog/...name-p-215.html Any ideas why this is happening?
  10. Did you make your changes to general.php? What version of USU are you using? And btw to those who were helping me, I managed to solve my problem. I downloaded the update to 2.1d from 7/7/08 and it fixed the problem, yay. :) Thanks again all.
  11. Did you upload reset_seo_cache.php to your \catalog\admin\includes directory? If not, you need to do that.
  12. Edit: My .htaccess is in /catalog Ok, DirectoryIndex seems to have no effect... When I do RewriteBase /catalog/ It rewrites the links as: http://www.games4gamersonline.com/catalog/...roduct_info.php When I do RewriteBase catalog/ It rewrites the links as: http://www.games4gamersonline.com/catalog/...ning-p-117.html (i.e. the way it's supposed to), but it still does file not found....
  13. I've tried both and no dice. My colleague said I need to have static pages made for this to work, is that correct? Also when I leave the options uncommented, the rewriting doesn't work at all...
  14. Don't know if this has been addressed yet or not, but I'm using 2.1d and keep getting this error: Not Found The requested URL /catalog/lego-indiana-jones-p-285.html was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.33 Server at www.games4gamersonline.com Port 80 It does this for any product. Not sure what else I need to do...thanks for any help. Here's my .htaccess # $Id: $ # # 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) # php_value session.use_trans_sid 0 # php_value register_globals 1 DirectoryIndex catalog/index.php # Ultimate SEO URLs BEGIN <IfModule mod_rewrite.c> # dont work option #Options +FollowSymLinks RewriteEngine On RewriteBase catalog/ 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}
  15. It'd be really nice if it were possible to set the size of the box. I'm sure it is, just not sure how. I've looked through the code, but I can't find anything (I'm no programmer). It'd be even better if there were a GUI option through Admin to set this.
×
×
  • Create New...