Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

wr19026

Archived
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Real Name
    Wilco R.

wr19026's Achievements

  1. Also, I have done the database update as per the install script. I did not get an error message but can not see the max. number of featured products displayed option either. I have changed '39' to '33' and then it shows up; but when I change it it doesn't change it on the website. Any ideas?
  2. I installed version 1.5.8 with the fix for the deeper categories. It works perfectly but there is something that I can't figure out how to fix. I have a multilanguage site but when I drill into a sub-category the header of the Featured Products box still reads the (sub) category name in english. This is the line causing me problems; any ideas where I need to make the change so that %s picks up the (sub)category name in the language the visitor is viewing the site in? nl: define('TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY', 'Geselecteerde artikelen in %s'); Alternative languages: en: define('TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY', 'Featured Products in %s'); de: define('TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY', 'Highlights in %s');
  3. I'm using the September update of the spiders.txt. shopwiki is mentioned in that file. However it seems to be ignoring the spiders.txt, as it's been sucking up a ridiculous amount of bandwith without any return. Is there anything else that I can do to make sure that shopwiki is denied access to my site?
  4. I'm running into a problem with the Visitor Web Stats contrib. It all worked fine until I switched off register_globals (using the appropriate contrib of course). What happens is that "Referring URL" all of a sudden only shows http:// instead of the referrers real address. Thanks in advance for your help.
  5. I have installed this on my test machine and see the strange behaviour that the code is not displayed when first going to contact_us.php Then, when I just enter something (which obviously is wrong), it all of a sudden does show a code. Any idea how I can solve this?
  6. I'm actually having the same problem. However, it has worked fine; until I applied the "Register Globals 1.4a" contrib and switched register_globals off. Could it have something to do with this? And if yes, any idea how I can fix this?
  7. I had tried that and it initially didn't work. After a bit more digging (into my memory as well :)) I remembered that I had to fiddle with the config.php file as the path for my test site (where I'm testing this is different from the production one. So thanks for pointing me in the right direction and helping me solve this!
  8. Cannot agree more. I have EP 2.76-MS2 installed with register_globals set to 'off' /catalog/temp is chmod' ed to 777 so that cannot be the problem. Still I cannot upload and do not get any error messages either. I tried the register_globals 1.4a contrib but to no avail. Anyone have any ideas?
  9. Replaced version 2.1.2 by the official 1.5 version and it works now.
  10. I have OFT Thumbnail w/GD2 installed. When testing my webshop on my own domain it worked fine. Now I'm in the process of migrating the shop to an ISP and I run into the problem that my thumbnails no longer work. When I click on them I do get the original size picture. My ISP has libgd2 and libgd2-xpm installed, and the file permissions on the thumbnails directory are set to 777. The only thing I had to change in the migration is the path (from /var/www/catalog to /var/www/my_web/web/catalog). Any suggestions?
  11. I actually have the same problem as described. I did not test with one new product but I updated the VAT for the exisiting demo items. In an earlier attempt to install EP this actually worked. Same as with the original poster: the file is created just fine and downloaded onto my PC. I manipulate the file and save it with the original filename (EP_2005 etc. .txt) Then when I upload the file I see that it uploads (it's created in the temp dir) but nothing happens and there are no error messages displayed. This occurs both on osC 2.2MS and osC 2.2 MS2 Update 051113. In both cases I have used EP 2.76 MS2 (posted by Mibble). temp dir is in place and chmodded to 777. configure.php is set to $DOCUMENT_ROOT. I have not updated the $tempdir and $tempdir2 in my easypopulate.php so they're still set to /catalog/temp/ (full path is /opt/lampp/htdocs/catalog/temp/) Does anyone have any ideas?
  12. It works! The fix for me really was to use Mingle's version 2.74, slightly mod the files as per the readme and I'm in business! Well, not completely but my biggest headache (for now) is solved :) Now, does anyone know of a contrib that allows me to add the payment method "On account" for customers who pay after receipt of the invoice? :)
  13. I managed to get osC 2.2ms2 up and running. Then I installed Easy Populate 2.76 to upload my products. I read and followed the install guide step by step but still can't import. The import file I test with is a modified uploaded file from the database (essentially I take out all the seeded data and add 4 new products). So the file format should not be a problem. I use OpenOffice to do this. I've been searching through both this forum as well as the Dutch one but have not found teh solution ofr my problem. This is the errormessage(s) I'm getting: Easy Populate 2.76-MS2 - Default Language : Nederlands(4) Filename: test.csv Warning: file(/opt/lampp/htdocs/temp/test.csv) [function.file]: failed to open stream: Onbekend bestand of map in /opt/lampp/htdocs/catalog/admin/easypopulate.php on line 685 (unknown file or directory) Warning: Invalid argument supplied for foreach() in /opt/lampp/htdocs/catalog/admin/easypopulate.php on line 690 These are the lines of code this points to (685 and 690 in red): /admin/easypopulate.php: $tempdir = "/temp/"; $tempdir2 = "/temp/"; // get the entire file into an array $readed = file(DIR_FS_DOCUMENT_ROOT . $tempdir . $localfile); } // now we string the entire thing together in case there were carriage returns in the data $newreaded = ""; foreach ($readed as $read){ $newreaded .= $read; } Here's my /admin/includes/config.php file: // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://10.0.0.154'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://10.0.0.154'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', '/opt/lampp/htdocs/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/opt/lampp/htdocs/catalog/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); File permissions for /opt/lampp/htdocs/catalog/temp are set to 777 I've been trying to find the solution and am sure it's pretty easy/obvious but I just can't see it. All help is much appreciated! Thanks in advance, Wilco
×
×
  • Create New...