Page 292 of 367 FirstFirst ... 192242282290291292293294302342 ... LastLast
Results 2,911 to 2,920 of 3663
  1. #2911
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by stringplayer View Post
    Almost there. When I enter a jpg from images folder under v_products_image (such as e120.jpg) it does not show. What am I missing.
    Thank very much.
    e120.jpg would need to exist in the 'IMAGES' directory at the base of the directory: images/e120.jpg. If it does not exist, then the image would not be displayed. Verify from the store front (when viewing the related product) about what the path to the image is and also verify within your ftp program that the image has been stored in the images directory not images/images or images/some-folder...

    The information that is to go into the v_products_image field is related to the path of the image based on where it is stored in the images folder. Another idea, which is always helpful, is to export one or more products and then look at the format of the information captured in the file to reproduce it in your csv file.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #2912
    Join Date
    Aug 2012
    Posts
    44
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Is there a newer version? I pulled the zip from the first post at github.
    Database was updated. I compared a blank generated csv from the fresh install to another csv generated from another older cart version. Nothing was different on the columns.


    Quote Originally Posted by mc12345678 View Post
    The reported/expected cause is that the delimiter between fields was either inconsistent or non-matching for the review of the file. There are/were some database updates incorporated into that version that would need to be executed (top right corner would have offered an update option from a previous version).

    Would need to know that the database was updated and then would recommend presenting the first few lines of the csv file to further identify the issue.

  3. #2913
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by wtfbbq View Post
    Is there a newer version? I pulled the zip from the first post at github.
    Database was updated. I compared a blank generated csv from the fresh install to another csv generated from another older cart version. Nothing was different on the columns.
    There is one that is still in some development found at https://github.com/mc12345678/Easypopulate-4.0 that has added a few features including export of the file to exclude duplicate model numbers/product_id (won't export linked product), auto-detects the field delimiter in the import file, and a few other things.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #2914
    Join Date
    Jul 2013
    Location
    South Jordan, Utah
    Posts
    16
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Zen Cart Version: 1.5.5e
    Easy Populate 4.0.36.ZC - 07-05-2016
    PHP Version: 5.6.30 (Zend: 2.6.0)

    When attempting to import products using an Excel CSV file, I get this error:
    "ERROR: Import file does not exist:"
    I can see the file in my temp folder, so I know it's there.
    Any suggestions?

  5. #2915
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Quote Originally Posted by fcutler4 View Post
    Zen Cart Version: 1.5.5e
    Easy Populate 4.0.36.ZC - 07-05-2016
    PHP Version: 5.6.30 (Zend: 2.6.0)

    When attempting to import products using an Excel CSV file, I get this error:
    "ERROR: Import file does not exist:"
    I can see the file in my temp folder, so I know it's there.
    Any suggestions?
    Couple of things, is this an upgraded version from a previous use? (if so was the update link on the right side of the screen used?)
    When reviewing the configuration settings for Easy Populate V4, what are the settings for the folder location of the file(s)? (Ie. admin or catalog and then folder name?)
    (If set for admin, then the file is sought: DIR_FS_ADMIN . $tempdir . $file['name']
    if set for catalog, then here: DIR_FS_CATALOG . $tempdir . $file['name'];

    Where $tempdir is EASYPOPULATE_4_CONFIG_TEMP_DIR (which is in the configuration section) and $file['name'] is the name of the file as it was posted (potentially sanitized) from the main page, so the filename could be/have been altered which would also result in the file "not being found". (ie. what is the filename?)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #2916
    Join Date
    Jul 2013
    Location
    South Jordan, Utah
    Posts
    16
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Thanks for the quick response. I really appreciate that!
    In answer to the upgrade question, yes it was upgraded, along with an upgrade to the latest zen version, and we moved to a new URL, shop.killerbeehobby.com. This was done for me by someone else, so I don't know if they used the upgrade button.
    The configuration setting is-- Upload Directory: admin/easypopulate4/
    Where would I find the EP folder to examine the DIR_FS_ADMIN and DIR_FS_CATALOG? Looked around in C Panel and couldn't find them.

  7. #2917
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Quote Originally Posted by fcutler4 View Post
    Thanks for the quick response. I really appreciate that!
    In answer to the upgrade question, yes it was upgraded, along with an upgrade to the latest zen version, and we moved to a new URL, shop.killerbeehobby.com. This was done for me by someone else, so I don't know if they used the upgrade button.
    The configuration setting is-- Upload Directory: admin/easypopulate4/
    Where would I find the EP folder to examine the DIR_FS_ADMIN and DIR_FS_CATALOG? Looked around in C Panel and couldn't find them.
    So, DIR_FS_ADMIN and DIR_FS_CATALOG would be found in YOUR_ADMIN/includes/configure.php. The actual admin directory is no longer expected to remain in the EP4 configuration information. This was a change from earlier versions so that the admin directory would not be stored in the database (isn't in any default ZC install).

    If your temp directory is actually in the admin directory, then in the configuration section, should see;
    Uploads Directory Admin/Catalog: true
    Uploads Directory: easypopulate4/

    Or, when attempting to set the uploads directory again, if the prefix admin/ represents your actual admin directory's name, then it should get removed from the entry as part of the coding to save the path.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  8. #2918
    Join Date
    Jul 2013
    Location
    South Jordan, Utah
    Posts
    16
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Thanks again for the quick response.
    As for the configuration settings, I don't see the "Uploads Directory Admin/Catalog: true" anywhere.
    Here are some screenshots:
    Click image for larger version. 

Name:	Screen Shot of Configuration Menu Easy Populate 6.7.2018.jpg 
Views:	63 
Size:	25.1 KB 
ID:	17894
    Click image for larger version. 

Name:	Screen Shot of Configuration Settings 6.7.2018.PNG 
Views:	50 
Size:	24.2 KB 
ID:	17895

    Here is what I found in the configure.php:

    /**
    * NOTE about DIR_FS_ADMIN
    * The value for DIR_FS_ADMIN is now auto-detected.
    * In the very rare case where there is a need to override the autodetection, simply add your own definition for it below.
    */

    AND

    define('DIR_FS_CATALOG', '/home2/z8c4y4q3/shop.killerbeehobby.com/');

    Where would I find EASYPOPULATE_4_CONFIG_TEMP_DIR?

    Thanks again!

  9. #2919
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Suggestion would be to select the un-install EP4 link in the top right. This will clear the settings in the configuration menu for EP4, then select the install option that will appear and again set the temporary directory to easypopulate4/

    It looks like somehow the upgrade operations were not executed to update the configuration menu which would have also placed EASYPOPULATE_4_CONFIG_TEMP_DIR in the database as one of the configuration options described.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  10. #2920
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,606
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread | ERROR: Import file does not exist:

    Quote Originally Posted by fcutler4 View Post
    Thanks again for the quick response.
    As for the configuration settings, I don't see the "Uploads Directory Admin/Catalog: true" anywhere.
    Here are some screenshots:
    Click image for larger version. 

Name:	Screen Shot of Configuration Menu Easy Populate 6.7.2018.jpg 
Views:	63 
Size:	25.1 KB 
ID:	17894
    Click image for larger version. 

Name:	Screen Shot of Configuration Settings 6.7.2018.PNG 
Views:	50 
Size:	24.2 KB 
ID:	17895

    Here is what I found in the configure.php:

    /**
    * NOTE about DIR_FS_ADMIN
    * The value for DIR_FS_ADMIN is now auto-detected.
    * In the very rare case where there is a need to override the autodetection, simply add your own definition for it below.
    */

    AND

    define('DIR_FS_CATALOG', '/home2/z8c4y4q3/shop.killerbeehobby.com/');

    Where would I find EASYPOPULATE_4_CONFIG_TEMP_DIR?

    Thanks again!
    Ok, in the Configuration "Easy Populate 4"

    Upload Directory should be "temp/"
    Upload Directory Admin/Catalog should be set to "true"

    Easy Populate Screen should say

    Upload Directory: admin/temp/

 

 

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  2. BackUp ZC [Support Thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 285
    Last Post: 23 Dec 2020, 10:40 AM
  3. Wordpress On ZC [Support Thread]
    By hira in forum All Other Contributions/Addons
    Replies: 1858
    Last Post: 17 Jan 2014, 01:24 AM
  4. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR