Question
Where do I find the php.ini or .user.ini file for my domain?
Answer
User and php INI files are located in the users home folder.
If you have shell access, you can run the following, just replace $username with the actual username.
find /home/$username/ -name .user.ini
find /home/$username/ -name php.ini
Comments
0 comments
Article is closed for comments.