PDA

View Full Version : Custom php.ini?


greg
12-08-2005, 04:28 PM
I am setting up a website based on the Joomla! CMS and am running into some issues that appear to be generated by the PHP configuration that is set for shared aacounts.

Can I run a different PHP configuration via a custom php.ini I place in my webroot? If so can I get a copy of the php.ini file currently running to base a custom one from?

--Greg Bilke[/quote]

jondale
12-16-2005, 02:32 PM
I've not tried this here but usually the way this is handled is by adding code to your php files such as the following:

<?php
ini_set('error_reporting', E_ALL);
?>