• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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