Page 1 of 1

Apache Error

Posted: Fri Aug 27, 2004 10:30 pm
by genetix
I have only editted the config file lately in apache and all of a sudden its got this error. Anyone know how to fix it? I have included the only part I edit in my httpd.conf

Code: Select all

# WEB DUMMY DECLARATIONS
NameVirtualHost *:80
<VirtualHost *:80>
  ServerName www.webdummy.net
  DocumentRoot "C:/AppServ/www/webdummy/www"
</VirtualHost>

<VirtualHost *:80>
  ServerName webdummy.net
  DocumentRoot "C:/AppServ/www/webdummy/www"
</VirtualHost>

# GENERATION-X DECLARATIONS
<VirtualHost *:80>
  ServerName generation-x.uni.cc
  DocumentRoot "C:/AppServ/www/generation-x/www"
</VirtualHost>


# renegade DECLARATIONS
<VirtualHost *:80>
  ServerName renegade.webdummy.net
  DocumentRoot "C:/AppServ/www/renegade/"
</VirtualHost>

# IP DECLARATIONS
<VirtualHost *:80>
  ServerName 192.168.0.104
  DocumentRoot "C:/AppServ/www"
</VirtualHost>

<VirtualHost *:80>
  ServerName 24.72.3.251
  DocumentRoot "C:/AppServ/www"
</VirtualHost>


<Directory "C:/AppServ/www/webdummy/www/">
    Options All
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>



# ALLOWING LOCALHOST
<Directory />
    Options FollowSymLinks ExecCGI Indexes
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>



# BANNING ALL TRAFFIC.  ALLOUD SPECIFICALLY NEXT
<Directory "C:/AppServ/www">
    Options Indexes FollowSymLinks MultiViews ExecCGI
    AllowOverride All
    Order deny,allow
    Deny from all
</Directory>

<Directory "c:/AppServ/www">

# I removed all default comments for clarity
# This is the default folder when you'll go http://localhost

    Options Indexes FollowSymLinks MultiViews ExecCGI
    AllowOverride All
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1
</Directory>

# GIVING ACCESS TO USERS BROWSING SPECIFIC DOMAINS
<Directory "C:/AppServ/www/webdummy/www/">
    Options All
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

<Directory "C:/AppServ/www/PHPMyAdmin/">
    Options All
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

<Directory "C:/AppServ/www/generation-x/www/">
    Options All
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

<Directory "C:/AppServ/www/Renegade">
    Options All
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>


# BANNING ALL LOGS TO LOCALHOST
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all  
    Allow from 127.0.0.1
</Location>

# And

<Location /server-info>
    SetHandler server-info
    Order deny,allow
    Deny from all  
    Allow from 127.0.0.1
</Location>
Heres the error:


Image

Posted: Fri Aug 27, 2004 10:46 pm
by d3ad1ysp0rk
Double check that the file is where is says it is?

Posted: Sat Aug 28, 2004 6:47 pm
by genetix
the file is there. I haven't editted any files except that config file.

I do however have two computers on one monitor. often I switch back and sometimes when I do the computer write the letter 8. I couldn't find any trace of this being the problem though.

Posted: Sat Aug 28, 2004 6:56 pm
by feyd
it's possible php_iconv.dll wasn't able to load one of it's linked DLL's...

this is for PHP 4.3.8 ::
ADVAPI32.DLL
COMCTL32.DLL
COMDLG32.DLL
GDI32.DLL
ICONV.DLL
KERNEL32.DLL
MSVCRT.DLL
NTDLL.DLL
ODBC32.DLL
OLE32.DLL
OLEAUT32.DLL
PHP4TS.DLL
PHP_ICONV.DLL
RPCRT4.DLL
SHELL32.DLL
SHLWAPI.DLL
USER32.DLL
WS2HELP.DLL
WS2_32.DLL
WSOCK32.DLL

Posted: Wed Sep 01, 2004 8:24 am
by genetix
half those files aren't in there.

The odd thing is I haven't touched any of that. the only thing I have editted is httpd.conf and it was when I was trying to setup the virtual server for irc.webdummy.net

I'm the only person with access to this server so no one else could have came in and deleted them.

Posted: Sat Sep 04, 2004 10:30 am
by genetix
I got it fixed. I ended up copying the config files and my website stuff. I thne uninstalled appserv and reinstalled it.