Discussion about CustomBuild

It helped because you had custom templates in /usr/local/directadmin/data/templates/custom folder.
 
root@server [~]# tail /var/log/httpd/error_log
[Thu Sep 25 01:10:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/whm-server-status
[Thu Sep 25 01:10:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/404.shtml
[Thu Sep 25 01:15:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/whm-server-status
[Thu Sep 25 01:15:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/404.shtml
[Thu Sep 25 01:20:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/whm-server-status
[Thu Sep 25 01:20:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/404.shtml
[Thu Sep 25 01:25:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/whm-server-status
[Thu Sep 25 01:25:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/404.shtml
[Thu Sep 25 01:30:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/whm-server-status
[Thu Sep 25 01:30:01 2008] [error] [client 127.0.0.1] File does not exist: /var/www/html/404.shtml
 
Check your .htaccess files, ensure there are no php_flags in them. Ensure proper permissions on php files:

They must be owned by the user and not anyone else (both user and group), must only be writable by that user.

chmod 644 *.php

check the domain error log in /var/log/httpd/domains/ for further errors.
 
don't us .htaccess
permissions , owned are corect

after it dose , all of site in my server ,get 500 Internal Server Error
 
Followup for irwhost, the custom virtual_host2 templates had the suPHP_UserGroup #commented out, thus the error. Quick fix for you. Be careful when making customizations to the templates ;)

John
 
Hello, I used Custombulid to update Squirrelmail to 1.4.15 and now I get: Error opening ../data/default_pref
Default preference file not found or not readable!
Please contact your system administrator and report this error.

Please advice.
 
PHP as CGI? Run:
Code:
chown -R webapps:webapps /var/www/html

I did that but it didnt help and yes I run PHP as CGI / suPHP.

I had to update using :
cd /usr/local/directadmin/scripts
./squirrelmail.sh

And now I can log in but I can't read my mail. There is mail in the inbox , I can se the subjects but I can't read the mail.
 
thanks for your reply, like always.. but.. where i can find now awstats in directadmin?

Cause if i go to summary/statistics i still see webalizer
 
You must wait for tally process to begin :) Or run it manually:
Code:
echo "action=tally&value=all" >> /usr/local/directadmin/data/task.queue
/usr/local/directadmin/dataskq d
 
Back
Top