PHP Doku:: php.ini Einstellungen - ini.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchAppendicesphp.ini Einstellungen

Ein Service von Reinhard Neidl - Webprogrammierung.

Appendices

<<List of core configure options

Liste der php.ini-Direktiven>>


UnterSeiten:

php.ini Einstellungen

Inhaltsverzeichnis


5 BenutzerBeiträge:
- Beiträge aktualisieren...
Frappy
30.11.2006 4:13
You can use the ini_set() function to set a directive's  value in your scripts provided the "CHANGEABLE" attribute in the above chart is PHP_INI_USER or PHP_INI_ALL.
russell loosenut com
5.10.2006 10:40
In order for these settings to work in your htaccess file, you will need to add "Options" to your AllowOverride specifications for the directory/webserver if it's not already allowed.
chad 0x40 herballure 0x2e com
16.05.2006 19:30
PHP_INI_SYSTEM can be configured per-directory by placing it inside a per-directory block in httpd.conf.

    # Selectively enable APC for wildly popular directories
    # apc.enabled is Off in php.ini to reduce memory use
    <Directory /usr/local/apache2/htdocs/forum>
        php_flag apc.enabled On
    </Directory>
ensnared at gmail dot com
21.04.2006 19:14
In .htaccess, only true/false on/off flags can be set using php_flag. To set other values you need to use php_value, like this:

php_value upload_max_filesize 20M
RebootConcepts.com
31.03.2006 23:34
add settings to a .htaccess file with 'php_flag' like this:

php_flag register_globals off
php_flag magic_quotes_gpc on



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)