Tag: apache
-
client denied by server configuration: owncloud and directadmin
If got error with owncloud when using owncloud application (custombuild managed structure): [Mon Mar 24 19:42:39.379283 2014] [access_compat:error] [pid 525512] [client 86.100.237.21:55665] AH01797: client denied by server configuration: /home/admin/domains/domain.tld/ private_html/owncloud/remote.php Solution is to enable PUT requests.
-
[warn] [client 123.123.123.123] mod_fcgid: stderr: PHP Warning: POST Content-Length of 12430806 bytes exceeds the limit of 10485760 bytes in Unknown on line 0, referer: http://www.yoursite.tld/index.php?phpparams
You can get this error if You are uploading file via post parameters, and it’s bigger than allowed size. [warn] [client 123.123.123.123] mod_fcgid: stderr: PHP Warning: POST Content-Length of 12430806 bytes exceeds the limit of 10485760 bytes in Unknown on line 0, referer: http://www.yoursite.tld/index.php?phpparams In php.ini file You should set bigger limits. post_max_size = 32M…
-
apache [warn] module ssl_module is already loaded, skipping (Solved)
# httpd -t [Fri Jun 08 11:12:19 2012] [warn] module ssl_module is already loaded, skipping Syntax OK This happens, because ssl module is enabled in more than 1 place: # grep ssl_module -rI /etc/httpd/* conf/httpd.conf:LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so conf.d/ssl.conf:LoadModule ssl_module modules/mod_ssl.so we load all needed modules in one place – /etc/httpd/conf/httpd.conf. So we can safely comment…