The CSV version isn't compatible with data files from older versions.
Added some more details under "Upload Results".
Printable View
The CSV version isn't compatible with data files from older versions.
Added some more details under "Upload Results".
Nice work.
I have been looking at this code to get a froogle similar output and i almost got it.
Last thing i need is a check if a product_id allready exists in the array and if it does, do not add it again. (this is because i have some products copied over different categories and i only want those once in the output)
I think i need to do something around line 762 while($row=) but i am really at loss :)
any ideas?
phazei,
1) I imagine the EOREOR was a "simple" way to handle cross platform issues with reading end of line.
2) Concerning old mods: My philosophy is more aggressive concerning a re-write. (I don't even think Linda's header thing exits anymore... from like zen 1.2..???) There are so many mods out there that it would be better to have a stable non-beta version that works with a default 1.38 install. Once that's done, you can go back and add functionality. It will also make porting to zen 2.0 easier since there are significant changes coming.
3) I would like to suggest a NEW thread for you CSV version. There are still many people using 1.2.5.4 and this is where they go for support. You're CSV version will only add to the confusion with the OSC ports, advanced ver, working and non-working free versions!
4) To my knowledge no one has ever posted code that allows you to update quantity discounts with EP (not even the advanced paid version, though langer had talked about adding it), so quantity discounts is my baby (although it was a simple solution when I finally sat down to do it).
5) Fixing product attributes is more important than other mods, but fixing this once 2.0 may be a more constructive use of time.
Just putting my thoughts out there!
-cj
Okay, I don't understand what you mean. The CSV file that I'm using is the one that it creates when I download a full EP file from my existing site. Even if I remove all the products but one and change the remaining product code, it won't actually add the products, but it acts like it does.
Okay, nevermind. Somehow I saved it as a CSV and didn't realize that wasn't what it started as. LOL - shouldn't stay up so late. Have it working now. Thank you.
That should be really simple one liner.
Line 1071:
$filestring[] = $tempcsvrow;
Change that to:
$filestring[$row['v_products_model']] = $tempcsvrow;
or
$filestring[$row['v_products_id']] = $tempcsvrow;
If there is a duplicate model or id, it will overwrite the same key instead of adding a new item.
@ini_set('auto_detect_line_endings',true);
or to force it mac:
stream_get_line($fp, 4096, "\r");
I agree, a rewrite is a waste of time until 2.0 comes out, it's going to be significantly different. I only wanted to make changes to the one easypopulate file. A rewrite should split it up into multiple files, or make a class out of it.
2.0 is supposed to come with a db backup system built in, so it probably won't even need easy populate.
Someone might as well change the version number on EP to work with 1.38, there aren't any changes between 1.36 that I've seen that affect it at all.
You're probably right.
I haven't even looked at how ZC does quantity discounts. It's probably stored in a different table. Would need to add a link to a different type of file to download if it's more than one setting per product. If not, it could just be tacked onto the full file at the end like I did with the meta.
That's the file that stores like different color or size options for the products, right? What's broken with it?
I added a new thread:
http://www.zen-cart.com/forum/showthread.php?t=117204
Though it works the same, it's more of an update than a new contribution. But then again, this thread is getting unmanageably long anyway. But it is stickied, so that's nice.
And I uploaded it to the addons section. It would be better if they just tagged it on to the 1.2.5.5 one since it's basically the same. Maybe just make it 1.2.5.6
If it would still work with txt files and had an export to csv option added to it you would be right.
I am not sure why you want it in csv, but you may have your reasons, i personally have a need to keep it outputted in txt but that's because i mainly use the exports to prepare the datafeeds for various websites out there.
If they want different output in headers, i simply make a new case, define the headers, and never look at or open the txt file again when it is done, just upload it to their website.
I guess .csv is indeed easier if you just want to export/import the products. I had trouble in the past with the txt version as my shop is running utf-8 and character encoding is always a pain for me, when i have more time i may start looking again at the csv output, it may have gotten better?
Anyway, still great you are working on this and i will surely be checking the new thread out often. See you there...
Yeah, that will only work in my version. It might be a pain in the old version.
CSV files are basically text files, they just have certain rules that make things easier. The file it was using was some proprietary thing that the original creator made up instead of using a standard that took care of all the problems he had in the code. He wasn't a very experienced coder. He didn't even bother using PHPs built in time and date functions, he had 2 pages of code to manually parse them.
In the main easypopulate.php file in the configuration options, if you change the deliminator to "\t" (tab) and the encapsulate to " " space, then it will be just like it was, without the EOREOR.
If you need to remove linefeeds in boxes, it does that for the froogle options. It takes a line of code that can be added to the other options.
The main reason it's not compatible is because I added the columns on the end for the meta data. If you import an old file, the meta data won't be there, and if you have some already, it will be overwritten with NULL.
Thank you for explaining that.
Don't get me wrong, i REALLY want to switch to the CSV option as it is allready much better for its original use; exporting/importing products :wink: Especially with the metatags incorporated.
I'll just have to find the easy way to keep that froogle output as i want it but with the above info and a few if (ep_dltype=froogle) i am probably good to go with the csv one.
cheers,
Jeroen
I'm wondering if someone know which version of Easy Populate to use (and a link to download it) with the 1.3.7 version of Zen Cart that I use and don't want to update by fear to screw everything up..
Thanks a lot
Sorry for that post, I find my answer here: http://www.zen-cart.com/forum/showthread.php?t=60409
I installed EP and was wondering if anybody has figured out how to automate the enabling of "call for pricing" when using EP. Or better yet, if v_products_price = 0 then "call for pricing". I am using Zencart version 1.3.8. I have about 20,000 products to upload, with $0 price (since our business is based on request for quote). It would take years to input that data by hand. I'd greatly appreciate any help.
php 5.2.8
mysql 5.0.67
i've installed easy populate and it exported the inventory correctly once into the tempEP directory. however anything i try to do now it just logs me back out into the admin page for zencart. anyone know why it might be doing this?
thanks
Easy Populate just quit working. I'm using 1.2.5.4 and haven't made any changes to my site since it last worked.
When I enter the file name into the "Import from temp directory" field box (the file is indeed in the temp directory and I've used copy so spelling is not an issue) I get a page returned from IE saying this page cannot be displayed (like a 404 I think)
I was able to download the "Complete" file so the module is working in that aspect.
I checked with hosting provider (Website Source) and they say everything is okay on the dbase side.
Any ideas on where to look for problem?
thx:blink:
~Lynne
I looked thru forum trying to find if my issue has already been posted. I did not see anything, please forgive me if I missed. I am using zencart v 1.3.8.
I started with small file of 5 records. And getting this error.
Warning: explode() [function.explode]: Empty delimiter in /home/xxxx/xxxx/admin/includes/functions/extra_functions/easypopulate_functions.php on line 241
When I go to line 241...I see this code.
$date_bits = explode($separator, $excel_date[1]);
Not sure what it means. I do not have any dates listed on my .txt file.
After looking at the code for the Call_For_Price on/off toggle, it shows:
<tr>
<td class="main">Product is Free:</td>
<td class="main"><img src="images/pixel_trans.gif" border="0" alt="" width="24" height="15"> <input type="radio" name="product_is_free" value="1"> Yes <input type="radio" name="product_is_free" value="0" CHECKED> No </td>
</tr>
<tr>
<td class="main">Product is Call for Price:</td>
<td class="main"><img src="images/pixel_trans.gif" border="0" alt="" width="24" height="15"> <input type="radio" name="product_is_call" value="1" CHECKED> Yes <input type="radio" name="product_is_call" value="0"> No <span class="errorText">*Product is marked as CALL FOR PRICE</span></td>
</tr>
<tr>
<td class="main">Product Priced by Attributes:</td>
<td class="main"><img src="images/pixel_trans.gif" border="0" alt="" width="24" height="15"> <input type="radio" name="products_priced_by_attribute" value="1"> Yes <input type="radio" name="products_priced_by_attribute" value="0" CHECKED> No </td>
</tr>
So, if a toggle is set to "no", after value="0" shows CHECKED> No </td>
If a toggle is set to "yes", after value="0" shows > No <span class="errorText">*Product is marked as CALL FOR PRICE</span></td>
Again, I am looking for a way that I can import my products using EP, but not have to go back into Admin, manually edit each product, and set the toggle to Call For Price = "yes".
Silver Falls,
I've sent you a PM. My own custom version does this already and I can send it to you after a mod or two. I've added a couple custom columns to the products database and will have to remove those entries first.
-cj
Kburner,
Had the same thing happen. See if this helps. Carefully read each box in your upload sheet. Mine was from the wrong cartecters were there. I was converting a .csv file to a .txt file and things like the small square box and a question mark and a \ line stopped the loading of that particular product. Once the format was correct (product description) all was fine.
It produced the same warning you had.
I'm still getting "cannot display this page" -- I dowloaded and am running Debug addon and am seeing this when I attempt to upload my .txt file. (The upload worked in Dec. and I didn't add anything to the system??)
[16-Jan-2009 13:58:06] PHP Warning: file(/hsphere/.../gpstrackzone.com/temp/WynitModelQty_Shell2008_Dec08.txt): failed to open stream: No such file or directory in /hsphere/.../gpstrackzone.com/admin/easypopulate.php on line 1223
[16-Jan-2009 13:58:06] PHP Warning: Invalid argument supplied for foreach() in /hsphere/.../gpstrackzone.com/admin/easypopulate.php on line 1301
The file above (easypopulate.php) hasn't been modified since I downloaded it from this site.
Any ideas would be great. Thanks!
lkzone,
One thing you may want to try is manually verify that ALL easy populate files uploaded correctly. Even when using Dreamweaver's synchronize tool, I have occasionally found a file that wasn't getting uploaded. Oh, and make sure your temp directory (or what ever you set it to) is set for permissions 777. My host went piggly wiggly on me recently changing ALL my file folder and file permission causing me no end of grief. No telling what may have happened during a cpanel upgrade :).
Definately check your temp folder permissions!
-cj
Thanks chadderuski -- I re-uploaded all the EP files and checked all permissions. Still not working -- I also did a test of downloading the 'complete' file and wasn't able to do that either.
Hmmmm -- I'm not sure where to go next.:frusty:
I have several hundred items that need regular updating so anyone that can give me an idea on where (else) to look for my problem would be great.
Thanks,
Lynne
Then your path and/or permissions are incorrect. Until you correct that situation, no uploading / downloading will work.
Presuming the frontend and backend of your Zen Cart is working correctly, use the path listed in your config file as a start, and compare to your path settings in:
Admin > Configuration > Easy Populate
If the paths are correct then it is a permission problem; which Trial & Error should quickly sort out.
I've checked my config file and it's set to the root directory where my zencart lives and the temp directory is located. The Config/Admin/EP has temp/ for the upload files.
I checked all EP permissions (files and directories) -- they are now at 755; most were already... though a few files were 644.
Still no-go on the download complete attempt. I installed the Debug Log Add in but I'm not getting a log in my cache directory (I installed it into my Admin directory) -- where else to look??
thanks.
:frusty:
I'm using EP to upload thousands of products and have run across a big problem. The product names and descriptions are not wrapping and instead overlapping other products, or pushing my right sidebox out. If I re-type a product name manually, it wraps onto a new line just fine. Any way to solve this problem with EP?
I have been struggling with the mod. I am only trying to get one record to load. This is error message I am getting when loading.
No model field in record. This line was not imported7960387798 | Address Bo | 9.00 | 0.3 | 14 | test | 11 UPLOAD | BOOKS | Taxable Go | 1 |
No model field in record. This line was not imported | | | | | | | | |
The manufacturer name (test) shows up in my top level category.:frusty:
Kim
Attachment 5196
Kim,
See if you can unzip this file. Notice the EOREOR at the end of the file.
Ignore the top half.. It was for a .csv file.
Easy Populate requires a unique model number (product code or SKU) in the v_products_model fields.
Look here for comprehensive help:
http://www.zen-cart.com/wiki/index.php/Easy_Populate
Hi Elkbow,
Thanks for responding. I do have EOREOR at the end of each line.
Here are what my files look like.
My excel file:
v_products_model v_products_name_1 v_products_price v_products_weight v_products_quantity v_manufacturers_name v_categories_name_1 v_categories_name_2 v_tax_class_title v_status EOREOR
796038779857 Address Book-Too Blessed To Be Stressed 9.00 0.3 14 test 11 UPLOAD BOOKS Taxable Goods 1 EOREOR
My txt file:
v_products_model v_products_name_1 v_products_price v_products_weight v_products_quantity v_manufacturers_name v_categories_name_1 v_categories_name_2 v_tax_class_title v_status EOREOR
796038779857 Address Book-Too Blessed To Be Stressed 9.00 0.3 14 test 11 UPLOAD BOOKS Taxable Goods 1 EOREOR
I have top categoryas 11 UPLOAD and next is BOOKS. I also made manufacturer as test. There are no products loaded in these files.
Kim
Actually, easypopulate need the temp folder to be permissions 777
ya, I know this isn't very safe! but try that. if it works, then make a new cryptic temp directory hackers want easily find.
oh, most if not all files will be 644 (thought your custom zen pages are different), and normally the directories are 755, but the temp folder for ep needs to be 777.
-cj
I've actually verified that it is EP and nothing else doing it. If I enter the product names/descriptions in manually, I have no problem. It's just when it's loaded with EP. We had to sit and add "<br />" in the product names where it should have been wrapping itself in EP to get it to go on a second line, which solves the problem for now, but is not a very efficient way of solving the problem for future use.
The site is HERE. It's an adult site so be warned. You will see now that everything looks alright, but it's because we sat and inserted line breaks on everything.
I took a look, but would need to see what your data is like when you upload it. If you are talking about the * bulleted points, you can use an unordered list like:
<ul><li>
<li>
<li>
</ul>
That will put each part on a separate line. Also, there is some notes in the easypopulate.php code about how to handle carriage returns and replacing them with <br> breaks. But I haven't fiddles with that. The build in editor will respect line breaks, but this is different than inputing a stream of text as the editor handles it for you.
Guys i have installed the EP on the store that i have currently the Products on and went to Tools>Easy Populate and chose the Download Complete tab-delimited .txt file to edit i downloaded the text file . i also installed EP on the new store that i want to import my products. i went to the same spot and i chose Upload EP File and browsed the txt file that i downloaded from my current shop and i pressed on insert to db. after couple seconds i got No model field in record. This line was not imported and in front of this error the name of the products. i can see the Category on the shop but i cant see any of the product or images, can anybody please help me get this working
Thank you so much
Can I remove Easy Populate by simply deleting all the files that I previously installed? It's not working and I thought I'd just remove it -- did any other files get modified when I install this add-on?
thanks.
Lynne
I've removed all the EP files but I still have a listing in my Admin/Configuration menu. I see that EP is still in the table called "Configuration_Group" in the database.
Does anyone know how it got added to this table and how to properly remove it?
I used EasyPopulate successfully last year every month and then it just stopped working. I have been unable to fix the problem and so am removing the add-on.
If anyone knows of another way to update inventory, I'd love to hear. Thanks!
Lynne, I am sorry to learn that you've been battling with EP, and that you have decided to remove it.
I think that the problem may be something to do with the formatting of the TXT file you are uploading to the server.
Have you tried doing an EP update just by using the "browse for file" option (ie: loading the file from the browser, instead of porting it first to the temp folder)?
Despite its fussy behaviour, EP remains the best way of uploading huge quantities of product data.
Perhaps you should re-consider your decision, re-install EP, and try using the "browse for file" option - using smaller volumes of product data at a time (200 - 300 products at a time).
I have successfully used EP this way on a list of products over 4000 deep - admittedly, the product descriptions were very short, but it all went through...
If you have a "test" shop, try this in the test environment first.
Forum member "phazei" has introduced a CSV version of EP (as opposed to TAB DELIMITED TXT). There is a support thread for his/her version, but note that you need PHP ver 5.2 on the server for the CSV version to work.
can someone tell me which db columns does categories_name_1 and categories_name_2 in easy populate reefer to
as i havent been able to figure out myself....
Thanks
Since the original answer to this post was in the negative, and I've spent all night figuring out how to make this happen, perhaps someone else will benefit from my searching...
Yes, this can be done by adding the additional field 'products_virtual' to the array in easypopulate.php
Since the field 'products_virtual' already exists in the products table of a stock zen cart install, the field will not need to be created as would be the case to add a custom product field.
I would post the full code, but it is too large to do so. There is a great post in this thread about how to add fields to EP here:
http://www.zen-cart.com/forum/showth...261#post643261
FWIW, I was working w/ EP1.2.5.4, but I imagine this would be the same for other versions.
Hope this saves someone else a night of searching,
Peace,
Audra
Yes. An example product, a shirt that, in my product catalog resides in Women's->Tops->Casual
categories_name_1 refers to your top level category, in our example: Women's
categories_name_2 refers to your 2nd level category, in our example: Tops
categories_name_3 refers to your 3rd level category, in our example: Casual
and so on. If your categories do not go as deep as 7, just leave them blank (although there is a spot to define how deep you would like your categories to download in the EP dowloaded file in admin->Configuration-->Easy Populate.)
HTH,
Audra
I have to let everyone know...I finally got EP to work!!!!:clap::clap:
I have to double check excel file after last column of EOREOR and make sure I delete extra columns. And anything else that could possibly mess it up. And I double check txt file for any weird errors like /, ?, etc.
Thank you so much to everyone that helped. I really appreciate it!
Kim
Hi guys
easy populate is acting like its working upload results read complete but the products don't show up on the site , previous uploads are ok but this one won't do.
Will redownloading easy populate do?
Sometime you may need to go into your admin > store manager and run "Update ALL Products Price Sorter" ... EP is supposed to do this, but I have found it unreliable. This may also be affecting some of the other questions above on why it works on a clean install and not on others.
-cj
Hi All... I have a similar problem, EZ Populate will not download files nor upload files, it just takes you to the admin login screen.
i am running ez 1.2.5.4 + zen 1.3.8.a + php5
seens some others had this problem but have not posted a fix in the general questions post.
any help would greatly be appreciated... I have installed and re-installed 3 times.
One thing I notice is the txt file is not being saved like previous txt files some of the products and categories are next to each other like v_products_modelvproducts_image , ProductAProductB,
when it should be v_products_model vproducts_image , ProductA ProductB there is no space between many items.
ok, I deleted some files and got the install to LOOK like it worked correctly. it even downloaded a sample sheet(with correct spacing/seperating/order) into the temp folder. however, it i try to download more sheets... it goes to the admin login page.
all models have model #'s.
I'm using 1.3.8 Zen Cart and the free version of EZ Populate.
I noticed (belatedly of course) that when I download/upload the attribute report it strips the connection to the downloadable product files.
Is this an issue with the program or is it something I am doing wrong? I've looked in the attribute file for a place to put the file name but have not found it. Is it named something I'm just not connecting? Thanks!
Shari
Hi, I'm using Easy Populate and I am experiencing a strange problem when trying to use the 'Models/Attributes' part of the plugin.
I wait and end up with a Internal 500 server error.
I set the max time on the 'My Store > Admin Set max_execution_time for processes' to something very large (from 60 to 6000) but still no luck.
It doesn't work on either of the 'Stream txt file' or the 'Create txt in temp/ directory' settings.
The strange bit is I can use the 'Complete' txt part no problems.
Any ideas why only the Model/Attributes part is broken and not the complete database (its the attributes I want to download!)?
The store only has around 3-4000 items in it - is there a limit to what it will happily export? Or is the problem with the server (timeout length etc)?
Thanks,
dp
Help!!!!!!
I have now been trying to install easy populate for the last 9 hours and to no avail i have it listed in admin>configuration but not in tools everything is uploaded to my root directory i have not changed anything to do with zen cart to mkae sure i have deleted everything and reinstalled it again and everytime i use the install url i get different messages everytime all saying the same thing basically but the line number changes this is the message i get :-
Warning: require_once(includes/application_top.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/Easy/easypopulate.php on line 117
Fatal error: require_once() [function.require]: Failed opening required 'includes/application_top.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/Easy/easypopulate.php on line 117
I am running the latest version of Zen Cart on an ubuntu 8.10 server running LAMP with direct access to anywhere on the system that i need to be also using mysql 5 and php 5.
Does anybody know where i can basically get an idiots step by step guide to install this as i currently have 3 suppliers for my stores this is going to save me a lot of time.
Thanks in Advance.:wacko:
Not sure how the "Easy" directory is coming into play...
(see the error message)
Make sure you are using EasyPopulate version 1.2.5.4
In your FTP program you will have two "frames"...
One shows the files on your LOCAL drive
The other shows the files on your SERVER.
In the Local Drive frame, navigate to the Easy Populate directory that shows the following:
ADMIN (folder)
TEMP (folder)
history.txt (file)
install.txt (file)
install_sql (file)
licence.txt (file)
readme.txt (file)
In the Remote Server frame, navigate to your root folder for you zencart installation - the folder that shows:
ADMIN
CACHE
DOWNLOADS
EDITORS
EXTRAS
IMAGES
INCLUDES
MEDIA
PUB
... in other words, make sure you are at the same folder level, by having:
ADMIN folder appear in both LEFT and RIGHT ftp frames.
Simply select:
ADMIN
TEMP
in the left frame, and click the FTP upload arrow to move them to your server.
There is no need to move the FILES, nor run the SQL (unless prompted to do so when you activate EasyPopulate in your shop admin panel.
ok!
tried that now getting error message :-
Warning: require_once(includes/application_top.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/admin1/easypopulate.php on line 105
Fatal error: require_once() [function.require]: Failed opening required 'includes/application_top.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/admin1/easypopulate.php on line 105
to make sure everything was still working also deleted the whole site reinstalled everything and got zen cart up and running not done anyhting to the settings uploaded the 2 files to root (as i work directly on the server don't need to use ftp), then installed easy_populate_free__from_langer__modhole_v1-2-5-5 will try and find v1-2-5-5 and install that one first see if that makes any difference.
Any more ideas please?
i have now removed v1.2.5.5 and replaced with 1.2.5.4 and still the same thing is happening with the error's :-
Warning: require_once(includes/application_top.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/admin1/easypopulate.php on line 105
Fatal error: require_once() [function.require]: Failed opening required 'includes/application_top.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/admin1/easypopulate.php on line 105
was giving me error code 0 to start permission denied but changed cmod and now gone back to the same error i get every time.
and just incase anyone wants to check it here's the server info :-
Server Host: WhateVer (127.0.1.1) Database Host: localhost (127.0.0.1)
Server OS: Linux 2.6.27-11-generic Database: MySQL 5.0.67-0ubuntu6
Server Date: 02/04/2009 10:09:33 Database Date: 02/04/2009 10:09:33
Server Up Time: 10:09:33 up 1:26, 2 users, load average: 0.33, 0.29, 0.28 HTTP Server: Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
PHP Version: 5.2.6-2ubuntu4 (Zend: 2.2.0) PHP Memory Limit: 16M PHP Safe Mode: Off
PHP File Uploads: On Max Size: 2M POST Max Size: 8M
Database Data Size: 651 kB Database Index Size: 367 kB
Zen Cart
Zen Cart 1.3.8a
Database Patch Level: 1.3.8
v1.3.8 [2009-02-04 09:39:35] (Fresh Installation)
v1.3.8 [2009-02-04 09:39:35] (Fresh Installation)
PHP Logo
PHP Version 5.2.6-2ubuntu4
System Linux WhateVer 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC 2009 i686
Build Date Oct 14 2008 19:43:47
Server API Apache 2.0 Handler
Virtual Directory Support disabled
Configuration File (php.ini) Path /etc/php5/apache2
Loaded Configuration File /etc/php5/apache2/php.ini
Scan this dir for additional .ini files /etc/php5/apache2/conf.d
additional .ini files parsed /etc/php5/apache2/conf.d/curl.ini, /etc/php5/apache2/conf.d/gd.ini, /etc/php5/apache2/conf.d/mcrypt.ini, /etc/php5/apache2/conf.d/mysql.ini, /etc/php5/apache2/conf.d/mysqli.ini, /etc/php5/apache2/conf.d/pdo.ini, /etc/php5/apache2/conf.d/pdo_mysql.ini
PHP API 20041225
PHP Extension 20060613
Zend Extension 220060519
Debug Build no
Thread Safety disabled
Zend Memory Manager enabled
IPv6 Support enabled
Registered PHP Streams zip, php, file, data, http, ftp, compress.bzip2, compress.zlib, https, ftps
Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*
Suhosin logo This server is protected with the Suhosin Patch 0.9.6.2
Copyright (c) 2006 Hardened-PHP Project
Zend logo This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
PHP Credits
Configuration
PHP Core
Directive Local Value Master Value
allow_call_time_pass_reference On On
allow_url_fopen On On
allow_url_include Off Off
always_populate_raw_post_data Off Off
arg_separator.input & &
arg_separator.output & &
asp_tags Off Off
auto_append_file no value no value
auto_globals_jit On On
auto_prepend_file no value no value
browscap no value no value
default_charset no value no value
default_mimetype text/html text/html
define_syslog_variables Off Off
disable_classes no value no value
disable_functions no value no value
display_errors On On
display_startup_errors Off Off
doc_root no value no value
docref_ext no value no value
docref_root no value no value
enable_dl Off Off
error_append_string no value no value
error_log no value no value
error_prepend_string no value no value
error_reporting 6135 6135
expose_php On On
extension_dir /usr/lib/php5/20060613+lfs /usr/lib/php5/20060613+lfs
file_uploads On On
highlight.bg #FFFFFF #FFFFFF
highlight.comment #FF8000 #FF8000
highlight.default #0000BB #0000BB
highlight.html #000000 #000000
highlight.keyword #007700 #007700
highlight.string #DD0000 #DD0000
html_errors On On
ignore_repeated_errors Off Off
ignore_repeated_source Off Off
ignore_user_abort Off Off
implicit_flush Off Off
include_path .:/usr/share/php:/usr/share/pear .:/usr/share/php:/usr/share/pear
log_errors Off Off
log_errors_max_len 1024 1024
magic_quotes_gpc On On
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off
mail.force_extra_parameters no value no value
max_execution_time 60 30
max_input_nesting_level 64 64
max_input_time 60 60
memory_limit 16M 16M
open_basedir no value no value
output_buffering no value no value
output_handler no value no value
post_max_size 8M 8M
precision 12 12
realpath_cache_size 16K 16K
realpath_cache_ttl 120 120
register_argc_argv On On
register_globals Off Off
register_long_arrays On On
report_memleaks On On
report_zend_debug On On
safe_mode Off Off
safe_mode_exec_dir no value no value
safe_mode_gid Off Off
safe_mode_include_dir no value no value
sendmail_from no value no value
sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
serialize_precision 100 100
short_open_tag On On
SMTP localhost localhost
smtp_port 25 25
sql.safe_mode Off Off
suhosin.log.phpscript 0 0
suhosin.log.phpscript.is_safe Off Off
suhosin.log.phpscript.name no value no value
suhosin.log.sapi no value no value
suhosin.log.script no value no value
suhosin.log.script.name no value no value
suhosin.log.syslog no value no value
suhosin.log.syslog.facility no value no value
suhosin.log.syslog.priority no value no value
suhosin.log.use-x-forwarded-for Off Off
track_errors Off Off
unserialize_callback_func no value no value
upload_max_filesize 2M 2M
upload_tmp_dir no value no value
user_dir no value no value
variables_order EGPCS EGPCS
xmlrpc_error_number 0 0
xmlrpc_errors Off Off
y2k_compliance On On
zend.ze1_compatibility_mode Off Off
apache2handler
Apache Version Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
Apache API Version 20051115
Server Administrator webmaster@localhost
Hostname:Port 127.0.1.1:80
User/Group www-data(33)/33
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 300 - Keep-Alive: 15
Virtual Server Yes
Server Root /etc/apache2
Loaded Modules core mod_log_config mod_logio prefork http_core mod_so mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_deflate mod_dir mod_env mod_mime mod_negotiation mod_php5 mod_setenvif mod_status
Directive Local Value Master Value
engine 1 1
last_modified 0 0
xbithack 0 0
Apache Environment
Variable Value
HTTP_HOST www.sexstoresuk.dynalias.com
HTTP_USER_AGENT Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-gb,en;q=0.5
HTTP_ACCEPT_ENCODING gzip,deflate
HTTP_ACCEPT_CHARSET ISO-8859-1,utf-8;q=0.7,*;q=0.7
HTTP_KEEP_ALIVE 300
HTTP_CONNECTION keep-alive
HTTP_REFERER http://www.sexstoresuk.dynalias.com/...70&action=edit
HTTP_COOKIE zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
PATH /usr/local/bin:/usr/bin:/bin
SERVER_SIGNATURE <address>Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch Server at www.sexstoresuk.dynalias.com Port 80</address>
SERVER_SOFTWARE Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
SERVER_NAME www.sexstoresuk.dynalias.com
SERVER_ADDR 192.168.1.64
SERVER_PORT 80
REMOTE_ADDR 81.158.66.158
DOCUMENT_ROOT /var/www/
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/admin/server_info.php
REMOTE_PORT 55162
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /admin/server_info.php
SCRIPT_NAME /admin/server_info.php
HTTP Headers Information
HTTP Request Headers
HTTP Request GET /admin/server_info.php HTTP/1.1
Host www.sexstoresuk.dynalias.com
User-Agent Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language en-gb,en;q=0.5
Accept-Encoding gzip,deflate
Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive 300
Connection keep-alive
Referer http://www.sexstoresuk.dynalias.com/...70&action=edit
Cookie zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
HTTP Response Headers
X-Powered-By PHP/5.2.6-2ubuntu4
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
Vary Accept-Encoding
Content-Encoding gzip
bcmath
BCMath support enabled
bz2
BZip2 Support Enabled
Stream Wrapper support compress.bz2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.5, 10-Dec-2007
calendar
Calendar support enabled
ctype
ctype functions enabled
curl
cURL support enabled
cURL Information libcurl/7.18.2 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.8
date
date/time support enabled
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone UTC
Directive Local Value Master Value
date.default_latitude 31.7667 31.7667
date.default_longitude 35.2333 35.2333
date.sunrise_zenith 90.583333 90.583333
date.sunset_zenith 90.583333 90.583333
date.timezone no value no value
dba
DBA support enabled
Supported handlers cdb cdb_make db4 inifile flatfile
dom
DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.32
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled
exif
EXIF Support enabled
EXIF Version 1.4 $Id: exif.c,v 1.173.2.5.2.25 2008/03/12 17:33:14 iliaa Exp $
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF
filter
Input Validation and Filtering enabled
Revision $Revision: 1.52.2.42 $
Directive Local Value Master Value
filter.default unsafe_raw unsafe_raw
filter.default_flags no value no value
ftp
FTP support enabled
gd
GD Support enabled
GD Version 2.0 or higher
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.3.7
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
gettext
GetText Support enabled
hash
hash support enabled
Hashing Engines md2 md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
iconv
iconv support enabled
iconv implementation glibc
iconv library version 2.8.90
Directive Local Value Master Value
iconv.input_encoding ISO-8859-1 ISO-8859-1
iconv.internal_encoding ISO-8859-1 ISO-8859-1
iconv.output_encoding ISO-8859-1 ISO-8859-1
json
json support enabled
json version 1.2.1
libxml
libXML support active
libXML Version 2.6.32
libXML streams enabled
mbstring
Multibyte Support enabled
Multibyte string engine libmbfl
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 4.4.4
Multibyte regex (oniguruma) backtrack check On
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Directive Local Value Master Value
mbstring.detect_order no value no value
mbstring.encoding_translation Off Off
mbstring.func_overload 0 0
mbstring.http_input pass pass
mbstring.http_output pass pass
mbstring.internal_encoding no value no value
mbstring.language neutral neutral
mbstring.strict_detection Off Off
mbstring.substitute_character no value no value
mcrypt
mcrypt support enabled
Version 2.5.7
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream
Directive Local Value Master Value
mcrypt.algorithms_dir no value no value
mcrypt.modes_dir no value no value
mime_magic
mime_magic support invalid magic file, disabled
Directive Local Value Master Value
mime_magic.debug Off Off
mime_magic.magicfile /usr/share/file/magic.mime /usr/share/file/magic.mime
mysql
MySQL Support enabled
Active Persistent Links 0
Active Links 1
Client API version 5.0.67
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib -lmysqlclient_r
Directive Local Value Master Value
mysql.allow_persistent On On
mysql.connect_timeout 60 60
mysql.default_host no value no value
mysql.default_password no value no value
mysql.default_port no value no value
mysql.default_socket no value no value
mysql.default_user no value no value
mysql.max_links Unlimited Unlimited
mysql.max_persistent Unlimited Unlimited
mysql.trace_mode Off Off
mysqli
MysqlI Support enabled
Client API library version 5.0.67
Client API header version 5.0.67
MYSQLI_SOCKET /var/run/mysqld/mysqld.sock
Directive Local Value Master Value
mysqli.default_host no value no value
mysqli.default_port 3306 3306
mysqli.default_pw no value no value
mysqli.default_socket no value no value
mysqli.default_user no value no value
mysqli.max_links Unlimited Unlimited
mysqli.reconnect Off Off
openssl
OpenSSL support enabled
OpenSSL Version OpenSSL 0.9.8g 19 Oct 2007
pcre
PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 7.6 2008-01-28
Directive Local Value Master Value
pcre.backtrack_limit 100000 100000
pcre.recursion_limit 100000 100000
PDO
PDO support enabled
PDO drivers mysql
pdo_mysql
PDO Driver for MySQL, client library version 5.0.67
posix
Revision $Revision: 1.70.2.3.2.18 $
Reflection
Reflection enabled
Version $Id: php_reflection.c,v 1.164.2.33.2.50 2008/03/13 15:56:21 iliaa Exp $
session
Session Support enabled
Registered save handlers files user
Registered serializer handlers php php_binary wddx
Directive Local Value Master Value
session.auto_start Off Off
session.bug_compat_42 On On
session.bug_compat_warn On On
session.cache_expire 180 180
session.cache_limiter nocache nocache
session.cookie_domain www.sexstoresuk.dynalias.com no value
session.cookie_httponly Off Off
session.cookie_lifetime 0 0
session.cookie_path / /
session.cookie_secure Off Off
session.entropy_file no value no value
session.entropy_length 0 0
session.gc_divisor 2 100
session.gc_maxlifetime 3600 1440
session.gc_probability 1 0
session.hash_bits_per_character 4 4
session.hash_function 0 0
session.name zenAdminID PHPSESSID
session.referer_check no value no value
session.save_handler user files
session.save_path /var/www/cache /var/lib/php5
session.serialize_handler php php
session.use_cookies On On
session.use_only_cookies Off Off
session.use_trans_sid 0 0
shmop
shmop support enabled
SimpleXML
Simplexml support enabled
Revision $Revision: 1.151.2.22.2.39 $
Schema support enabled
soap
Soap Client enabled
Soap Server enabled
Directive Local Value Master Value
soap.wsdl_cache 1 1
soap.wsdl_cache_dir /tmp /tmp
soap.wsdl_cache_enabled 1 1
soap.wsdl_cache_limit 5 5
soap.wsdl_cache_ttl 86400 86400
sockets
Sockets Support enabled
SPL
SPL support enabled
Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
standard
Regex Library Bundled library enabled
Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i
Directive Local Value Master Value
assert.active 1 1
assert.bail 0 0
assert.callback no value no value
assert.quiet_eval 0 0
assert.warning 1 1
auto_detect_line_endings 0 0
default_socket_timeout 60 60
safe_mode_allowed_env_vars PHP_ PHP_
safe_mode_protected_env_vars LD_LIBRARY_PATH LD_LIBRARY_PATH
url_rewriter.tags a=href,area=href,frame=src,input=src,form=,fieldset= a=href,area=href,frame=src,input=src,form=,fieldset=
user_agent no value no value
sysvmsg
sysvmsg support enabled
Revision $Revision: 1.20.2.3.2.7 $
tokenizer
Tokenizer Support enabled
wddx
WDDX Support enabled
WDDX Session Serializer enabled
xml
XML Support active
XML Namespace Support active
libxml2 Version 2.6.32
xmlreader
XMLReader enabled
xmlwriter
XMLWriter enabled
zip
Zip enabled
Extension Version $Id: php_zip.c,v 1.1.2.43 2008/01/18 00:51:38 pajoye Exp $
Zip version 1.8.11
Libzip version 0.8.0-compatible
zlib
ZLib Support enabled
Stream Wrapper support compress.zlib://
Stream Filter support zlib.inflate, zlib.deflate
Compiled Version 1.2.1.1
Linked Version 1.2.3.3
Directive Local Value Master Value
zlib.output_compression Off Off
zlib.output_compression_level -1 -1
zlib.output_handler no value no value
Additional Modules
Module Name
sysvsem
sysvshm
Environment
Variable Value
APACHE_PID_FILE /var/run/apache2.pid
PATH /usr/local/bin:/usr/bin:/bin
LANG C
APACHE_RUN_GROUP www-data
APACHE_RUN_USER www-data
PWD /home/neil
cont on next post........
PHP Variables
Variable Value
PHP_SELF /admin/server_info.php
_REQUEST["zenid"] ae01b435e30d63d5c886c8fe03c159d0
_REQUEST["zenAdminID"] 07d4d049c2ab05180a3e2e0a0f5c01d3
_REQUEST["zenInstallId"] 86b9af70d5b0b0e399d8e1065e056a7a
_COOKIE["zenid"] ae01b435e30d63d5c886c8fe03c159d0
_COOKIE["zenAdminID"] 07d4d049c2ab05180a3e2e0a0f5c01d3
_COOKIE["zenInstallId"] 86b9af70d5b0b0e399d8e1065e056a7a
_SERVER["HTTP_HOST"] www.sexstoresuk.dynalias.com
_SERVER["HTTP_USER_AGENT"] Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
_SERVER["HTTP_ACCEPT"] text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
_SERVER["HTTP_ACCEPT_LANGUAGE"] en-gb,en;q=0.5
_SERVER["HTTP_ACCEPT_ENCODING"] gzip,deflate
_SERVER["HTTP_ACCEPT_CHARSET"] ISO-8859-1,utf-8;q=0.7,*;q=0.7
_SERVER["HTTP_KEEP_ALIVE"] 300
_SERVER["HTTP_CONNECTION"] keep-alive
_SERVER["HTTP_REFERER"] http://www.sexstoresuk.dynalias.com/...70&action=edit
_SERVER["HTTP_COOKIE"] zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
_SERVER["PATH"] /usr/local/bin:/usr/bin:/bin
_SERVER["SERVER_SIGNATURE"] <address>Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch Server at www.sexstoresuk.dynalias.com Port 80</address>
_SERVER["SERVER_SOFTWARE"] Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
_SERVER["SERVER_NAME"] www.sexstoresuk.dynalias.com
_SERVER["SERVER_ADDR"] 192.168.1.64
_SERVER["SERVER_PORT"] 80
_SERVER["REMOTE_ADDR"] 81.158.66.158
_SERVER["DOCUMENT_ROOT"] /var/www/
_SERVER["SERVER_ADMIN"] webmaster@localhost
_SERVER["SCRIPT_FILENAME"] /var/www/admin/server_info.php
_SERVER["REMOTE_PORT"] 55162
_SERVER["GATEWAY_INTERFACE"] CGI/1.1
_SERVER["SERVER_PROTOCOL"] HTTP/1.1
_SERVER["REQUEST_METHOD"] GET
_SERVER["QUERY_STRING"] no value
_SERVER["REQUEST_URI"] /admin/server_info.php
_SERVER["SCRIPT_NAME"] /admin/server_info.php
_SERVER["PHP_SELF"] /admin/server_info.php
_SERVER["REQUEST_TIME"] 1233742171
_SERVER["argv"]
Array
(
)
_SERVER["argc"] 0
_ENV["APACHE_PID_FILE"] /var/run/apache2.pid
_ENV["PATH"] /usr/local/bin:/usr/bin:/bin
_ENV["LANG"] C
_ENV["APACHE_RUN_GROUP"] www-data
_ENV["APACHE_RUN_USER"] www-data
_ENV["PWD"] /home/neil
PHP License
Zen Cart:: the art of e-commerceServer Host: WhateVer (127.0.1.1) Database Host: localhost (127.0.0.1)
Server OS: Linux 2.6.27-11-generic Database: MySQL 5.0.67-0ubuntu6
Server Date: 02/04/2009 10:09:33 Database Date: 02/04/2009 10:09:33
Server Up Time: 10:09:33 up 1:26, 2 users, load average: 0.33, 0.29, 0.28 HTTP Server: Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
PHP Version: 5.2.6-2ubuntu4 (Zend: 2.2.0) PHP Memory Limit: 16M PHP Safe Mode: Off
PHP File Uploads: On Max Size: 2M POST Max Size: 8M
Database Data Size: 651 kB Database Index Size: 367 kB
Zen Cart
Zen Cart 1.3.8a
Database Patch Level: 1.3.8
v1.3.8 [2009-02-04 09:39:35] (Fresh Installation)
v1.3.8 [2009-02-04 09:39:35] (Fresh Installation)
PHP Logo
PHP Version 5.2.6-2ubuntu4
System Linux WhateVer 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC 2009 i686
Build Date Oct 14 2008 19:43:47
Server API Apache 2.0 Handler
Virtual Directory Support disabled
Configuration File (php.ini) Path /etc/php5/apache2
Loaded Configuration File /etc/php5/apache2/php.ini
Scan this dir for additional .ini files /etc/php5/apache2/conf.d
additional .ini files parsed /etc/php5/apache2/conf.d/curl.ini, /etc/php5/apache2/conf.d/gd.ini, /etc/php5/apache2/conf.d/mcrypt.ini, /etc/php5/apache2/conf.d/mysql.ini, /etc/php5/apache2/conf.d/mysqli.ini, /etc/php5/apache2/conf.d/pdo.ini, /etc/php5/apache2/conf.d/pdo_mysql.ini
PHP API 20041225
PHP Extension 20060613
Zend Extension 220060519
Debug Build no
Thread Safety disabled
Zend Memory Manager enabled
IPv6 Support enabled
Registered PHP Streams zip, php, file, data, http, ftp, compress.bzip2, compress.zlib, https, ftps
Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*
Suhosin logo This server is protected with the Suhosin Patch 0.9.6.2
Copyright (c) 2006 Hardened-PHP Project
Zend logo This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
PHP Credits
Configuration
PHP Core
Directive Local Value Master Value
allow_call_time_pass_reference On On
allow_url_fopen On On
allow_url_include Off Off
always_populate_raw_post_data Off Off
arg_separator.input & &
arg_separator.output & &
asp_tags Off Off
auto_append_file no value no value
auto_globals_jit On On
auto_prepend_file no value no value
browscap no value no value
default_charset no value no value
default_mimetype text/html text/html
define_syslog_variables Off Off
disable_classes no value no value
disable_functions no value no value
display_errors On On
display_startup_errors Off Off
doc_root no value no value
docref_ext no value no value
docref_root no value no value
enable_dl Off Off
error_append_string no value no value
error_log no value no value
error_prepend_string no value no value
error_reporting 6135 6135
expose_php On On
extension_dir /usr/lib/php5/20060613+lfs /usr/lib/php5/20060613+lfs
file_uploads On On
highlight.bg #FFFFFF #FFFFFF
highlight.comment #FF8000 #FF8000
highlight.default #0000BB #0000BB
highlight.html #000000 #000000
highlight.keyword #007700 #007700
highlight.string #DD0000 #DD0000
html_errors On On
ignore_repeated_errors Off Off
ignore_repeated_source Off Off
ignore_user_abort Off Off
implicit_flush Off Off
include_path .:/usr/share/php:/usr/share/pear .:/usr/share/php:/usr/share/pear
log_errors Off Off
log_errors_max_len 1024 1024
magic_quotes_gpc On On
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off
mail.force_extra_parameters no value no value
max_execution_time 60 30
max_input_nesting_level 64 64
max_input_time 60 60
memory_limit 16M 16M
open_basedir no value no value
output_buffering no value no value
output_handler no value no value
post_max_size 8M 8M
precision 12 12
realpath_cache_size 16K 16K
realpath_cache_ttl 120 120
register_argc_argv On On
register_globals Off Off
register_long_arrays On On
report_memleaks On On
report_zend_debug On On
safe_mode Off Off
safe_mode_exec_dir no value no value
safe_mode_gid Off Off
safe_mode_include_dir no value no value
sendmail_from no value no value
sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
serialize_precision 100 100
short_open_tag On On
SMTP localhost localhost
smtp_port 25 25
sql.safe_mode Off Off
suhosin.log.phpscript 0 0
suhosin.log.phpscript.is_safe Off Off
suhosin.log.phpscript.name no value no value
suhosin.log.sapi no value no value
suhosin.log.script no value no value
suhosin.log.script.name no value no value
suhosin.log.syslog no value no value
suhosin.log.syslog.facility no value no value
suhosin.log.syslog.priority no value no value
suhosin.log.use-x-forwarded-for Off Off
track_errors Off Off
unserialize_callback_func no value no value
upload_max_filesize 2M 2M
upload_tmp_dir no value no value
user_dir no value no value
variables_order EGPCS EGPCS
xmlrpc_error_number 0 0
xmlrpc_errors Off Off
y2k_compliance On On
zend.ze1_compatibility_mode Off Off
apache2handler
Apache Version Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
Apache API Version 20051115
Server Administrator webmaster@localhost
Hostname:Port 127.0.1.1:80
User/Group www-data(33)/33
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 300 - Keep-Alive: 15
Virtual Server Yes
Server Root /etc/apache2
Loaded Modules core mod_log_config mod_logio prefork http_core mod_so mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_deflate mod_dir mod_env mod_mime mod_negotiation mod_php5 mod_setenvif mod_status
Directive Local Value Master Value
engine 1 1
last_modified 0 0
xbithack 0 0
Apache Environment
Variable Value
HTTP_HOST www.sexstoresuk.dynalias.com
HTTP_USER_AGENT Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-gb,en;q=0.5
HTTP_ACCEPT_ENCODING gzip,deflate
HTTP_ACCEPT_CHARSET ISO-8859-1,utf-8;q=0.7,*;q=0.7
HTTP_KEEP_ALIVE 300
HTTP_CONNECTION keep-alive
HTTP_REFERER http://www.sexstoresuk.dynalias.com/...70&action=edit
HTTP_COOKIE zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
PATH /usr/local/bin:/usr/bin:/bin
SERVER_SIGNATURE <address>Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch Server at www.sexstoresuk.dynalias.com Port 80</address>
SERVER_SOFTWARE Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
SERVER_NAME www.sexstoresuk.dynalias.com
SERVER_ADDR 192.168.1.64
SERVER_PORT 80
REMOTE_ADDR 81.158.66.158
DOCUMENT_ROOT /var/www/
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/admin/server_info.php
REMOTE_PORT 55162
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /admin/server_info.php
SCRIPT_NAME /admin/server_info.php
HTTP Headers Information
HTTP Request Headers
HTTP Request GET /admin/server_info.php HTTP/1.1
Host www.sexstoresuk.dynalias.com
User-Agent Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language en-gb,en;q=0.5
Accept-Encoding gzip,deflate
Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive 300
Connection keep-alive
Referer http://www.sexstoresuk.dynalias.com/...70&action=edit
Cookie zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
HTTP Response Headers
X-Powered-By PHP/5.2.6-2ubuntu4
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
Vary Accept-Encoding
Content-Encoding gzip
bcmath
BCMath support enabled
bz2
BZip2 Support Enabled
Stream Wrapper support compress.bz2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.5, 10-Dec-2007
calendar
Calendar support enabled
ctype
ctype functions enabled
curl
cURL support enabled
cURL Information libcurl/7.18.2 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.8
date
date/time support enabled
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone UTC
Directive Local Value Master Value
date.default_latitude 31.7667 31.7667
date.default_longitude 35.2333 35.2333
date.sunrise_zenith 90.583333 90.583333
date.sunset_zenith 90.583333 90.583333
date.timezone no value no value
dba
DBA support enabled
Supported handlers cdb cdb_make db4 inifile flatfile
dom
DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.32
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled
exif
EXIF Support enabled
EXIF Version 1.4 $Id: exif.c,v 1.173.2.5.2.25 2008/03/12 17:33:14 iliaa Exp $
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF
filter
Input Validation and Filtering enabled
Revision $Revision: 1.52.2.42 $
Directive Local Value Master Value
filter.default unsafe_raw unsafe_raw
filter.default_flags no value no value
ftp
FTP support enabled
gd
GD Support enabled
GD Version 2.0 or higher
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.3.7
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
gettext
GetText Support enabled
hash
hash support enabled
Hashing Engines md2 md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
iconv
iconv support enabled
iconv implementation glibc
iconv library version 2.8.90
Directive Local Value Master Value
iconv.input_encoding ISO-8859-1 ISO-8859-1
iconv.internal_encoding ISO-8859-1 ISO-8859-1
iconv.output_encoding ISO-8859-1 ISO-8859-1
json
json support enabled
json version 1.2.1
libxml
libXML support active
libXML Version 2.6.32
libXML streams enabled
mbstring
Multibyte Support enabled
Multibyte string engine libmbfl
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 4.4.4
Multibyte regex (oniguruma) backtrack check On
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Directive Local Value Master Value
mbstring.detect_order no value no value
mbstring.encoding_translation Off Off
mbstring.func_overload 0 0
mbstring.http_input pass pass
mbstring.http_output pass pass
mbstring.internal_encoding no value no value
mbstring.language neutral neutral
mbstring.strict_detection Off Off
mbstring.substitute_character no value no value
mcrypt
mcrypt support enabled
Version 2.5.7
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream
Directive Local Value Master Value
mcrypt.algorithms_dir no value no value
mcrypt.modes_dir no value no value
mime_magic
mime_magic support invalid magic file, disabled
Directive Local Value Master Value
mime_magic.debug Off Off
mime_magic.magicfile /usr/share/file/magic.mime /usr/share/file/magic.mime
mysql
MySQL Support enabled
Active Persistent Links 0
Active Links 1
Client API version 5.0.67
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib -lmysqlclient_r
Directive Local Value Master Value
mysql.allow_persistent On On
mysql.connect_timeout 60 60
mysql.default_host no value no value
mysql.default_password no value no value
mysql.default_port no value no value
mysql.default_socket no value no value
mysql.default_user no value no value
mysql.max_links Unlimited Unlimited
mysql.max_persistent Unlimited Unlimited
mysql.trace_mode Off Off
mysqli
MysqlI Support enabled
Client API library version 5.0.67
Client API header version 5.0.67
MYSQLI_SOCKET /var/run/mysqld/mysqld.sock
Directive Local Value Master Value
mysqli.default_host no value no value
mysqli.default_port 3306 3306
mysqli.default_pw no value no value
mysqli.default_socket no value no value
mysqli.default_user no value no value
mysqli.max_links Unlimited Unlimited
mysqli.reconnect Off Off
openssl
OpenSSL support enabled
OpenSSL Version OpenSSL 0.9.8g 19 Oct 2007
pcre
PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 7.6 2008-01-28
Directive Local Value Master Value
pcre.backtrack_limit 100000 100000
pcre.recursion_limit 100000 100000
PDO
PDO support enabled
PDO drivers mysql
pdo_mysql
PDO Driver for MySQL, client library version 5.0.67
posix
Revision $Revision: 1.70.2.3.2.18 $
Reflection
Reflection enabled
Version $Id: php_reflection.c,v 1.164.2.33.2.50 2008/03/13 15:56:21 iliaa Exp $
session
Session Support enabled
Registered save handlers files user
Registered serializer handlers php php_binary wddx
Directive Local Value Master Value
session.auto_start Off Off
session.bug_compat_42 On On
session.bug_compat_warn On On
session.cache_expire 180 180
session.cache_limiter nocache nocache
session.cookie_domain www.sexstoresuk.dynalias.com no value
session.cookie_httponly Off Off
session.cookie_lifetime 0 0
session.cookie_path / /
session.cookie_secure Off Off
session.entropy_file no value no value
session.entropy_length 0 0
session.gc_divisor 2 100
session.gc_maxlifetime 3600 1440
session.gc_probability 1 0
session.hash_bits_per_character 4 4
session.hash_function 0 0
session.name zenAdminID PHPSESSID
session.referer_check no value no value
session.save_handler user files
session.save_path /var/www/cache /var/lib/php5
session.serialize_handler php php
session.use_cookies On On
session.use_only_cookies Off Off
session.use_trans_sid 0 0
shmop
shmop support enabled
SimpleXML
Simplexml support enabled
Revision $Revision: 1.151.2.22.2.39 $
Schema support enabled
soap
Soap Client enabled
Soap Server enabled
Directive Local Value Master Value
soap.wsdl_cache 1 1
soap.wsdl_cache_dir /tmp /tmp
soap.wsdl_cache_enabled 1 1
soap.wsdl_cache_limit 5 5
soap.wsdl_cache_ttl 86400 86400
sockets
Sockets Support enabled
SPL
SPL support enabled
Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
standard
Regex Library Bundled library enabled
Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i
Directive Local Value Master Value
assert.active 1 1
assert.bail 0 0
assert.callback no value no value
assert.quiet_eval 0 0
assert.warning 1 1
auto_detect_line_endings 0 0
default_socket_timeout 60 60
safe_mode_allowed_env_vars PHP_ PHP_
safe_mode_protected_env_vars LD_LIBRARY_PATH LD_LIBRARY_PATH
url_rewriter.tags a=href,area=href,frame=src,input=src,form=,fieldset= a=href,area=href,frame=src,input=src,form=,fieldset=
user_agent no value no value
sysvmsg
sysvmsg support enabled
Revision $Revision: 1.20.2.3.2.7 $
tokenizer
Tokenizer Support enabled
wddx
WDDX Support enabled
WDDX Session Serializer enabled
xml
XML Support active
XML Namespace Support active
libxml2 Version 2.6.32
xmlreader
XMLReader enabled
xmlwriter
XMLWriter enabled
zip
Zip enabled
Extension Version $Id: php_zip.c,v 1.1.2.43 2008/01/18 00:51:38 pajoye Exp $
Zip version 1.8.11
Libzip version 0.8.0-compatible
zlib
ZLib Support enabled
Stream Wrapper support compress.zlib://
Stream Filter support zlib.inflate, zlib.deflate
Compiled Version 1.2.1.1
Linked Version 1.2.3.3
Directive Local Value Master Value
zlib.output_compression Off Off
zlib.output_compression_level -1 -1
zlib.output_handler no value no value
Additional Modules
Module Name
sysvsem
sysvshm
Environment
Variable Value
APACHE_PID_FILE /var/run/apache2.pid
PATH /usr/local/bin:/usr/bin:/bin
LANG C
APACHE_RUN_GROUP www-data
APACHE_RUN_USER www-data
PWD /home/neil
PHP Variables
Variable Value
PHP_SELF /admin/server_info.php
_REQUEST["zenid"] ae01b435e30d63d5c886c8fe03c159d0
_REQUEST["zenAdminID"] 07d4d049c2ab05180a3e2e0a0f5c01d3
_REQUEST["zenInstallId"] 86b9af70d5b0b0e399d8e1065e056a7a
_COOKIE["zenid"] ae01b435e30d63d5c886c8fe03c159d0
_COOKIE["zenAdminID"] 07d4d049c2ab05180a3e2e0a0f5c01d3
_COOKIE["zenInstallId"] 86b9af70d5b0b0e399d8e1065e056a7a
_SERVER["HTTP_HOST"] www.sexstoresuk.dynalias.com
_SERVER["HTTP_USER_AGENT"] Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
_SERVER["HTTP_ACCEPT"] text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
_SERVER["HTTP_ACCEPT_LANGUAGE"] en-gb,en;q=0.5
_SERVER["HTTP_ACCEPT_ENCODING"] gzip,deflate
_SERVER["HTTP_ACCEPT_CHARSET"] ISO-8859-1,utf-8;q=0.7,*;q=0.7
_SERVER["HTTP_KEEP_ALIVE"] 300
_SERVER["HTTP_CONNECTION"] keep-alive
_SERVER["HTTP_REFERER"] http://www.sexstoresuk.dynalias.com/...70&action=edit
_SERVER["HTTP_COOKIE"] zenid=ae01b435e30d63d5c886c8fe03c159d0; zenAdminID=07d4d049c2ab05180a3e2e0a0f5c01d3; zenInstallId=86b9af70d5b0b0e399d8e1065e056a7a
_SERVER["PATH"] /usr/local/bin:/usr/bin:/bin
_SERVER["SERVER_SIGNATURE"] <address>Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch Server at www.sexstoresuk.dynalias.com Port 80</address>
_SERVER["SERVER_SOFTWARE"] Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch
_SERVER["SERVER_NAME"] www.sexstoresuk.dynalias.com
_SERVER["SERVER_ADDR"] 192.168.1.64
_SERVER["SERVER_PORT"] 80
_SERVER["REMOTE_ADDR"] 81.158.66.158
_SERVER["DOCUMENT_ROOT"] /var/www/
_SERVER["SERVER_ADMIN"] webmaster@localhost
_SERVER["SCRIPT_FILENAME"] /var/www/admin/server_info.php
_SERVER["REMOTE_PORT"] 55162
_SERVER["GATEWAY_INTERFACE"] CGI/1.1
_SERVER["SERVER_PROTOCOL"] HTTP/1.1
_SERVER["REQUEST_METHOD"] GET
_SERVER["QUERY_STRING"] no value
_SERVER["REQUEST_URI"] /admin/server_info.php
_SERVER["SCRIPT_NAME"] /admin/server_info.php
_SERVER["PHP_SELF"] /admin/server_info.php
_SERVER["REQUEST_TIME"] 1233742171
_SERVER["argv"]
Array
(
)
_SERVER["argc"] 0
_ENV["APACHE_PID_FILE"] /var/run/apache2.pid
_ENV["PATH"] /usr/local/bin:/usr/bin:/bin
_ENV["LANG"] C
_ENV["APACHE_RUN_GROUP"] www-data
_ENV["APACHE_RUN_USER"] www-data
_ENV["PWD"] /home/neil
and the problem being creloaded has epa & epb built in but doesnt have a mod for smtpauth.arrrrrrgghhhhh
:frusty:
ok i've found the problem all i need to do is find the fix.
see table below :-
Searching 409 files ...
/var/www/admin/includes/languages/english/data.php
Line #58 : define('MSG_3', 'Easy Populate:');
/var/www/admin/includes/languages/english/easypopulate.php
Line #12 : define('HEADING_TITLE', 'Easy Populate Configuration');
Line #13 : define('EASY_VERSION_A', 'Easy Populate Advanced ');
Line #14 : define('EASY_VERSION_B', 'Easy Populate Basic ');
Line #103 : define('EASY_ERROR_5', '</b><font color=red>Error 05 - You are trying to use a file created with EP Advanced, please try with Easy Populate Advanced </font>');
Line #104 : define('EASY_ERROR_5a', '<font color=red><b><u> Click here to return to Easy Populate Basic </u></b></font>');
Line #105 : define('EASY_ERROR_6', '</b><font color=red>Error 06 - You are trying to use a file created with EP Basic, please try with Easy Populate Basic </font>');
Line #106 : define('EASY_ERROR_6a', '<font color=red><b><u> Click here to return to Easy Populate Advanced </u></b></font>');
Line #109 : // Eversun mod for Easy Populate Products Options, Values and Attributes
Line #110 : define('EASY_VERSION_C', 'Easy Populate Options');
Line #113 : define('EASY_VERSION_D', 'Easy Populate Values');
Line #116 : define('EASY_VERSION_E', 'Easy Populate Attributes');
Line #124 : // Eversun mod end for Easy Populate Products Options, Values and Attributes
/var/www/admin/includes/languages/english/popup_ep_help.php
Line #9 : define('NAVBAR_TITLE', 'Easy Populate Help');
Line #10 : define('TEXT_INFO_HEADING_NEW_DATA', 'Easy Populate Help');
Warning: file(/var/www/includes/languages/english/easypopulate.php) [function.file]: failed to open stream: Permission denied in /var/www/admin/store_manager.php on line 233
Warning: Invalid argument supplied for foreach() in /var/www/admin/store_manager.php on line 236
Warning: file(/var/www/includes/languages/english/extra_definitions/easypopulate.php) [function.file]: failed to open stream: Permission denied in /var/www/admin/store_manager.php on line 233
Warning: Invalid argument supplied for foreach() in /var/www/admin/store_manager.php on line 236
I have added my image locations to the tab delimited file. The image is small, but when I add my LRG images, it doesn't find those files. It just keeps showing the small images. Do I have to leave that part blank and input images one at a time in order for the LRG to work properly?
When I try and upload a tab file, I am getting an error
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in D:\Hosting\3823308\html\admin\easypopulate.php on line 1359
Can anyone give some direction please. Thanks!
Does anyone use Firebug here?
I'm having trouble with EasyPopulate when firebug is enabled. Basically, the following happens:
1) Save the excel spreadsheet, it's fine.
2) Go into the EasyPopulate panel, upload the file.
3) Uh-Oh, I see EP has thrown some errors up. No problems, I'll make some changes in the spreadsheet.
4) Make the changes, save the spreadsheet.
5) Wait...I'm getting an error. It says the file is already in use and cannot be saved.
I've established that this definitely is firebug, as I've disabled/enabled each firefox addon I have one by one, and only when I disable firebug, the error doesn't show.
It's rather specific - has anyone had this recently?
I am having the same problem... it has worked: ok until the other day. I did add 100 more products to my site for a total of about 2200 itmes. maybe I will test this out and remove the 100 items.. ???:oops:
Hi all.. I have set up Zen Cart with Easy Populate and have it working but not ideally.. I'm exporting a number of fields from Filemaker that I have to combine into one to fit into v_products_description_1. Ideally I'd like to set up a v_products_description_2, v_products_description_3 and so on, so I can place fields into there own unique field so I can add individual formatting for text on each v_description.. ie Bold on one.. Bold Italics on another, to break up the monotony of long-winded descriptions.
I did see on here someone with a link to a modified easypopulate.php file, claiming to add fields, but I'm not that technically minded to fully understand.. I guess if someone can confirm it's possible to do via this method or another I can employ someone to take on the task..
Thanks in advance
I'm totally lovig Easy Populate!
But I have a question that I can't seem to find an answer to... Is there a way, when using the Attributes Form, to keep the default attribute value selected?
Probably a really simple question, but how do I upload an item as always free shipping?
I am using excel and saving as .csv files.
Dear All
Easy Populate has a BUG
for example u have 2 same products(same model, same description, all info same, not link product), but in different category, if u use the populate to export a complete file, then import it to db by easy populate again, u will find that the system auto made ur product linked and generate a new product that with the same detail of your products, so it mean duplicated
here is the example
category 1 have "A" product
category 2 have "A" product
they are same info but not linked
after export and import
category 1 have two "A" products, one is linked to category 2, one is not
category 2 have two "A" products, one is linked to category 1, one is not
Wow, that's not very clear. I have 5 stores and at least 13,700 products and have never had a problem with Easy Populate. If I think I have duplicate items, simply sort data by model number and get rid of the wrong one., Or else you have to track each yellow duplicate box and delete one by one.
Sure your upload is correct?
But i really find this problem, becasue i have try many time with a new shop which only contains 2 categories and 2 products
after import it will become 4 products
Well this will not happen in easy populate advance 3.0
Alright I'm assuming this isn't first time asked:
I got Easypopulate installed and everything, I downloaded spreadsheet to use as template, did an entire catagory via excel, saved, uploaded to tempEP directory, imported to DB via Easypopulate.
But never showed up in my category or cart in general.Code:Upload Results
Filename: Full-EP2009Feb12-0012.csv
No model field in record. This line was not importedtorch.gif | Amazon Hel | Rarity: Un | | | | | 2.5 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 3.5 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 5.5 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 3.5 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 4.95 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon | | | | | | 7.99 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 5.5 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 7.99 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
No model field in record. This line was not importedtorch.gif | Amazon Hel | | | | | | 17.95 | 0 | | 2/12/2009 | 1000 | | East Ladde | Large Char | Amazon Tor | | | | | --none-- | 1 | 0 | 0 | 0 | 0 | 0 | | | |
Upload Complete
What am I doing wrong?
Edit: I don't use model field that's why that comes up so often :D
Easy Populate will NOT work unless EVERY PRODUCT hasQuote:
I don't use model field that's why that comes up so often
UNIQUE model number.
Oh never mind misty sorry I was dumb there lol.
Just cataloged 500 items and it worked :D
Thanks
How do I uninstall EP?
I've got something corrupt, and I need to start over.
I'm imagining that there is a DB entry that needs to be removed... but I don't see an uninstall script.
I think I had 2 different versions of EP running... trying to get the latest 1.2.5.5.csv to work...
thanks
Matt
Never mind... I was able to get it uninstalled... and for the record, I went back to Langers 1.2.5.4 ....
What did I do?
removed all reference in configuration_groups and configuration to "Easy Populate" removed all easypopulate*.php files in admin/ and reinstalled per 1.2.5.4 instructions.
Don't forget that I have an Easy Populate 1.2.5.4 tutorial at:
http://www.zen-cart.com/wiki/index.php/Easy_Populate
I am starting to see the light at the end of the tunnel. I am trying to upload about 24,000 inventory items. EP was originally giving me errors, but I quickly fixed that with a fresh install of EP. I guess I did something wrong to in the initial installation.
Now, under my Upload Results, I am getting the green NEW PRODUCT! - Model: 123456 (and so on)
However, when I go to Admin / Categories , it says "25,483 of 28608 Active" next to the Inventory Category (that is the category I directed the upload to). However, when I click on the category...nothing. Through the website, none of the part numbers are coming up in the search, either. Can anyone tell me what went wrong?
I forgot to give the website
www.elcomstore.com
The Inventory category is the first. It shows the 25,483 items next to it. But when you click it, you only get 3 pages of linked product. That was product numbers that were already in other categories. I am working to get all unique numbers, or drop the linked numbers from their original categories (so they end up in the Inventory category as unlinked).
Jim
-= Importing with some columns deleted =-
I thought that when I import previously exported and then edited file, where I deleted some columns (but NOT v_products_model neither EOREOR), everything will go fine. But it did not.
I noticed, that when I delete JUST the column named v_products_description_2 (I use just one language, added after installation, english then deleted), import makes all values in this description column BLANK. They are gone.
BUT: When I delete v_products_name_2 column TOO, everything goes OK, nothing (as I hope) deleted.
Does anybody know WHY? Or how to repair it?
Thanks for any suggestions.
Hello:
Have Zen-cart 1.3.8a (fresh install)
INstalled:
about me page
site backup
MySQL backup
confirm e-mail address
Contact us Subject
Ask a Question
PayPal verified
Quickbook Import QBI
Shipping, Privacy & Conditions Policies
Ultimate SEO
I have searched the site for an answer to this but only found another that asked the same question and it was not answered.
I have installed Easy-Populate 1.2.5.5. easy-populate did not show up under admin-tools but was in admin-configuration. Ran the install from the browser address bar. got message stating installed successfully and created file in temp folder. I can bring up the easy populate page by entering the admin/easypopulate.php in my browser bar but should there not be a heading or listing in admin-tools for easy populate also? If so, any ideas since there are not any error messages showing?
Thank You
Marketeria2008
Hello all, new to the Zen Cart world.
Using Zen Cart v1.3.8a
new install of Zen Cart
I am using Easy populate v 1.2.5.4 for doing inventory updates.
Searched within the forum for info, but did not get any hits during the searches.
Can manual run the Easy Populate updates with no problems. However, when running
http://Mysite domain/shop/admin/easypopulate.php?localfile=Output.txt
the update only goes to the Easy Populate page for updating. Is not reading the ?localfile input. Any ideas?
Hoping to go live in the next few days.
[FONT=Verdana]I didn't see the support thread for EP CSV, hope I'm not too far off. This is for Easy Populate 1.2.5.5.csv ZC 1.3.8a[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]Are there any known issues with downloading large csv files?[/FONT]
[FONT=Verdana]When I try to download, or create a copy in /temp, I get an HTTP 500 error on both the Complete & Model/Attributes CSV[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]It's been running great previously, never had a problem before. But I'm wondering if we hit some type of filesize limit for downloading the csv. We've been adding new items.[/FONT]
[FONT=Verdana]We have around 10,000 items in Zen Cart. [/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]The other download options, model/price/cat,etc work fine.[/FONT]
[FONT=Verdana]I just get the errors while trying to download the 'Complete' file, and also the 'Model/Attributes' file. [/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]Thoughts? (Thanks in advance).... [/FONT]
[FONT=Verdana][/FONT]
Have you tried a "test" on both formats, using just a couple of products so that the file size is tiny?
Create appropriate EP files with just 3 or 4 products, then test it.
I have been using easy populate with good results for a couple of weeks. There is just one issue I can't solve.
I want all my items to have an active status all the time and be able to checkout zero quantity items. When I use easy populate to update the quantities of items they often have zero quantity, but I still want them to appear.
I set the v_status to 1 for easy populate yet zero quantity items are disabled. What can I do?
This may work for you if I understand what you are trying to accomplish.
Try setting the quantity to 1 for everything and go to configuration/stock and change substract stock to "false". You would probably also want to set allow checkout to "true" as well as set the check stock level to "false". Everything will always be in stock until you actually disable it manually.
The one thing that may be causing your problem is if you are using the model-price-qty ep upload. There is no way that I know of to keep the status set to active for 0 quantity products that way. If you were to use the full ep upload, you could edit out the fields that you don't need (be careful there)and change the status column from 0 (inactive) to 1 (active) with a global edit on that column. The zencart does not care if the qty is set to 0 as long as the other 3 options that I mentioned earlier are set correctly and the status is set to active.
Ok I tried the full ep upload with every v_status at 1 and the items of 0 quantity were disabled. :dontgetit
I do need items to have a quantity of 0 to enable my "back in stock notification" module. So cannot use the first option.
Strange, I would have thought that uploading a v_status of 1 would enable the product? Not so. Any more ideas are welcome.
I also found that uploading the file with just the model, v_status and the end column has no effect also.
Is it possible change the v_status en masse in phpMyAdmin?
Sorry, three posts in a row!
Answer thanks to Bunyip on another thread:
From Admin > Tools > Install SQL Patches, run this sql query:
UPDATE products SET products_status = 1 WHERE products_id > 0;