Post by salwa123 » Thu Apr 28, 2016 8:37 pm

attachments pic error

Attachments

error.png

error.png (99.88 KiB) Viewed 5716 times


Active Member

Posts

Joined
Fri Mar 04, 2016 6:01 pm

Post by JNeuhoff » Thu Apr 28, 2016 9:31 pm

You are using the wrong download link, I can't help you further.

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by salwa123 » Thu Apr 28, 2016 10:19 pm

thank u alots
solve problem

but pls template csv

Active Member

Posts

Joined
Fri Mar 04, 2016 6:01 pm

Post by aloo » Tue May 03, 2016 1:52 pm

Hi developer i m new to opencart please can u tell how it works i downloaded the extension but how it works.thx

Newbie

Posts

Joined
Tue May 03, 2016 1:48 pm

Post by StanD » Wed May 04, 2016 8:32 pm

Hi! I keep getting this error during installation. Is there any way to fix it?
json error.tiff

json error.tiff (446.1 KiB) Viewed 5651 times


Newbie

Posts

Joined
Wed May 04, 2016 8:24 pm

Post by StanD » Wed May 04, 2016 10:51 pm

Hey! I keep getting this error during installation. What can I do?
json error.jpg

json error.jpg (199.97 KiB) Viewed 5651 times


Newbie

Posts

Joined
Wed May 04, 2016 8:24 pm

Post by JNeuhoff » Wed May 04, 2016 11:54 pm

aloo wrote:Hi developer i m new to opencart please can u tell how it works i downloaded the extension but how it works.thx
After you downloaded the extension, you need to install it on your OpenCart server via the admin backend at

Extensions > Extension Installer > Upload

Then do a

Extensions > Modifications > Refresh

You will then see the tool under

System > Tools > Export/Import

User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by dynamok » Thu May 05, 2016 10:31 pm

Hi, getting this when trying to install install.xml. Version 3.2. Cart version 2.2. All the files uploaded. What am I doing wrong?
Image

Newbie

Posts

Joined
Fri Feb 20, 2015 1:04 pm

Post by JNeuhoff » Fri May 06, 2016 12:30 am

Hi, getting this when trying to install install.xml. Version 3.2. Cart version 2.2. All the files uploaded. What am I doing wrong?
This is not an issue with the Export/Import Tool, but with your server configuration which doesn't seem to allow the 'application/zip' mime type for the upload. Ask your webhost to fix it, to allow '.ocmod.zip' files to be uploaded.

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by dynamok » Fri May 06, 2016 2:50 am

I didn't have any problems with the 2 previous versions. Did this change?

Newbie

Posts

Joined
Fri Feb 20, 2015 1:04 pm

Post by hitman72 » Sun May 08, 2016 12:40 am

I installed your Export/Import Tool (V3.2) but every time I try to use the "data range you want to export:" option I always get the error of----- Start id must be greater than 0

No matter what numbers I enter. Any thoughts?

Thank you!

Newbie

Posts

Joined
Tue Dec 20, 2011 3:16 am

Post by JNeuhoff » Sun May 08, 2016 8:11 pm

hitman72 wrote:I installed your Export/Import Tool (V3.2) but every time I try to use the "data range you want to export:" option I always get the error of----- Start id must be greater than 0

No matter what numbers I enter. Any thoughts?

Thank you!
I am unable to reproduce your error. Most likely you are not using V3.2, or haven't installed to the correct place.

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by hitman72 » Sun May 08, 2016 8:48 pm

I have installed the the latest version. Still no luck with exporting by ID

Newbie

Posts

Joined
Tue Dec 20, 2011 3:16 am

Post by JNeuhoff » Mon May 09, 2016 12:56 am

hitman72 wrote:I have installed the the latest version. Still no luck with exporting by ID
Sorry, I am simply unable to reproduce your error. Are you using a 3rd party web theme? Some of them also modify the admin backend which may cause some issues.

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by hardgamer » Tue May 10, 2016 5:31 pm

Hi!

I am using OC 2.1.0.2 - when trying to Export something the exported file is broken, cant be opened with Excel. If I open it with a Notepad++ it gives me this message:

<br />
<b>Fatal error</b>: 'break' not in the 'loop' or 'switch' context in <b>system/PHPExcel/Classes/PHPExcel/Calculation/Functions.php</b> on line <b>581</b><br />


The file Functions.php have the following in line 581:

