Support » Knowledge Base » General questions » Tips for scripts owners »
Elimination of some technical issues may require modification of the PHP configuration. It can be achieved in two ways as described below:
php_flag PARAMETER_NAME PARAMETER_VALUE
Example:
php_flag display_errors 1
Examples of parameters which can be overridden using this syntax: display_errors, short_open_tags, log_errors.
php_value PARAMETER_NAME PARAMETER_VALUE
Example:
php_value memory_limit 64M
Examples of parameters which can be overridden using this syntax: memory_limit, post_max_size, max_execution_time.
Note: Overriding PHP configuration using .htaccess files may be restricted on your server. Such files are not processed by web server IIS, and Apache if PHP is used as a CGI. To change PHP parameters on such servers either edit file php.ini (if you have such privileges) or apply to your system administrator for assistance.