Commit 55667740 authored by skummer's avatar skummer

ZP-275 #comment added php-flags block with directory directive for better understanding #time 10m

git-svn-id: https://z-push.org/svn/z-push/trunk@1509 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 08b4d39c
...@@ -101,7 +101,18 @@ Lastly, make sure that PHP has the following settings: ...@@ -101,7 +101,18 @@ Lastly, make sure that PHP has the following settings:
php_flag short_open_tag on php_flag short_open_tag on
You can set this in the httpd.conf, in php.ini or in an .htaccess file in You can set this in the httpd.conf, in php.ini or in an .htaccess file in
the root of z-push. If you don't set this up correctly, you will not be the root of z-push.
If you have several php applications on the same system, you could specify the
z-push directory so these settings are considered only there.
<Directory /usr/share/z-push>
php_flag magic_quotes_gpc off
php_flag register_globals off
php_flag magic_quotes_runtime off
php_flag short_open_tag on
</Directory>
If you don't set this up correctly, you will not be
able to login correctly via z-push. able to login correctly via z-push.
Please also set a memory_limit for php to 128M in php.ini. Please also set a memory_limit for php to 128M in php.ini.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment