Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Show errors??
  • How do you show errors? I can't get my myql statements to work but it will process other functions to the script. Firebug doesn't report back anything and I can't echo out anything either. How do you get this to show why it's not working or what errors are being thrown in the PHP file?
  • it's a pain, I know. I wrote stuff to files in the upload script and then debugged from there
  • You can modify your .htaccess file to create an error log on PHP errors


    # supress php errors
    php_flag display_startup_errors off
    php_flag display_errors off
    php_flag html_errors off

    # enable PHP error logging
    php_flag log_errors on
    php_value error_log /home/[path]/public_html/[domain]/PHP_errors.log


    replace [path] and [domain] appropriately
  • The user and all related content has been deleted.