ispCP - Board - Support
mail from www-data? - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: mail from www-data? (/thread-1720.html)

Pages: 1 2 3 4


RE: mail from www-data? - achioo - 11-07-2007 05:21 AM

[Tue Nov 06 14:08:20 2007] [error] [client 76.235.88.96] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Tue Nov 06 14:08:20 2007] [error] [client 76.235.88.96] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Tue Nov 06 14:12:01 2007] [error] [client 76.235.88.96] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Tue Nov 06 14:12:01 2007] [error] [client 76.235.88.96] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Tue Nov 06 14:14:56 2007] [error] [client 76.235.88.96] (13)Permission denied: access to /php5/php5-fcgi-starter/index.php denied
[Tue Nov 06 14:14:59 2007] [error] [client 76.235.88.96] (13)Permission denied: access to /php5/php5-fcgi-starter/index.php denied
[Tue Nov 06 14:16:19 2007] [error] [client 76.235.88.96] (13)Permission denied: access to /php5/php5-fcgi-starter/index.php denied
[Tue Nov 06 14:16:27 2007] [error] [client 76.235.88.96] (13)Permission denied: access to /php5/php5-fcgi-starter/index.php denied
[Tue Nov 06 14:21:26 2007] [error] [client 76.235.88.96] (13)Permission denied: access to /php5/php5-fcgi-starter/index.php denied


RE: mail from www-data? - scoutsniper - 11-07-2007 05:51 AM

I think u need to put fresh image and install ispcp newly "step by step" Because i think other packages mising too...


RE: mail from www-data? - joximu - 11-07-2007 06:23 AM

@achioo

can you post your /etc/apache2/mods-enabled/fastcgi_ispcp.*
and /etc/apache2/sites-enabled/00_master.conf


RE: mail from www-data? - achioo - 11-07-2007 07:25 AM

Code:
fastcgi.conf

# ISPCP ω (OMEGA) - Virtual Hosting Control System | Omega Version
# Copyright (c) 2006-2007 by ispCP | http://isp-control.net
#
#
# License:
#    This program is free software; you can redistribute it and/or
#    modify it under the terms of the GPL General Public License
#    as published by the Free Software Foundation; either version 2.0
#    of the License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GPL General Public License for more details.
#
#    You may have received a copy of the GPL General Public License
#    along with this program.
#
#    An on-line copy of the GPL General Public License can be found
#    http://www.fsf.org/licensing/licenses/gpl.txt
#
########################################################################
#
# @TODO :
# - Finish PHP5 Support
# - Finish config Fastcgi

<IfModule mod_fastcgi.c>
FastCgiWrapper On
FastCgiIpcDir /var/lib/apache2/fastcgi2
FastCgiConfig -minProcesses 1 -maxProcesses 10 -singleThreshold 100
              #-killInterval 300 \
              #-autoUpdate \
              #-idle-timeout 240 \
              #-pass-header HTTP_AUTHORIZATION

FastCgiServer /var/www/fcgi/master/php5-fcgi-starter -user vu2000 -group vu2000

#
# PHP4 SUPPORT
#

AddHandler php4-fastcgi .php4

<Location /php4/php4-fcgi-starter>
    SetHandler fastcgi-script
    Options +ExecCGI
</Location>

Action php-fastcgi /php4/php4-fcgi-starter
AddType application/x-httpd-php .php

#
# PHP5 SUPPORT
#

AddHandler php5-fastcgi .php

<Location /php5/php5-fcgi-starter>
    SetHandler fastcgi-script
    Options +ExecCGI
</Location>

Action php5-fastcgi /php5/php5-fcgi-starter
</IfModule>

Code:
00_master.conf

#
# Master Begin
#

<VirtualHost ip.addr:80>

    ServerAdmin     webmaster@domain.com
    DocumentRoot    /var/www/ispcp/gui

    ServerName      domain.com

    ErrorLog        /var/log/apache2/users/domain.com-error.log
    TransferLog     /var/log/apache2/users/domain.com-access.log

    CustomLog       /var/log/apache2/domain.com-traf.log traff
    CustomLog       /var/log/apache2/domain.com-combined.log combined

    Alias /errors   /var/www/ispcp/gui/errordocs/

    ErrorDocument 401 /errors/index.php
    ErrorDocument 403 /errors/index.php
    ErrorDocument 404 /errors/index.php
    ErrorDocument 500 /errors/index.php

    Alias /pma      /var/www/ispcp/gui/tools/pma/
    Alias /webmail  /var/www/ispcp/gui/tools/webmail/
    Alias /ftp      /var/www/ispcp/gui/tools/filemanager/

    <IfModule mod_fastcgi.c>
           SuexecUserGroup vu2000 vu2000
    </IfModule>

    <Directory /var/www/ispcp/gui>
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

    <IfModule mod_fastcgi.c>
        ScriptAlias /php5/ /var/www/fcgi/master/
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>

    <IfModule mod_php4.c>
        <Directory /var/www/ispcp/gui>
            php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/proc/:/var/www/virtual/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
            php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
        </Directory>
    </IfModule>

