• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Plesk 8.2 and php.ini file location?

T

tooljob

Guest
Im trying to install Zend Optimizer, which I did. But when I do a phpinfo() it still shows up as being not loaded. I know there are multiple php.ini files on the system. Which is the correct one that I need to edit in order to load this Zend Optimizer?

Thanks


TJ
 
We got Fedora 7

there is a /etc/php.ini, but it only has like 6 lines in it and not what I am accustomed to other php.ini files Im guessing the working php.ini is located in some other spot?

TJ
 
Run this from SSH

php -i 'phpinfo();' | grep 'Configuration File'

That will tell you where the php.ini file is.

A lot of times if you have Zend installed your config file is located at
/usr/local/Zend/etc/php.ini

And if you do a php upgrade, asl fix, psa/plesk update it will over write your symbolic link with a small amount of lines.

You can fix that by doing this:
cd /etc
rm -Rf php.ini
ln -s /usr/local/Zend/etc/php.ini php.ini


then do
php -v

and make sure php works, and you can redo the SSH line from above to make sure the ini file works. All of those steps are making assumptions that your files are int he same places, change the locations to suit your needs if they are some where else.
 
Back
Top