In that case I can't help you, I am simply not able to reproduce your error. Have you actually uploaded all the files?bobmartinusa wrote:my opencart system eroor is not showing any errors also my webhosting error logs also dont show anything
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
I was wondering, will the tool work at all with fields from another extension or would I need to request this to be custom made?
I am attempting to use the import/export with http://www.opencart.com/index.php?route ... privatemtx
Do you have any idea how exporting will react? Say for example I export, and the custom fields are not there, and I then import some changes, will it overwrite custom fields with blanks?
If the additional product fields are stored in a separate new DB table, with the 'product' and 'product_description' DB tables unchanged, then you should be fine with the Export/Import tool as it is, as long as you keep using the same product_ids.RepowerIT wrote:Hello JNeuhoff,
I was wondering, will the tool work at all with fields from another extension or would I need to request this to be custom made?
I am attempting to use the import/export with http://www.opencart.com/index.php?route ... privatemtx
Do you have any idea how exporting will react? Say for example I export, and the custom fields are not there, and I then import some changes, will it overwrite custom fields with blanks?
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Fatal error: require_once() [function.require]: Failed opening required 'Classes/PHPExcel.php' (include_path='.:/usr/local/lib/php-5.2.17/lib/php') in /hermes/bosoraweb057/b2999/ipg.bjfirearmscom/bjfirearms.biz/admin/model/tool/export.php on line 2564
Could someone explain to me, in simple language, what I am doing wrong? The more I work on this, it seems the dumber I get.
Most likely, you forgot to upload all the files, including the system/PHPExcel folder.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
IF you used the host control panel's file manager to upload the files, then you would likely have tried to move directories to the server, and that ordinarily won't work, the contents won't go up with it, you must suffer doing files one at a time. Redo it using ftp.
IF you used an Apple machine, you may need to send the files up one at a time anyway -- or use a pc in ftp to send up the fileset in one pass.
I am having a problem with optioned products. All categories, and products are imported but I received the following error:
Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''')' at line 1
Error No: 1064
INSERT INTO `oc_product_option_value` (`product_option_value_id`,`product_option_id`,`product_id`,`option_id`,`option_value_id`,`quantity`,`subtract`,`price`,`price_prefix`,`points`,`points_prefix`,`weight`,`weight_prefix`) VALUES (1,1,21,1,1,7,1,0,'+',0,'',,''); in /home/mywebsite/public_html/system/database/mysql.php on line 50
Do you have a suggestion?
Your SQL error is impossible when you use the latest Export/Import tool for Opencart 1.5.5.x, because:
Your SQL error suggests a missing value for $weight in line 900 of admin/model/tool/export.php. However, this is not possible, because the weight is always read like this in line 951:
Code: Select all
$weight = $this->getCell($data,$i,$j++,'0.00');
Hence, I honestly don't know how you managed to corrupt it.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
I AM USING OPENCART 1.5.6 .
I have added import/export tool but there is a no export option available in admin panel only import are visible. I have attached image of our error please see it.
When i click to export link than error occurred "Class 'ZipArchive' not found" please suggest me ... what i do.
I am new in Opencart.
Thanks & Regards
Avi Chitranshu
Attachments
EXPORT "ZipArchive" ERROR. - ziparchieve-error.png (10.71 KiB) Viewed 8212 times
Ask your web host to install the PHP ZIP library, this should have been there as part of a standard PHP setup anyway. If your web host doesn't want to do it, then look for another web host.avi123 wrote:Hello Sir....
I AM USING OPENCART 1.5.6 .
I have added import/export tool but there is a no export option available in admin panel only import are visible. I have attached image of our error please see it.
When i click to export link than error occurred "Class 'ZipArchive' not found" please suggest me ... what i do.
I am new in Opencart.
Thanks & Regards
Avi Chitranshu
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
I'm getting this error on the 1st attempt to run an export:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 91 bytes) in /home/sjmsbqet/public_html/mysite.com/system/PHPExcel/Classes/PHPExcel/Style/Font.php on line 631
I looked at line 631 of the Font.php but don't see a value to change....
Regards
5upGraphics
Error: The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay
Error No: 1104
SELECT p.product_id, pd.name, GROUP_CONCAT( DISTINCT CAST(pc.category_id AS CHAR(11)) SEPARATOR "," ) AS categories, p.sku, p.upc, p.ean, p.jan, p.isbn, p.mpn, p.location, p.quantity, p.model, m.name AS manufacturer, p.image AS image_name, p.shipping, p.price, p.points, p.date_added, p.date_modified, p.date_available, p.weight, wc.unit, p.length, p.width, p.height, p.status, p.tax_class_id, p.viewed, p.sort_order, pd.language_id, ua.keyword, pd.description, pd.meta_description, pd.meta_keyword, pd.tag, p.stock_status_id, mc.unit AS length_unit, p.subtract, p.minimum, GROUP_CONCAT( DISTINCT CAST(pr.related_id AS CHAR(11)) SEPARATOR "," ) AS related FROM `res_product` p LEFT JOIN `res_product_description` pd ON p.product_id=pd.product_id AND pd.language_id=3 LEFT JOIN `res_product_to_category` pc ON p.product_id=pc.product_id LEFT JOIN `res_url_alias` ua ON ua.query=CONCAT('product_id=',p.product_id) LEFT JOIN `res_manufacturer` m ON m.manufacturer_id = p.manufacturer_id LEFT JOIN `res_weight_class_description` wc ON wc.weight_class_id = p.weight_class_id AND wc.language_id=3 LEFT JOIN `res_length_class_description` mc ON mc.length_class_id=p.length_class_id AND mc.language_id=3 LEFT JOIN `res_product_related` pr ON pr.product_id=p.product_id GROUP BY p.product_id ORDER BY p.product_id, pc.category_id;
See also 'System > Error Logs' for more details.
Help me please.
myretnas wrote:Hello,
I am having a problem with optioned products. All categories, and products are imported but I received the following error:
Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''')' at line 1
Error No: 1064
INSERT INTO `oc_product_option_value` (`product_option_value_id`,`product_option_id`,`product_id`,`option_id`,`option_value_id`,`quantity`,`subtract`,`price`,`price_prefix`,`points`,`points_prefix`,`weight`,`weight_prefix`) VALUES (1,1,21,1,1,7,1,0,'+',0,'',,''); in /home/mywebsite/public_html/system/database/mysql.php on line 50
Do you have a suggestion?
Please ask your web host to change the MySQL configuration accordingly. If they can't, switch web host!use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=#
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Is it possible to customise it to do that?
There already is a product or category name column in there.Japparts wrote:Hi, I am using the import/export tool and think it is great! Only thing I would really like is instead of product ID/Category ID it actually displays the product name/category name etc. It would make it SOOO much easier for editing products as I would know what the product actually is!
Is it possible to customise it to do that?
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Users browsing this forum: No registered users and 6 guests