cant see web page

Discussion in 'Installation/Configuration' started by Compadre, Mar 15, 2007.

  1. Compadre

    Compadre New Member

    Hii, i can see my www.mydomain.com web page. All work fine(ftp,dns,mail) but i cant acces to the page. I dont why? because was working fine. I delete some old domains(practice domain) form dns recoder and sites , and before this, i cant see my www.mydomain.com :confused:
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Then you most likely deleted too much. Make sure that the website exists in ISPConfig with the correct IP address and if you use the ISPConfig DNS amanger, make sure that the DNS-Record for the domain exists too.
     
  3. Compadre

    Compadre New Member

    Hahaha, i only delete two domains. Yes it exits in ISPConfig, also the dns record exists.
     
  4. Compadre

    Compadre New Member

    i see all equal, i dont why i cant acces the page
     
  5. falko

    falko Super Moderator Howtoforge Staff

    What's the output of
    Code:
    netstat -tap
    and
    Code:
    ifconfig
    ? What's in your Vhosts_ispconfig.conf? What's the name of the web site that isn't working anymore?
     
  6. Compadre

    Compadre New Member

    netstat -tap
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    tcp 0 0 *:mysql *:* LISTEN 2308/mysqld
    tcp 0 0 *:sunrpc *:* LISTEN 1956/portmap
    tcp 0 0 *:hosts2-ns *:* LISTEN 2764/ispconfig_http
    tcp 0 0 thcpa.com:domain *:* LISTEN 3104/named
    tcp 0 0 localhost.localdomai:domain *:* LISTEN 3104/named
    tcp 0 0 localhost.localdomain:ipp *:* LISTEN 2181/cupsd
    tcp 0 0 *:iclcnet_svinfo *:* LISTEN 1977/rpc.statd
    tcp 0 0 *:smtp *:* LISTEN 14102/master
    tcp 0 0 localhost.localdomain:rndc *:* LISTEN 3104/named
    tcp 0 0 thcpa.com:37271 a72-247-127-51.deploy.:http ESTABLISHED 26613/firefox-bin
    tcp 0 0 thcpa.com:55691 kc-in-f104.google.com:http ESTABLISHED 26613/firefox-bin
    tcp 1 0 thcpa.com:48310 pegasus.iasi.roedu.net:http CLOSE_WAIT 2548/python
    tcp 0 0 thcpa.com:51619 a.tribalfusion.com:http TIME_WAIT -
    tcp 0 0 *:imaps *:* LISTEN 2338/dovecot
    tcp 0 0 *:pop3s *:* LISTEN 2338/dovecot
    tcp 0 0 *:pop3 *:* LISTEN 2338/dovecot
    tcp 0 0 *:imap *:* LISTEN 2338/dovecot
    tcp 0 0 *:http *:* LISTEN 2986/httpd
    tcp 0 0 *:ftp *:* LISTEN 14023/proftpd: (acc
    tcp 0 0 *:ssh *:* LISTEN 2195/sshd
    tcp 0 0 thcpa.com:ipp *:* LISTEN 2181/cupsd
    tcp 0 0 thcpa.com:rndc *:* LISTEN 3104/named
    tcp 0 0 *:https *:* LISTEN 2986/httpd

    The old domain name was thcpa.com(deleted), that also is the name of the server(in isp_config under service settings and also in hosts file:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 localhost.localdomain localhost tmserver.localdomain
    200.115.140.133 thcpa.com tmserver
    ::1 thcpa.com tmserver localhost.localdomain localhost)
    I dont now why, but now i can access to the webpages. is so wierd

    in Vhost config:
    ###################################
    #
    # ISPConfig vHost Configuration File
    # Version 1.0
    #
    ###################################
    #
    NameVirtualHost 200.115.140.133:80
    <VirtualHost 200.115.140.133:80>
    ServerName localhost
    ServerAdmin root@localhost
    DocumentRoot /var/www/sharedip
    </VirtualHost>
    #
    #
    ######################################
    # Vhost: www.tms.com.pa:80
    ######################################
    #
    #
    <VirtualHost 200.115.140.133:80>
    ServerName www.tms.com.pa:80
    ServerAdmin [email protected]
    DocumentRoot /var/www/web8/web
    ServerAlias tms.com.pa
    DirectoryIndex index.html index.htm index.php index.php5 index.php4 index.php3 index.shtml index.cgi index.pl index.jsp Default.htm default.htm
    ErrorLog /var/www/web8/log/error.log
    AddType application/x-httpd-php .php .php3 .php4 .php5
    <Files *.php>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php3>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php4>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php5>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    php_admin_flag safe_mode Off
    AddType application/vnd.wap.wmlscriptc .wmlsc .wsc
    AddType text/vnd.wap.wml .wml
    AddType text/vnd.wap.wmlscript .ws .wmlscript
    AddType image/vnd.wap.wbmp .wbmp
    Alias /error/ "/var/www/web8/web/error/"
    ErrorDocument 400 /error/invalidSyntax.html
    ErrorDocument 401 /error/authorizationRequired.html
    ErrorDocument 403 /error/forbidden.html
    ErrorDocument 404 /error/fileNotFound.html
    ErrorDocument 405 /error/methodNotAllowed.html
    ErrorDocument 500 /error/internalServerError.html
    ErrorDocument 503 /error/overloaded.html
     

Share This Page