Apache

XML, Perl, Python, and other languages can be discussed here, even if it isn't PHP (We might forgive you).

Moderator: General Moderators

Post Reply
MacDaddy
Forum Newbie
Posts: 12
Joined: Sun May 05, 2002 9:36 pm
Location: Atlanta, GA

Apache

Post 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 :)
User avatar
cwcollins
Forum Commoner
Posts: 79
Joined: Thu May 16, 2002 3:51 pm
Location: Milwaukee, WI, USA

Post 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.
User avatar
fatal
Forum Contributor
Posts: 118
Joined: Sat Apr 20, 2002 10:47 am
Location: East Coast

Post by fatal »

you might have luck using apache 1.3.24 instead
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post 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
MacDaddy
Forum Newbie
Posts: 12
Joined: Sun May 05, 2002 9:36 pm
Location: Atlanta, GA

Post 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?
MacDaddy
Forum Newbie
Posts: 12
Joined: Sun May 05, 2002 9:36 pm
Location: Atlanta, GA

Post 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
User avatar
fatal
Forum Contributor
Posts: 118
Joined: Sat Apr 20, 2002 10:47 am
Location: East Coast

Post by fatal »

make sure all the paths to the dlls are correct. Remember the apache folder is root.
Yaa 101
Forum Newbie
Posts: 6
Joined: Fri May 10, 2002 9:22 pm

Post 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
Post Reply