Zen Cart Logo
Forums / All Other Contributions/Addons / ezpoulate help needed

ezpoulate help needed

Locked

Views: 3,767

Results 21 to 26 of 26
This thread is locked. New replies are disabled.
7 Jan 2010, 10:28 AM
#21
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

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.

8 Jan 2010, 10:47 AM
#22
rebel_tech avatar

rebel_tech

New Zenner

Join Date:
Dec 2009
Posts:
41
Plugin Contributions:
0

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

https://www.evoluted.net Layout: Manny . https://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.

8 Jan 2010, 1:49 PM
#23
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: ezpoulate help needed

rebel tech:

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

12 Jan 2010, 6:21 PM
#24
fishingmaniac avatar

fishingmaniac

New Zenner

Join Date:
Dec 2009
Posts:
66
Plugin Contributions:
0

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

14 Jan 2010, 1:20 AM
#25
lost_and_confused avatar

lost_and_confused

New Zenner

Join Date:
Jan 2010
Posts:
69
Plugin Contributions:
0

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!

schoolboy:

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).

7 Mar 2010, 11:53 PM
#26
mike_dean avatar

mike_dean

Totally Zenned

Join Date:
Feb 2006
Location:
Central Coast, NSW, Australia
Posts:
531
Plugin Contributions:
0

Re: ezpoulate help needed

schoolboy:

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...