How do I create my own php.ini file?

PHP options can be enabled/disabled within the php.ini file on your web site. You or your web developer may prefer to upload their own php.ini file. Here is how to do that:

Simply upload a text version of your php.ini file to the home directory of your web site. The home directory of your web site is /home/username/public_html .

Note: With the php.ini file within the root directory, the PHP options you have enabled will be effective for your entire hosting account.
  • 0 Utenti hanno trovato utile questa risposta
Hai trovato utile questa risposta?

Articoli Correlati

Is register_globals on or off in PHP?

We keep register_globals off for security reasons. Since PHP 4.2 register_globals has been off by...

Using PHP includes

The following is the correct format for using PHP includes: include('/path/to/file/include.php');

How do I view the PHP setting information?

1) Create a file named "phpinfo.php" which contains the below text:<? phpinfo(); ?> 2)...