Forum Moderators: phranque

Message Too Old, No Replies

Now have 2.2.4 running, .sort of

but have to restart to get index.htm to show

         

Ckdv

3:45 am on Sep 30, 2007 (gmt 0)

10+ Year Member



I did go ahead and install with apache_2.2.4-win32-x86-no_ssl.msi. Maybe with the help of folks here in this Forum I can eventually get SSL set up. What I really don't understand is why the Home page doesn't come up unless I restart the Server!

Nearly midnight here, I'll check first thing in the morning, I'll follow any/all suggestions.

vincevincevince

3:57 am on Sep 30, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



First, you've installed the no_ssl package...

Second, it sounds like your server isn't starting as a service; you need to add or enable a system service for Apache so that it starts following boot.

Ckdv

2:31 pm on Sep 30, 2007 (gmt 0)

10+ Year Member



It is installed as a Service, and it shows as started in the Services window, and in the Apache monitor. If I only Open IE to the page, I get "Cannot be Displayed", restart the Server, then the page comes up, can be Refreshed, hit "Go" it comes back. but if I close the window and try it in a new window, "Cannot be displayed"

Ckdv

5:01 pm on Sep 30, 2007 (gmt 0)

10+ Year Member



I thought about it this morning, I didn't restart this machine after I installed 2.2.4, after the reboot, Both 1.3.3 and 2.2.4 Started up and were running. My Home page Login came up,(from the 1.3.3) in a Browser and I was able to login as always. I then went to the 1.3.3 in Services, stopped it and changed it to "Manual" rather than "Automatic".

Perhaps this will help...

httpd.conf file.

ThreadsPerChild 250
MaxRequestsPerChild 50

ServerRoot "C:/Program Files/Apache Group"

Listen 72.146.147.166:80

LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule imagemap_module modules/mod_imagemap.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule status_module modules/mod_status.so
LoadModule userdir_module modules/mod_userdir.so
#LoadModule ssl_module modules/mod_ssl.so

ServerAdmin myusernm@bellsouth.net

ServerName www.mysite.no-ip.org:80

DocumentRoot "C:/Program Files/Apache Group/htdocs/"

<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
</Directory>

<Directory "C:/Program Files/Apache Group/htdocs/">

Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all

</Directory>

<IfModule dir_module>
DirectoryIndex index.html
</IfModule>

<FilesMatch "^\.ht">
Order allow,deny
Deny from all
</FilesMatch>

ErrorLog logs/error.log

LogLevel warn

<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common

<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>

CustomLog logs/access.log common
</IfModule>

<IfModule alias_module>
ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/cgi-bin/"
</IfModule>

<Directory "C:/Program Files/Apache Group/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

#!c:/program files/perl/perl

ScriptInterpreterSource registry

DefaultType text/plain

<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType text/html .shtml
</IfModule>
MIMEMagicFile conf/magic

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

Because of this Last Section I tried Uncommenting the "LoadModule ssl_module modules/mod_ssl.so" and the Server Failed to start, with it commented out it did Start, but with same result, "Page Cannot Be Displayed". Closed IE, Restarted 2.2.4, Opened IE, went to My Site, the Home Page came up.

g1smd

5:44 pm on Sep 30, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Apache can sometimes have probems with folder names with spaces in them such as "Program Files" or My Documents" for example.

Ckdv

6:15 pm on Sep 30, 2007 (gmt 0)

10+ Year Member



1.3.3 never complained, this is from it's httpd.conf

ServerRoot "C:/Program Files/Apache Group/Apache"

I would think 2.2.4 would be better equipped in all accounts.