Apache Error

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
User avatar
genetix
Forum Contributor
Posts: 115
Joined: Fri Aug 01, 2003 7:40 pm
Location: Sask, Regina
Contact:

Apache Error

Post 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
d3ad1ysp0rk
Forum Donator
Posts: 1661
Joined: Mon Oct 20, 2003 8:31 pm
Location: Maine, USA

Post by d3ad1ysp0rk »

Double check that the file is where is says it is?
User avatar
genetix
Forum Contributor
Posts: 115
Joined: Fri Aug 01, 2003 7:40 pm
Location: Sask, Regina
Contact:

Post 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.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post 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
User avatar
genetix
Forum Contributor
Posts: 115
Joined: Fri Aug 01, 2003 7:40 pm
Location: Sask, Regina
Contact:

Post 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.
User avatar
genetix
Forum Contributor
Posts: 115
Joined: Fri Aug 01, 2003 7:40 pm
Location: Sask, Regina
Contact:

Post by genetix »

I got it fixed. I ended up copying the config files and my website stuff. I thne uninstalled appserv and reinstalled it.
Post Reply