PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Thanks for looking. I am positve that there is no output prior to the session starting. I am not sure how to turn on error_reporting to E_ALL If it is on by default then it must still be on. I also don't know how to disable any types of messages so that to must be good. I don't know why this won't work. Thanks for your time.
first, look at the output of phpinfo() to see where your error_reporting setting is at (it should be at 2047 I believe).. at any rate you can check what's actually set by going into your php.ini. By default, I think most versions set E_ALL & ~E_NOTICE
While you are in there, check to see that display_errors is on/1.
session_register() should not be used at all costs, as you may know.
Did you change error_reporting and display_errors to the values I've said (E_ALL and On) respectively in your php.ini? (You should need to restart the web server process as well, depending on installation settings)
it seems strange that session_register() would work though.. hmmm....