I tried a clean install, without deleting the db tables, and it did not work. After I diid that I received a reply from my host service and upon looking at the php.ini I found the following related to the glob function:
- register_globals = Off [Security, Performance]
; Global variables are no longer registered for input data (POST, GET, cookies,
; environment and other server variables). Instead of using $foo, you must use
; you can use $_REQUEST["foo"] (includes any variable that arrives through the
; request, namely, POST, GET and cookie variables), or use one of the specific
; $_GET["foo"], $_POST["foo"], $_COOKIE["foo"] or $_FILES["foo"], depending
; on where the input originates. Also, you can look at the
; import_request_variables() function.
; Note that register_globals is going to be depracated (i.e., turned off by
; default) in the next version of PHP, because it often leads to security bugs.
; Read http://php.net/manual/en/security.registerglobals.php for further
; information.
It appears that they have disabled the glob_function. I suppose I can enable it by changing the "OFF" to "ON"? If so, this brings up the security issues they are referring to. I can use PHP 5, however, I do not know if this will have any effect on other applications I use that require php. What do you advise?