Jump to content

rdbms

Member
  • Posts

    7
  • Joined

  • Last visited

Posts posted by rdbms

  1. I got a product file from a supplier wich i would like to add to my new store.

    After a created the import file with alls the right fields, I got the strange thing that halve way the description text the import script thought is was already a new product, so all products where messed up.

    The cause was that the description text for several products had to many caracters to handle for the import script.

    Solution :

    Long description makes mess trimming one product to two. CubeCart import file is set to read 1000 characters from a line. Please download attached file and replace you current one admin/sources/products/import.inc.php

    Only change made is

    while (($data = fgetcsv($fp, 5000, $delimiter)) !== false) {

    where original line was

    while (($data = fgetcsv($fp, 1000, $delimiter)) !== false) {

    After this mod it worked great.

  2. I have copied my entire shop and dumped the database.

    On a local PC for cubecart 3 it works fine but for cubecart 4 I get the following errors when going to the shop

    Hope to find somebody who has any clue ?

    --------------------------------------------------------------------------------------------------------------------------------------------------------

    Warning: Invalid argument supplied for foreach() in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\functions.inc.php on line 1097

    Warning: include(language\\config.php) [function.include]: failed to open stream: No such file or directory in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\global\index.inc.php on line 52

    Warning: include(language\\config.php) [function.include]: failed to open stream: No such file or directory in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\global\index.inc.php on line 52

    Warning: include() [function.include]: Failed opening 'language\\config.php' for inclusion (include_path='.;C:\php5\pear') in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\global\index.inc.php on line 52

    Warning: require(language\\home.inc.php) [function.require]: failed to open stream: No such file or directory in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\content\index.inc.php on line 45

    Warning: require(language\\home.inc.php) [function.require]: failed to open stream: No such file or directory in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\content\index.inc.php on line 45

    Fatal error: require() [function.require]: Failed opening required 'language\\home.inc.php' (include_path='.;C:\php5\pear') in C:\Program Files\EasyPHP5.2.10\www\HTML\includes\content\index.inc.php on line 45

  3. I've got the requestPass.php in the admin section working while using the mail() funtion from php.

    When I change this to SMTP with localhost, port 25 and no authentication requestPass.php updates the password and says the new password has been sent.

    However I never get these messages.

    Logging of the mailserver show the following:

    Apr 26 21:53:16 debian postfix/smtpd[18837]: connect from localhost[127.0.0.1]

    Apr 26 21:53:16 debian postfix/smtpd[18837]: lost connection after EHLO from localhost[127.0.0.1]

    Apr 26 21:53:16 debian postfix/smtpd[18837]: disconnect from localhost[127.0.0.1]

    I know this setup for SMTP is right, since I also configured the mailserver to accept mail from localhost.

    Anyone knows what's wrong?!?

    I am also having smtp script problems when I connect using telnet from the host where CC is running on there is no problem.

    Here Is my mail log:

    May 2 20:23:04 onyxpedicure sm-mta[18889]: NOQUEUE: connect from [192.168.1.233 ]

    May 2 20:23:04 onyxpedicure sm-mta[18889]: AUTH warning: no mechanisms

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: Milter: no active filter

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 220 onyxpedicure.nl ESMTP Sendmail 8.12.3/8.12.3/Debian-7.1; Wed, 2 May 2007 20:23:04 +0200; (No UCE/UBE) logging access from: [192.168.1.233](FAIL)-[192.168.1.233]

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: <-- EHLO localhost

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-onyxpedicure.nl Hello [192.168.1.233], pleased to meet you

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-ENHANCEDSTATUSCODES

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-PIPELINING

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-EXPN

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-VERB

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-8BITMIME

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-SIZE

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-DSN

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-ETRN

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250-DELIVERBY

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 250 HELP

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: <-- AUTH LOGIN

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 503 5.3.3 AUTH not available

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: --- 421 4.4.1 onyxpedicure.nl Lost input channel from [192.168.1.233]

    May 2 20:23:04 onyxpedicure sm-mta[18889]: l42IN4WX018889: [192.168.1.233] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA

×
×
  • Create New...