I set both upload_max_filesize and post_max_size to 128M in my php.ini file, restarted MAMP but it did not work. In my phpinfo() it says that upload_max_filesize is set to 32M and so is post_max_size. Why would this be happening? I made sure that I'm editing the correct php.ini and restarting everything accordingly. Any help would be great. Thanks
If you're using MAMP Pro, you need to edit your php.ini file in the MAMP menu under File > Edit Template > PHP > PHP x.xx php.ini
The problem is that MAMP Pro dynamically generates the php.ini on every start and therefore overwrites your manually edited file.
Related
I am having a hard time with this.
I am trying to increase
post_max_size = 90M
upload_max_filesize = 50M
but my info.php is still showing default values 20M
I have tried many solutions available but no success.
One of those were: /questions/14327409/changes-to-upload-max-filesize-in-ubuntu-php-ini-will-not-take-effect
First answer seem to work for people but it would not work for me.
I created 30-user.ini file with these values but no luck.
(I checked correct path for config directory I double checked)
I am using ubuntu 16 server and php7.0
I restarted apache2 but not sure how to restart php, if thats required too.
Maybe putting those values into .htaccess file would help? but not sure how syntax should look like.
it might not be ideal solution, but as I could not get changes in php.ini file to work,
I added .htaccess file
php_value upload_max_filesize 100M
php_value post_max_size 105M
and it appear to be working now.
I still don't know why it would not work directly in php.ini file.
Not sure if you are using php 7.0 or php 7.0-fpm...
Using php-fpm, it is not enough to restart apache, you have to restart php-fpm.
For example, on an Ubuntu 20.04 server and php 7.4 fpm, i had to
/etc/init.d/php7.4-fpm restart
in order for my php.ini to get obeyed.
I am learning to use wordpress and I'm trying to adjust the php.ini file to adjust the configuration for the minimum server requirements of my template. I am running MAMP 4.4.1 and Wordpress 4.9.4 on MAC osx High Sierra.
I have a fresh install of both and would like to update the following:
memory_limit 96M
max_input_vars 3000
max_execution_time 120
post_max_size 32M
upload_max_filesize 32M
When I navigate to "http://localhost:8888/MAMP/index.php?language=English&page=phpinfo"
I see
Configuration File (php.ini) Path
/Applications/MAMP/bin/php/php7.2.1/conf
Loaded Configuration File
/Applications/MAMP/bin/php/php7.2.1/conf/php.ini
I run sudo nano /Applications/MAMP/bin/php/php7.2.1/conf/php.ini
and edit the attributes listed above and comment out opcache.
I then stop the server and start the server. When I view phpinfo again the values have not changed.
How can I change the php.ini?
Original answer: Where does MAMP keep its php.ini?
I'm not sure if in MAMP (non-PRO) is the same, but MAMP overrides the modified php.ini everytime it starts.
In my case, I needed to use the MAMP menu to change my php.ini file (File -> Edit Template -> PHP -> PHP 5.xx -> php.ini)
I have changed every last PHP.ini, *.ini related or unrelated on my server for setting post_max_size to 8000M but its not working.But atleast 50M will do my work.I am stuck here.
restarted server after changing every php.ini
httpd - k restart
even stopped server and start again.
but i cant see a small change in PHP.info
tried various tricks like
1) php_ini
2) .htaccess
3) .user.ini
but not getting desired result .Please help
I have dedicated server.With WHM and root access but still nothing working
CentOS release 6.8 (Final)
All the suggested answers make change in HTACESS or php.ini while i already changed on it. more than any time.
First create a phpinfo.php file within your web directory (ideally in the same folder where the scripts you are testing are saved) containing:
<?php
phpinfo();
Then access this file using a browser.
Right close to the top there is a line saying:
Loaded Configuration File /etc/php/some/path/php.ini
Edit the loaded php.ini file as follows:
; Maximum allowed size for uploaded files.
upload_max_filesize = 50M
; Must be greater than or equal to upload_max_filesize
post_max_size = 50M
Your question mentions only post_max_size, but if your form accepts files you need to change upload_max_filesize too.
After that you need to restart the web sever (apache?). If you are using php-fpm then you need to restart that process. I don't know about centOS, but for ubuntu commands can be:
sudo service apache2 restart
sudo service php-fpm restart
Reload the phpinfo file in your browser and check if both values have been updated.
I am using XAMPP on Mac and I am trying to locate my php.ini file and I ran the phpinfo() function and found the path to php.ini file and when I open it the post_max_size and upload_max_filesize have different values then phpinfo, I changed the values and restarted my server and the changes did not take effect. How do I find out where the php.ini file is?
in my phpinfo(); I see that my php.ini file is in /etc/php5/cgi, I've changed there upload_max_filesize to upload_max_filesize = 2000M, but in my phpinfo(); I see that the value stays 2M, and when I upload a file it tells my that I exceed the maximum upload_max_filesize limit, why is that? I've restarted apache but nothing changed, any clues?
ps: using php as fastcgi
/etc/php/cgi/php.ini configures only php running in cgi mode (like in lighttpd). you need to make changes on /etc/php/apache2/php.ini
For Fedora 20, you can find your environment php.ini files in
/usr/share/doc/php-common/php.ini-development
/usr/share/doc/php-common/php.ini-production
or just do
locate php.ini
Go on ahead and apply the above changes there.
You don't need to restart the server. Just do
sudo service httpd reload