Code: Select all

	public static function TYPE($value = NULL) {
		$value	= self::flattenArrayIndexed($value);
		if (is_array($value) && (count($value) > 1)) {
			$a = array_keys($value);
			$a = array_pop($a);
			//	Range of cells is an error
			if (self::isCellValue($a)) {
				return 16;
			//	Test for Matrix
			} elseif (self::isMatrixValue($a)) {
				return 64;
			}
		} elseif(empty($value)) {
			//	Empty Cell
			return 1;
		}
		$value	= self::flattenSingleValue($value);

		if (($value === NULL) || (is_float($value)) || (is_int($value))) {
				return 1;
		} elseif(is_bool($value)) {
				return 4;
		} elseif(is_array($value)) {
				return 64;
				break;
I am not a coder, but was using this module before and it was working

------------------------------
Still a Noobie...
My page: http://designninja.net Graphic designer services made easy!


User avatar
Newbie

Posts

Joined
Sat Sep 06, 2014 1:21 pm
Location - Bulgaria

Post by JNeuhoff » Tue May 10, 2016 9:23 pm

Try to comment out this line, maybe you have recently upgraded to PHP 7, and it doesn't like unreachable code sections anymore?

Code: Select all

//          break;

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by hardgamer » Wed May 11, 2016 11:43 am

JNeuhoff wrote:Try to comment out this line, maybe you have recently upgraded to PHP 7, and it doesn't like unreachable code sections anymore?

Code: Select all

// break;
Yes - my new hosting is on PHP 7 and is not negotiable - they wont switch it over :( .I will try to delete / comment the line - thanks.

------------------------------
Still a Noobie...
My page: http://designninja.net Graphic designer services made easy!


User avatar
Newbie

Posts

Joined
Sat Sep 06, 2014 1:21 pm
Location - Bulgaria

Post by hardgamer » Wed May 11, 2016 12:48 pm

So - it worked now, but after I import - the new Products and Categories dont show on the Backend of the Store - they show only on the Front end. Also SEO url are not imported in the products but still working. I use a second language and a SEO module, so dont know what to do now :(

------------------------------
Still a Noobie...
My page: http://designninja.net Graphic designer services made easy!


User avatar
Newbie

Posts

Joined
Sat Sep 06, 2014 1:21 pm
Location - Bulgaria

Post by JNeuhoff » Wed May 11, 2016 5:10 pm

hardgamer wrote:So - it worked now, but after I import - the new Products and Categories dont show on the Backend of the Store - they show only on the Front end. Also SEO url are not imported in the products but still working. I use a second language and a SEO module, so dont know what to do now :(
Your admin backend language needs to be one of the supported frontend languages, too, and your product and category descriptions, names, etc must be specified for all languages.

As regards SEO: The Export/Import Tool was only designed for a supported standard OpenCart version. I can add support for additional DB fields for a small charge, send me a PM with details of your new DB fields.

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member
Online

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by mkktvl » Thu Jun 02, 2016 2:58 pm

Hi,

Im getting an error when trying to install this extension. (opencart-2-x-export-import-multilingual-3-3.ocmod.zip)

The error occurs right after I go: Extension -> Extension installer -> Upload -> Select file -> Ok.
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data

OK

<b>Warning</b>: mkdir(): No such file or directory in <b>/home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php</b> on line <b>82</b><b>Warning</b>: move_uploaded_file(/home/r200750/domains/mydomain.com/public_html/store/system/upload/temp-3WJozpl38OfrRQxPOEXGYlGFQcJSEVl5/upload.zip): failed to open stream: No such file or directory in <b>/home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php</b> on line <b>117</b><b>Warning</b>: move_uploaded_file(): Unable to move '/tmp/phpFtSfh7' to '/home/r200750/domains/mydomain.com/public_html/store/system/upload/temp-3WJozpl38OfrRQxPOEXGYlGFQcJSEVl5/upload.zip' in <b>/home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php</b> on line <b>117</b>{"step":[],"overwrite":[],"error":"File could not be found!"}
OpenCart error log:
2016-06-02 9:46:07 - PHP Warning: mkdir(): No such file or directory in /home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php on line 82
2016-06-02 9:46:07 - PHP Warning: move_uploaded_file(/home/r200750/domains/mydomain.com/public_html/store/system/upload/temp-3WJozpl38OfrRQxPOEXGYlGFQcJSEVl5/upload.zip): failed to open stream: No such file or directory in /home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php on line 117
2016-06-02 9:46:07 - PHP Warning: move_uploaded_file(): Unable to move '/tmp/phpFtSfh7' to '/home/r200750/domains/mydomain.com/public_html/store/system/upload/temp-3WJozpl38OfrRQxPOEXGYlGFQcJSEVl5/upload.zip' in /home/r200750/domains/mydomain.com/public_html/store/admin/controller/extension/installer.php on line 117
Hope someone can help me with this.

Newbie

Posts

Joined
Thu Jun 02, 2016 2:47 pm
Who is online

Users browsing this forum: No registered users and 5 guests