• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

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