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