</VirtualHost>

#
# Master End
#



RE: mail from www-data? - BeNe - 11-07-2007 07:38 AM

What i can read here in your Post
Code:
# @TODO :
# - Finish PHP5 Support

You run a old Version of ispCP...

My file is up-to-date looks like this:

Code:
# ISPCP Ï~I (OMEGA) a Virtual Hosting Control System
# Copyright (c) 2006-2007 by ispCP | http://isp-control.net
#
#
# License:
#    This program is free software; you can redistribute it and/or
#    modify it under the terms of the GPL General Public License
#    as published by the Free Software Foundation; either version 2.0
#    of the License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GPL General Public License for more details.
#
#    You may have received a copy of the GPL General Public License
#    along with this program.
#
#    An on-line copy of the GPL General Public License can be found
#    http://www.fsf.org/licensing/licenses/gpl.txt
#
########################################################################
#
# @TODO :
# - Finish config Fastcgi

<IfModule mod_fastcgi.c>
        FastCgiWrapper On
        FastCgiIpcDir /var/lib/apache2/fastcgi2
        FastCgiConfig -minProcesses 1 -maxProcesses 10 -singleThreshold 100
                      #-killInterval 300 \
                      #-autoUpdate \
                      #-idle-timeout 240 \
                      #-pass-header HTTP_AUTHORIZATION

        FastCgiServer /var/www/fcgi/master/php5-fcgi-starter -user vu2000 -group vu2000

        #
        # PHP5 SUPPORT
        #

        AddHandler php-fastcgi .php .php5

        <Location /php5/php5-fcgi-starter>
            SetHandler fastcgi-script
            Options +ExecCGI
        </Location>

        Action php-fastcgi /php5/php5-fcgi-starter
        AddType application/x-httpd-php .php .php5
</IfModule>

So i can´t really support here you Sad

Greez BeNe


RE: mail from www-data? - joximu - 11-07-2007 10:37 AM

and the part in 00_master.conf:

Code:
Alias /pma      /var/www/ispcp/gui/tools/pma/
    Alias /webmail  /var/www/ispcp/gui/tools/webmail/
    Alias /ftp      /var/www/ispcp/gui/tools/filemanager/

    SuexecUserGroup vu2000 vu2000

    <Directory /var/www/ispcp/gui>
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

    <IfModule mod_fastcgi.c>
        ScriptAlias /php4/ /var/www/fcgi/master/
        ScriptAlias /php5/ /var/www/fcgi/master/
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>

/J


RE: mail from www-data? - achioo - 11-07-2007 10:49 AM

is there a guide for upgrading from RC2 to svn?


RE: mail from www-data? - joximu - 11-07-2007 06:13 PM

No.

Hopefully the updatescript (from VHCS2 to ispcp) will soon be finished then it also has an update function from RC2 to RC3 - it should be included in RC3...

/J


RE: mail from www-data? - achioo - 11-08-2007 11:30 AM

Ok I've fixed the permissions error but this is what happens when it tries to load the master...
Code:
[Wed Nov 07 20:24:17 2007] [error] [client ip.addr] FastCGI: comm with server "/var/www/fcgi/master/php5-fcgi-starter" aborted: idle timeout (30 sec)
[Wed Nov 07 20:24:17 2007] [error] [client ip.addr] FastCGI: incomplete headers (0 bytes) received from server "/var/www/fcgi/master/php5-fcgi-starter"



RE: mail from www-data? - gOOvER - 11-08-2007 08:43 PM

joximu Wrote:No.

Hopefully the updatescript (from VHCS2 to ispcp) will soon be finished then it also has an update function from RC2 to RC3 - it should be included in RC3...

/J

With Updatescript will be an update possible, from RC2 to RC3? Is this right?