• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.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