I have changed all the php.ini parameters I know: upload_max_filesize, post_max_size.

Why am I still seeing 2MB?

Im using Zend Server CE, on a Ubuntu VirtualBox over Windows 7 host.

link|improve this question

77% accept rate
1  
Impossible to answer. Changed where? "seeing" where? Are you sure you are modifying the php.ini in the path shown in phpinfo()? (That's the most common mistake) – Pekka Oct 18 '10 at 11:26
I have changed the settings direct via ZendServer - and even via the linux shell (using sudo vi php.ini...) - when you create a database and then you want to import some data into it, the limit for the file size is displaying 2MB. – Ronaldo Junior Oct 18 '10 at 21:23
feedback

2 Answers

up vote 3 down vote accepted

You probably didn't restart your server ;)

Or you modified the wrong php.ini.

Or you actually managed to do both ^^

link|improve this answer
Hehe - I checked php.ini in use via and I restarted the server. I changed the settings via Zend Server - checked the phpinfo again, and the changes are there - but no effect on the phpMyAdmin form - when trying to import data/structure with a SQL file, I'm still limited by the 2MB. – Ronaldo Junior Oct 18 '10 at 21:24
Well that's odd then... – NikiC Oct 18 '10 at 21:45
Maybe something with my environment? But I wonder how many developers do the same - using a linux distribution on a virtual machine as a local web server, for development. I guess a lot out there... – Ronaldo Junior Oct 18 '10 at 23:00
i had the same problem, i use XAMPP under Windows, the php info displays upload_max_filesize=128M, but in phpMyAdmin still display 8,192KB , whats wrong ¬¬ – iim.hlk May 24 '11 at 0:17
I just updated both 'post-max-size' and 'upload_max_filesize' to 128MB and after restarting apache, phpmyadmin would accept a 128MB file. (Using wamp in win xp). – Matt Connolly Dec 21 '11 at 11:16
feedback

I found the problem and am post hete if anyone followed some blog post out there to create the sort of enviromment I have (win 7 host with ubuntu and zend server ce on virtual box).

The thing is that MySQL is running on Lighttpd, not under Apache. So I had to change the php.ini file under that webserver as well which is in the path:

/usr/local/zend/gui/lighttpd/etc/php-fcgi.ini

In the end, you were right about the files, of course, but I was wrong on what file I had to change :)

link|improve this answer
uuh, that's nasty. Glad I have only Lighty installed and nothing more. That way I can't mix anything up ^^ – NikiC Oct 20 '10 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.