View Single Post
  #7  
Old 05-10-2007, 02:54 PM
Rodney-E2 Rodney-E2 is offline
Member
 
Join Date: May 2007
Posts: 25
line 65 is the Unable to locate httpd.conf

Code:
sub find_httpconf {   
    my ( @LOC, $loc );             
    if ( -e '/var/cpanel/apache2' ) {
        @LOC = ( '/usr/local/apache2/conf/httpd.conf', '/etc/httpd/conf/httpd.conf', '/usr/local/etc/apache2/apache.conf' );
    }              
    else {
        @LOC = ( '/usr/local/apache/conf/httpd.conf', '/etc/httpd/conf/httpd.conf', '/usr/local/etc/apache/apache.conf' );
    }
    foreach $loc (@LOC) {
        if ( -e $loc ) { return $loc; }
    }
    die 'Unable to locate httpd.conf';
    return '';   
}
Also, we are running litespeed just fine on http://w10.eleven2.com and you will see that default page works fine, the stats work fine on this server, and so does cPanel.

However on http://w2.eleven2.com cPanel is not working, stats are not working, nor is the default hostname page.
Reply With Quote