Page 2 of 9

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Wed Jul 07, 2010 5:41 am
by JNeuhoff
Your

upload_max_filesize = 2m

is too small then. Increase its size in your php.ini or .htaccess (depends on your web host).

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Jul 15, 2010 5:31 am
by MikeP
Hello,

All PHP settings are all well over what they need to be and when uploading the CSV file it just doesn't import anything.

Any ideas?

Thanks.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Jul 15, 2010 5:50 am
by dave0592
it couldnt be something to do with naming the file???

if so what are you meant to name it.
when exporting a template the files called backup_categories_products
youd assume it'd be something different to upload it

just thinking its something as simple as this

JAY6390 , Thanks 4 ur help ! GBU !!!

Posted: Wed Jul 21, 2010 8:49 pm
by conglm
http://forum.opencart.com/viewtopic.php?f=10&t=17509

In my Excel file have old and new product

With old products , we need update: QUANTITY, DATE, COST (Normal sale, promote,....), for same name or/and product code that we will replate it.

With new product, we update all thing: Product Name, Products Meta Tag Keywords, Products Meta Tag Description, Products Description, Product Tags, Model, Status, Price, Cost, ... all in Data link, option, discount, special, image.
However , if can't do so, we happy with: Product Name, Price, cost,

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Wed Jul 21, 2010 9:28 pm
by JNeuhoff
With old products , we need update: QUANTITY, DATE, COST (Normal sale, promote,....), for same name or/and product code that we will replate it.
Export to an Excel file, then only change the values for quantity, dates, cost etc. Then re-import.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sun Jul 25, 2010 8:20 pm
by kangbroke
How hard would it be for you to make a .csv import mod that would allow me to upload in these format.

ID,SKU,PRICE,SALE-PRICE,STOCK,WEIGHT,CATEGORIES,COLOR-:-SIZE~QTY,DESCRIPTION,THUMBNAIL,LARGE-IMAGE

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sun Jul 25, 2010 10:19 pm
by conglm
kangbroke wrote:How hard would it be for you to make a .csv import mod that would allow me to upload in these format.

ID,SKU,PRICE,SALE-PRICE,STOCK,WEIGHT,CATEGORIES,COLOR-:-SIZE~QTY,DESCRIPTION,THUMBNAIL,LARGE-IMAGE
can u upload file? everybody easy understand when see model file O0

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sat Jul 31, 2010 11:30 pm
by Media-Shark
Can digital downloads be incorporated into the csv? I got a shop that has most if not all of it's sales are download items (zip files) theres a 150 of these so it would be great if the import/export could handle downloads as well.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sun Aug 01, 2010 8:06 pm
by JNeuhoff
Media-Shark wrote:Can digital downloads be incorporated into the csv? I got a shop that has most if not all of it's sales are download items (zip files) theres a 150 of these so it would be great if the import/export could handle downloads as well.
I could do it as a commercial add-on, send me a PM and I give an estimate and quote for the amount of work needed to get it done.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Sep 16, 2010 4:51 am
by COMPACTER
Can someone explain what the 500 internal server error is all about i searched and found nothing,

i followed the instructions to a "T" installed version 1.4.8b and now i tried exporting and i keep getting this damn error


someone please help !!!

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Sep 16, 2010 5:40 am
by JNeuhoff
COMPACTER wrote:Can someone explain what the 500 internal server error is all about i searched and found nothing,

i followed the instructions to a "T" installed version 1.4.8b and now i tried exporting and i keep getting this damn error


someone please help !!!
You'll find more details in your server's error_log which you usually can reach via your cPanel or Plesk (depending on which webhost you use).

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Sep 16, 2010 5:56 am
by JAY6390
500 errors are usually due to a .htaccess file problem

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Thu Sep 16, 2010 11:02 pm
by COMPACTER
I have checked the log files and all i see is this

Code: Select all

2010-09-16 4:04:33 - PHP Notice:  Undefined index:  HTTP_USER_AGENT in /home/content/c/o/m/compacter/html/catalog/view/theme/default5/template/common/header.tpl on line 1
Here is the Line #1

Code: Select all

<?php if (!strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) echo '<?xml version="1.0" encoding="UTF-8"?>'. "\n"; ?>

the import/export tool keeps giving me these errors 500 internal server error, can you look at this and let me know what i should do.

Code: Select all

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled. 

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

# Fix Rewrite

Options -Multiviews

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Fri Sep 17, 2010 12:46 am
by JNeuhoff
Are sure you are using an Apache server on a Unix/Linux webhost? And not a ISS on Windows? It won't work on the latter.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Fri Sep 17, 2010 1:28 am
by COMPACTER
it is Linux on godaddy hosting.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Fri Sep 17, 2010 6:13 pm
by JNeuhoff
You may want to change the first line of your header.tpl file as follows:

Code: Select all

<?php if (isset($_SERVER['HTTP_USER_AGENT']) && !strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) echo '<?xml version="1.0" encoding="UTF-8"?>'. "\n"; ?>
That should solve this problem.

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Fri Sep 17, 2010 9:40 pm
by COMPACTER
Does that fix the error with the import/export tool ??



**edit

This does not resolve the import/export tool issues, can someone help me on this?

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sat Sep 18, 2010 1:54 am
by JNeuhoff
Are you still getting the Internal Error 500 message?

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sat Sep 18, 2010 2:39 am
by COMPACTER
Yes lol

But i just checked my error logs again and now some other error i find?? man this is getting crazy! lol

Code: Select all

2010-09-17 6:05:24 - PHP Notice:  Undefined variable: text_error in /home/content/c/o/m/compacter/html/catalog/view/theme/default/template/product/category.tpl on line 15

here is what is on that line.

Code: Select all

<div class="content"><?php echo $text_error; ?></div>
Do i need to change the "Content" to products?

Re: [RELEASED] Export/Import Tool for OpenCart 1.4.8

Posted: Sun Sep 19, 2010 8:44 pm
by COMPACTER
Why is there no help on support for this module??

if you release a module even though it is free there should be someone helping for these errors,

I cannot export or import i need some help now please.