• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

need to adjust php.ini with end-user account

W

Wim Van Roy

Guest
Hello,

I need to adjust the php.ini file to install Joomla... I'm a end user and I don't have SSH java application in Plesk... How could I adjust the php.ini file?

Greetz,

Wim
 
The best place to start would be to use the .htaccess functionality if your host has that enabled.

If you need register_globals to be on, for example, try putting this into a file called .htaccess into the root directory where you need it, (e.g. httpdocs);

For apache 2.0:

Code:
php_flag register_globals on

For apache 2.2:

Code:
<Directory /var/www/vhosts/domain.co.uk/httpdocs>
php_flag register_globals on
</Directory>

More information can be found here for PHP;
http://uk2.php.net/manual/en/configuration.changes.php#configuration.changes.apache

and here for Apache htaccess files;
http://httpd.apache.org/docs/2.2/howto/htaccess.html
http://httpd.apache.org/docs/2.0/howto/htaccess.html
 
Back
Top