Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Sickboards

Pioneers
  • Posts

    13
  • Joined

  • Last visited

Profile Information

Sickboards's Achievements

  1. First of great tool, Some bugs/areas of improvement I noticed. I have installed version 5.09c + patch - If I edit an order which has shipping but falls in the free shipping range the complete shipping entry is removed after an update and if I add it later it will appear after the total (so I manually have to set it straight in the database). - If I want to remove a product from the order it takes very long to update (5min), if i refresh in the meanwhile the order is not updated. (same goes for altering the amount of ordered products, if I change the price it is updated instantly)
  2. For the language issue I made the following update in shopping_cart.php original code: // Display Dropdown box full of products in free gifts category $freegifts_query = tep_db_query("SELECT p.products_id, pd.products_name FROM " . TABLE_PRODUCTS . " p Inner Join " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc ON p.products_id = ptc.products_id Inner Join " . TABLE_PRODUCTS_DESCRIPTION . " pd ON p.products_id = pd.products_id WHERE ptc.categories_id = '". MODULE_FREEGIFT_CATEGORY . "'"); new code: // Display Dropdown box full of products in free gifts category $freegifts_query = tep_db_query("SELECT p.products_id, pd.products_name FROM " . TABLE_PRODUCTS . " p Inner Join " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc ON p.products_id = ptc.products_id Inner Join " . TABLE_PRODUCTS_DESCRIPTION . " pd ON p.products_id = pd.products_id WHERE ptc.categories_id = '". MODULE_FREEGIFT_CATEGORY . "' and pd.language_id = '" . (int)$languages_id . "'");
  3. HHello, First off the contri works really well, there is one issue I have using this in combination with embedded content (youtube). The popups don't pop over the youtube content but under it, which looks a bit odd, I don't know whether there is a fix but it would be greatly appreciated. I have noticed that it happens in Firefox and Chrome but not in IE7. Example @Sam you were right, this should be the right thread.
  4. Hello, First off the contri works really well, there is one issue I have using this in combination with embedded content (youtube). The popups don't pop over the youtube content but under it, which looks a bit odd, I don't know whether there is a fix but it would be greatly appreciated. Example
  5. Ok thanks, I'll stop trying than. Strangely enough it did work when I had http://123.456.789.000/~testsite/catalog/
  6. Hello, I'm using version 2.2-2d7 and it worked like a charm when I have my site in a the (standard) catalog folder, but since I only have a webshop on the site I decided to move it to the root. So I changed the .htaccess file from: RewriteBase /catalog/ to RewriteBase / emptied the browser cache, reset the cache, no luck uninstalled option in the admin, no luck The start page loads but as soon as I click on any of the products I get the infamous 404. "The requested URL /product_info.php was not found on this server." Does it matter that the server is in the form of http://123.456.789.000/~testsite/? Any help is greatly appreciated.
  7. I have installed v1.4 It works fine (after modifing some tables cancelled_order_* to match the orders_* tabels) Only I have also installed a attribute stock contri. The problem is that only the regulary stock is "restocked" and not the attributes. Did anyone get this combo to work?
  8. Hi, I cann't seem to get it to work. I'm trying to implement it locally (Windows machine with XAMPP), but there is a problem with the .htaccess file (i guess). It generates this error: Server error! The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script. If you think this is a server error, please contact the webmaster. Error 500 localhost 01/19/06 19:05:31 Apache/2.0.55 (Win32) mod_ssl/2.0.55 OpenSSL/0.9.8a PHP/5.0.5 mod_autoindex_color I have have removed the "Options +FollowSymLinks" line but that did not help. This is my .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> # 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> 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-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING} It is installed in C:\xampp\htdocs\catalog. Any help is appreciated Other contri's I have installed are STS, SEO meta tags. Thanks, Martijn
×
×
  • Create New...