Re: Easy Populate support for Version 1.2.5.4
Quote:
Originally Posted by
hanming
I am am SUPER new to zen cart and easypopulate.
May I know if easypopulate 1.2.5.4 is still working with zen-cart 1.5?
Or I must now use EP 4.0?
Please help me!!! Thank you very much.
You should use EP ver 4 with ZC 1.5
Re: Easy Populate 1.2.5.4 support
NO admin > Tools > "Easy Populate" button
None in "admin >configuration" either
Installed zen cart v1.5.0
Installed ez populate easypopulate-shafiqv1-2-5-6
NO button
Installed right over previous install ep_v1.2.5.4
NO Button
Easy Populate works using:
h ttp://mysite.com/admin-directory/easypopulate.php?langer=install
(space added to stop this system from amking it a linkl)
When I run it there is a green message at the top of the screen which says:
Installation Successfull! A full download of you store has been done and is available in your uploads (temp) directory. You can use this as your 1st template for uploading/updating products.
Success File Full-EP2012May11-1111.txt successfully exported! The file is ready for download in your /temp/ directory.
I have installed Easy Populate on another zen cart before.
Am I doing something wrong?
Is it OK to use it without the button.
Re: Easy Populate 1.2.5.4 support
Quote:
Originally Posted by
larryweiss
NO admin > Tools > "Easy Populate" button
None in "admin >configuration" either
Installed zen cart v1.5.0
Installed ez populate easypopulate-shafiqv1-2-5-6
NO button
Installed right over previous install ep_v1.2.5.4
NO Button
Easy Populate works using:
h ttp://mysite.com/admin-directory/easypopulate.php?langer=install
(space added to stop this system from amking it a linkl)
When I run it there is a green message at the top of the screen which says:
Installation Successfull! A full download of you store has been done and is available in your uploads (temp) directory. You can use this as your 1st template for uploading/updating products.
Success File Full-EP2012May11-1111.txt successfully exported! The file is ready for download in your /temp/ directory.
I have installed Easy Populate on another zen cart before.
Am I doing something wrong?
Is it OK to use it without the button.
I have this very same issue. can any1 help?
Re: Easy Populate 1.2.5.4 support
Quote:
Originally Posted by
panelcart
I have this very same issue. can any1 help?
Use this following query in mysql. you will have the ez-populate under tools.
INSERT INTO `admin_pages` (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES
('ezpopulate', 'BOX_TOOLS_EASYPOPULATE', 'FILENAME_EASYPOPULATE', '', 'tools', 'Y', 150);
Re: Easy Populate 1.2.5.4 support
Quote:
Originally Posted by
Balaji
Use this following query in mysql. you will have the ez-populate under tools.
INSERT INTO `admin_pages` (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES
('ezpopulate', 'BOX_TOOLS_EASYPOPULATE', 'FILENAME_EASYPOPULATE', '', 'tools', 'Y', 150);
Thanks for the help.!
Re: Easy Populate support for Version 1.2.5.4
Quote:
Originally Posted by
hanming
I am am SUPER new to zen cart and easypopulate.
May I know if easypopulate 1.2.5.4 is still working with zen-cart 1.5?
Or I must now use EP 4.0?
Please help me!!! Thank you very much.
I'm not sure if it is fully working with it right now..... Some confirm this!
Re: Easy Populate support for Version 1.2.5.4
Almost all the earlier version modules works in zen 1.5 which are not having boxes defined in admin. For box definitions you need to use admin>admin access management>admin page registration. So the easy populate too.
Re: Easy Populate 1.2.5.4 support
Quote:
Originally Posted by
Balaji
Use this following query in mysql. you will have the ez-populate under tools.
INSERT INTO `admin_pages` (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES
('ezpopulate', 'BOX_TOOLS_EASYPOPULATE', 'FILENAME_EASYPOPULATE', '', 'tools', 'Y', 150);
That worked - now how do I add the settings to the configuration menu??
Thanks
Matt
Re: Easy Populate 1.2.5.4 support
My plan is to upload stock received to admin via EP but ADD to current stock quantity when uploading.
Three columns:
1. v_products_id
2. v_products_model
3. v_products_quantity
At my line 1561 a query selects the current contents...
$sql = "SELECT
p.products_quantity as v_products_quantity,
I see in my line 1980 this...
$query = "UPDATE " . TABLE_PRODUCTS . " SET
products_quantity = '" . zen_db_input($v_products_quantity) . "' ,
In order to do this, is it simply '" . zen_db_input($v_products_quantity + p.products_quantity) . "'
Re: Easy Populate 1.2.5.4 support
Quote:
In order to do this, is it simply '" . zen_db_input($v_products_quantity + p.products_quantity) . "'
Have you tried this?
I can't really test it, but i'm thinking it might be more like this:
PHP Code:
zen_db_input($v_products_quantity + $row['p.products_quantity'])
or
PHP Code:
// Put Higher up in code
$existing_qty = $row['p.products_quantity'];
// Then in Statement
zen_db_input($v_products_quantity + $existing_qty)
Seems like it would be better to accomplish this at the spreadsheet level.