Page 3 of 3 FirstFirst 123
Results 21 to 26 of 26
  1. #21
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,267
    Plugin Contributions
    3

    Default Re: ezpoulate help needed

    The Model Number (SKU, Part Number, UPN ... whatever you call it) should live and die with the product to which it is associated.

    When a product is discontinued, so is the SKU.

    As EasyPop's primary definer for a product is the Model Number, it is important to keep these UNIQUE to a product, and not to re-use (or re-allocate) the Model Number when you stop making/selling that product.
    20 years a Zencart User

  2. #22
    Join Date
    Dec 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: ezpoulate help needed

    Hi

    I have installed Easy populate on Zencart v1.3.8.

    Easy populate 1.2.5.7b.

    I have installed it but under Tool-Easy Populate

    I get this

    www.evoluted.net Layout: Manny . www.tenka.co.uk REQUIREMENTS ============ This script requires PHP and GD2 if you wish to use the thumbnail functionality. INSTRUCTIONS ============ 1) Unzip all files 2) Edit this file, making sure everything is setup as required. 3) Upload to server 4) ?????? 5) Profit! CONFIGURATION ============= Edit the variables in this section to make the script work as you require. Start Directory - To list the files contained within the current directory enter '.', otherwise enter the path to the directory you wish to list. The path must be relative to the current directory. */ $startdir = DIR_FS_CATALOG . $tempdir; /* Show Thumbnails? - Set to true if you wish to use the scripts auto-thumbnail generation capabilities. This requires that GD2 is installed. */ $showthumbnails = true; /* Show Directories - Do you want to make subdirectories available? If not set this to false */ $showdirs = true; /* Force downloads - Do you want to force people to download the files rather than viewing them in their browser? */ $forcedownloads = false; /* Hide Files - If you wish to hide certain files or directories then enter their details here. The values entered are matched against the file/directory names. If any part of the name matches what is entered below then it is now shown. */ $hide = array( 'dlf', 'index.php', 'Thumbs', '.htaccess', '.htpasswd', 'fileList.php' ); /* Show index files - if an index file is found in a directory to you want to display that rather than the listing output from this script? */ $displayindex = false; /* Allow uploads? - If enabled users will be able to upload files to any viewable directory. You should really only enable this if the area this script is in is already password protected. */ $allowuploads = false; /* Overwrite files - If a user uploads a file with the same name as an existing file do you want the existing file to be overwritten? */ $overwrite = false; /* Index files - The follow array contains all the index files that will be used if $displayindex (above) is set to true. Feel free to add, delete or alter these */ $indexfiles = array ( 'index.html', 'index.htm', 'default.htm', 'default.html' ); /* File Icons - If you want to add your own special file icons use this section below. Each entry relates to the extension of the given file, in the form => . These files must be located within the dlf directory. */ $filetypes = array ( 'png' => 'jpg.gif', 'jpeg' => 'jpg.gif', 'bmp' => 'jpg.gif', 'jpg' => 'jpg.gif', 'gif' => 'gif.gif', 'zip' => 'archive.png', 'rar' => 'archive.png', 'exe' => 'exe.gif', 'setup' => 'setup.gif', 'txt' => 'text.png', 'htm' => 'html.gif', 'html' => 'html.gif', 'fla' => 'fla.gif', 'swf' => 'swf.gif', 'xls' => 'xls.gif', 'doc' => 'doc.gif', 'sig' => 'sig.gif', 'fh10' => 'fh10.gif', 'pdf' => 'pdf.gif', 'psd' => 'psd.gif', 'rm' => 'real.gif', 'mpg' => 'video.gif', 'mpeg' => 'video.gif', 'mov' => 'video2.gif', 'avi' => 'video.gif', 'eps' => 'eps.gif', 'gz' => 'archive.png', 'asc' => 'sig.gif', ); /* That's it! You are now ready to upload this script to the server. Only edit what is below this line if you are sure that you know what you are doing! */ error_reporting(0); if(!function_exists('imagecreatetruecolor')) $showthumbnails = false; $leadon = $startdir; if($leadon=='.') $leadon = ''; if((substr($leadon, -1, 1)!='/') && $leadon!='') $leadon = $leadon . '/'; $startdir = $leadon; if($_GET['dir']) { //check this is okay. if(substr($_GET['dir'], -1, 1)!='/') { $_GET['dir'] = $_GET['dir'] . '/'; } $dirok = true; $dirnames = split('/', $_GET['dir']); for($di=0; $di<(sizeof($dirnames)-2)) { $dotdotdir = $dotdotdir . $dirnames[$di] . '/'; } if($dirnames[$di] == '..') { $dirok = false; } } if(substr($_GET['dir'], 0, 1)=='/') { $dirok = false; } if($dirok) { $leadon = $leadon . $_GET['dir']; } } if($_GET['download'] && $forcedownloads) { $file = str_replace('/', '', $_GET['download']); $file = str_replace('..', '', $file); if(file_exists($leadon . $file)) { header("Content-type: application/x-download"); header("Content-Length: ".filesize($leadon . $file)); header('Content-Disposition: attachment; filename="'.$file.'"'); readfile($leadon . $file); die(); } } $opendir = $leadon; if(!$leadon) $opendir = '.'; if(!file_exists($opendir)) { $opendir = '.'; $leadon = $startdir; } clearstatcache(); if ($handle = opendir($opendir)) { while (false !== ($file = readdir($handle))) { //first see if this file is required in the listing if ($file == "." || $file == "..") continue; $discard = false; for($hi=0;$hi
    File
    Size
    Last Modified
    '.$files[$i].''; $thumb2 = ' onmouseover="o('.$i.', \''.urlencode($leadon . $files[$i]).'\');" onmouseout="f('.$i.');"'; } if($filetypes[$ext]) { $icon = $filetypes[$ext]; } $filename = $files[$i]; if(strlen($filename)>43) { $filename = substr($files[$i], 0, 40) . '...'; } $fileurl = $leadon . $files[$i]; if(!$forcedownloads) { $fileurl = $_SESSION['PHP_SELF'] . '?dir=' . urlencode($leadon) . '&download=' . urlencode($files[$i]); } $fileurl = "../".$tempdir.$files[$i]; ?>
    I have attached a picture to



    Please help and tell me what this is.

  3. #23
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,267
    Plugin Contributions
    3

    Default Re: ezpoulate help needed

    Quote Originally Posted by rebel tech View Post
    Hi

    I have installed Easy populate on Zencart v1.3.8.

    Easy populate 1.2.5.7b.

    I have installed it but under Tool-Easy Populate

    I get this



    I have attached a picture to



    Please help and tell me what this is.
    1.2.5.7 is not reliable... I use 1.2.5.4
    20 years a Zencart User

  4. #24
    Join Date
    Dec 2009
    Posts
    66
    Plugin Contributions
    0

    Default Re: ezpoulate help needed

    Just uploaded 710 items: Thank you! Great/awesome app!

    It would be nice if it would give me a filter to allow me to show (and a file-save option!) only the skipped lines for future verification/troubleshooting. Pencil and paper ana gonna work well with so many products

  5. #25
    Join Date
    Jan 2010
    Posts
    69
    Plugin Contributions
    0

    Default Re: ezpoulate help needed

    Thank you....after hours of pulling my hair out. This post direction was straight forward and to the point allowing me to upload easy populate. The original instructions skipped vital details which was important for non techno people.

    Thanks!



    Quote Originally Posted by schoolboy View Post
    When you unzip the EP module (1.2.5.4) you will see:

    admin (a folder)
    temp (a folder)

    install.txt (a file)
    install.sql (a file)
    history.txt (a file)
    license.txt (a file)
    readme.txt (a file)

    Open your FTP program and in the left frame (local machine) navigate to the place where you have the unzipped EP module (see above).

    Link to your server in the right frame, and navigate to the directory level where your ZC installation sits... so in the right frame (server) you will see - amongst others perhaps):
    admin (a folder)
    cache (a folder)
    docs (a folder)
    download (a folder)
    editors (a folder)
    email (a folder)
    extras (a folder)
    images (a folder)
    includes (a folder)
    media (a folder)
    pub (a folder)

    (and a whole lot of files)

    Highlight admin (folder) and temp (folder) in the left frame and click the FTP arrow that ports it to the right frame.

    There is NO NEED to FTP any of the EP FILES - just the admin and temp FOLDERS.

    The reference to changing the name of the admin folder in the EP mod refers to the recommended protocol or re-naming your server admin folder. Renaming the admin folder is a separate issue and relates to security issues - it is well documented in other areas of the forum. If you have NOT renamed your server admin folder then there is no need to change the EP admin folder name.

    Let's assume that (at some earlier point) you have done the server admin folder re-name, and it is now called adminabcde

    Then, in the EP module, you just rename THAT admin folder to adminabcde as well (so the two folder names MATCH).

    This is to make sure that when you click that arrow in your FTP program, the contents of the folders go to the correct locations...


    ---------------------------------------------------

    Anyway... once the FTP of admin and temp is complete, open your webshop admin console and go to tools>>> Easy Populate. Follow the INSTALL procedure given on this screen

    Then go to configuration>>>Easy Populate.

    (Follow my WIKI instructions from this point).

  6. #26
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: ezpoulate help needed

    Quote Originally Posted by schoolboy View Post
    1.2.5.7 is not reliable... I use 1.2.5.4
    Problem is that 1.2.5.4 does not support metatags, so you still end up having to go through 100's of products and updating them..

    I'm trialling 1.2.5.8, it still gives that garbage on the admin page, but it is uploading correctly, and inserting metas etc.. Have tried it on 10, 50 and 100 products and all good.

    Now if only the code could get cleaned up to tidy up the admin page...

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. Help Needed!
    By mani in forum Upgrading to 1.5.x
    Replies: 3
    Last Post: 9 Feb 2015, 11:33 PM
  2. Help needed - help on ways to increase zen website performance
    By sgallasch in forum General Questions
    Replies: 1
    Last Post: 22 Jul 2009, 11:01 PM
  3. Help with paypal IPN (urgent help needed!)
    By roy(irishtaxi) in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 10 Jun 2008, 07:06 AM
  4. HELP NEEDED - Shipping Price Help
    By sgallasch in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 17 Jan 2008, 12:25 PM
  5. Help needed...
    By AmyG in forum General Questions
    Replies: 5
    Last Post: 16 Mar 2007, 03:06 PM

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