Here's some more information for you:
The following are the contents of my php.ini file that I am running through apache. The problem is when i load my website www.tomhearn.com, I receive no actual php errors in my logfile, or on the page itself. However, the links anywhere on the page, as well as the cookies, won't work:
engine=On
short_open_tag=Off
asp_tags=Off
precision=10
y2k_compliance=Off
output_buffering=Off
output_handler=
unserialize_callback_func=
zlib.output_compression=Off
implicit_flush=Off
allow_call_time_pass_reference=On
safe_mode=Off
safe_mode_gid=Off
safe_mode_include_dir=
safe_mode_exec_dir=
safe_mode_allowed_env_vars=PHP_
safe_mode_protected_env_vars=LD_LIBRARY_PATH
disable_functions=
highlight.string=#CC0000
highlight.comment=#FF9900
highlight.keyword=#006600
highlight.bg=#FFFFFF
highlight.default=#0000CC
highlight.html=#000000
expose_php=On
max_execution_time=60 ; Maximum execution time of each script, in seconds
memory_limit=8M ; Maximum amount of memory a script may consume (8MB)
; E_ALL - All errors and warnings
; E_ERROR - fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
; from a bug in your code, but it's possible that it was
; intentional (e.g., using an uninitialized variable and
; relying on the fact it's automatically initialized to an
; empty string)
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
; initial startup
; E_COMPILE_ERROR - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR - user-generated error message
; E_USER_WARNING - user-generated warning message
; E_USER_NOTICE - user-generated notice message
error_reporting= E_WARNING | E_ERROR; display all errors, warnings and notices
display_errors=On
display_startup_errors=On
log_errors=On
track_errors=Off
error_log="C:\Apache\logs\php.log"
warn_plus_overloading=Off
variables_order="EGPCS"
register_globals=Off
register_argc_argv=On
post_max_size=8M
gpc_order="GPC"
magic_quotes_gpc=On
magic_quotes_runtime=Off
magic_quotes_sybase=Off
auto_prepend_file=
auto_append_file=
default_mimetype="text/html"
;include_path="c:\Apache\htdocs"
;doc_root="c:\Apache\htdocs"
;user_dir="c:\Apache\users"
;extension_dir=
enable_dl=On
file_uploads=On
upload_tmp_dir=C:\Apache\modules\php\uploadtemp ; temporary directory for HTTP uploaded files (will use system default if not specified)
upload_max_filesize=2M
allow_url_fopen=On
[Syslog]
define_syslog_variables=Off
[mail function]
SMTP=localhost ; for Win32 only
sendmail_from=me@localhost.com ; for Win32 only
[SQL]
sql.safe_mode=Off
odbc.allow_persistent=On
odbc.check_persistent=On
odbc.max_persistent=-1
odbc.max_links=-1
odbc.defaultlrl=4096
odbc.defaultbinmode=1
[MySQL]
mysql.allow_persistent=On
mysql.max_persistent=-1
mysql.max_links=-1
mysql.default_port=
mysql.default_socket=
mysql.default_host=
mysql.default_user=
mysql.default_password=
[Session]
session.save_handler=files
session.save_path= C:\Apache\modules\php\sessiondata ; argument passed to save_handler
session.use_cookies=1
session.name=PHPSESSID
session.auto_start=0
session.cookie_lifetime=0
session.cookie_path=/
session.cookie_domain=
session.serialize_handler=php
session.gc_probability=1
session.gc_maxlifetime=1440
session.referer_check=
session.entropy_length=0
session.entropy_file=
session.cache_limiter=nocache
session.cache_expire=180
session.use_trans_sid=1
url_rewriter.tags="a=href,area=href,frame=src,input=src,form=fakeentry"