Page 1 of 1
Apache
Posted: Sun May 19, 2002 9:27 am
by MacDaddy
Hey everyone...
I was messing around with apache last night, and must have screwed somthing up :-p
I've tried re-installing and un-installing, but it doesn't fix it.
The problem that I'm haveing is that apache doesn't show up under services
Any suggestions
Info:
OS: win2k prof.
apache v. 2.0.36
Thanks in advance

Posted: Mon May 20, 2002 11:23 am
by cwcollins
check out
http://marc.theaimsgroup.com/?l=apache-httpd-users . They usually have a lot of helpful stuff. though it may take a while to find what you're looking for.
Posted: Mon May 20, 2002 12:32 pm
by fatal
you might have luck using apache 1.3.24 instead
Posted: Fri May 24, 2002 8:21 pm
by volka
if un-/re-install meant, that you un-/reinstalled the whole distribution, try
apache -i -n "Apache2"
to re-register the service
and take a look in
here
Posted: Sat May 25, 2002 8:42 pm
by MacDaddy
volka-
I like the idea...but my computer doesn't recognize "apache" as a command...hell...dos doesn't recognize anything...I can't even run the demo of GTA3 because it doesn't register commands correctly
any ideas?
Posted: Sat May 25, 2002 8:46 pm
by MacDaddy
[update]
I finally got it to install 1.3.24....although I still don't know what the problem was....but now...i'm having problems getting PHP to work
Posted: Sat May 25, 2002 11:46 pm
by fatal
make sure all the paths to the dlls are correct. Remember the apache folder is root.
Posted: Mon May 27, 2002 8:11 am
by Yaa 101
Prob this is your problem:
Not able to login into your current php apps...
Since php 4.1.0. they changed the way global variables work and put the old global vars in a off state, we are in a period where old and new written apps exists...
in php.ini find the following section and set the setting in a on state to enable old global vars so that most progs work:
; Whether or not to register the EGPCS variables as global variables. You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data. This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on; Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
register_globals = On