• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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