Bagong21
Bagong21

Reputation: 497

If I use a shared hosting, can I really set all value on my php.ini file in the runtime?

Something like:

ini_set("display_errors", 1);

Upvotes: 0

Views: 65

Answers (2)

alex
alex

Reputation: 490143

You can set some of them, others can not be set for security reasons, such as allow_url_fopen.

Upvotes: 0

simon
simon

Reputation: 16280

Here is the list of all the php.ini directives, and where they can be changed from:

http://php.net/manual/en/ini.list.php

Upvotes: 4

Related Questions