Show Posts


Messages - andrew.mikhailyk

Pages: [1] 2
1
Payment Modules / Re: ERROR PAYPAL STANDAR EN VERSION 1.1.5
« on: June 27, 2013, 08:44:41 AM »
Hello!
This bug is fixed in AbanteCart 1.1.6.
But if you don't want to wait for release I'll give you fixed file that you have to upload at your server.
Unzip this archive into your AbanteCart folder (there will be admin, core, storefront, extensions and other folders).

P.S.: AbanteCart version must be 1.1.5!

2
General Support / Re: order images automatic
« on: June 03, 2013, 08:42:11 AM »
Hello.
I need some mero details.
From your post it is not clear what you are trying to upload.
Please tell me "rt" part of the URL of the page where you start uploading so I can localize problem.
Some screenshots of the process would be nice too.
Thanks.

3
General Support / Re: import tool - url_aliases - ERROR
« on: May 13, 2013, 05:41:08 AM »
Hello.
I need some details: your AbanteCart version, log file (Admin panel -> System -> Logs -> Error logs).
Also does import work fine if you do not edit CSV file?
Thank you.

4
General Support / Re: Import & Export Tool
« on: May 10, 2013, 05:31:01 AM »
Hello.
Please provide us with fragment of CSV files (both - original and edited) and note what items are right and what are not.

5
Extension Support / Re: checkout - continue shopping
« on: April 19, 2013, 10:51:33 AM »
Hello.

We have already add this button in our new version 1.1.5 that will be released soon.
But if you need it now you have to edit source files by yourself.

It's easy. Here are instructions:
- Go to directory ...\storefront\controller\pages\checkout\ and open file cart.php.
- Go to line 264 and insert this code:

Code: [Select]
$this->data['form'][ 'continue_shopping' ] = $form->getFieldHtml(
array(
'type' => 'button',
'name' => 'continue_shopping',
'text' => $this->language->get('button_shopping'),
'style' => 'button'
)
);

- Than go to ...\storefront\view\default\template\pages\checkout\ and open file cart.tpl
- At line 67 you'll find <div class="buttons">. Inside this <div> there will be <table>.
- Put this code:
Code: [Select]
<?php echo $form['continue_shopping']; ?> inside any <td> tag. We prefer to put it into the last one <td align="right">.
- Last thing - go to the bottom of file, there will be <script type="text/javascript">. Inside this tag you need to put code:
Code: [Select]
$('#cart_continue_shopping').click( function(){
location = '<?php echo $continue?>';
});

That's all. Please let me know if you have any troubles.
Good luck.

6
General Support / Re: CSV Resource Library's and Images
« on: November 13, 2012, 05:51:06 AM »
In my experience Excel may modify file in unexpected way.
Different versions of Excel may use different symbols/methods to enclosure columns, delimit them, define line end, etc.
You wrote that with TAB delimiter it is OK. Is it fine to you to use TAB delimiter?

7
Support / Re: Importing Error "Data is empty or corrupted."
« on: November 12, 2012, 10:28:57 AM »
Hello.

Please give me examples of CSV files with data you try to import.

Thank you.

8
General Support / Re: CSV Resource Library's and Images
« on: November 12, 2012, 08:29:50 AM »
Hello.

Please give me example of your CSV file.
Screenshot is not enough, sorry.

9
Tips and Tricks / Re: Import Products CSV
« on: November 02, 2012, 10:51:34 AM »
Hello Quenncy,

Can you please confirm if you have products at Catalog -> Products page at Control panel after import or not?
Also please give us your import file or part of it.

Thanks.

10
Support / Re: No data imported after importing.
« on: October 16, 2012, 11:39:53 AM »
Hello.

How do you get data for import?

I've noticed that you provide category_id in your data but don't provide "action" parameter.
By default this means that you will perform UPDATE query.
Maybe problem is that you are trying to update rows in database that are not exist.
If you need to add something into database with import you have to add column "action" with value "insert" in each row.
Or you can simply remove category_id from imported data. In that case script will autoincrement IDs in table.

11
General Discussion / Re: How to enable the weight based shipping
« on: August 31, 2012, 07:15:39 AM »

Hello,

In Weight Based Extension there is Additional Settings button.
There you have to set rates for your Location zones and set it ON.
After you do so you'll find weight based shipping on checlout page.

Also you may want to add new Location zones.
To do it follow System -> Localization -> Locations.

Thank you for using AbanteCart =)
Modify message

12
Existing features / Re: Data Import / Export actions?
« on: July 16, 2012, 08:36:36 AM »
Results of the test mode and actual import are not the same because in test mode script doesn't execute SQL queries.
But in actual import you see MySQL errors because table that you try to import doesn't have some columns that are present in your import file.

13
Existing features / Re: Data Import / Export actions?
« on: July 10, 2012, 08:16:43 AM »
Hi, David.

I've tried to replicate bug and all works for me.
The only difference between my import file and your is that your file doesn't enclose fields with double-quotes.
When I remove double-quotes from my file I have similar errors like you.

Can you tell us how do you generate file for import, how do you edit it, what software is used etc.

Thank you.

14
Existing features / Re: Data Import / Export actions?
« on: June 27, 2012, 09:58:46 AM »
Hi, David.

Unfortunately "action" tag is only available for XML data import at the moment.
We've already added "action" for CSV import but it will be available in next build: v1.0.3.
AbanteCart v1.0.3 will be released in 1-2 days.

As for usage of "action" tag you'll just have to add column named "action" in the first line and set needed actions at the end of each row.
Action values are: "insert", "update", "update_or_insert" or "delete".

15
Existing features / Re: Data Import Date Formats?
« on: June 27, 2012, 09:34:53 AM »
Hi, Nimitz

You can find all supported date and time formats if you'll follow these links: Date Formats, Time Formats.

But at the end it will convert your date and time to "YYYY-MM-DD HH:mm:ss".
Example: 2012-06-27 16:25:57

Pages: [1] 2

Powered by SMFPacks Social Login Mod