drb05 Posted March 3, 2006 Share Posted March 3, 2006 I have no clue in php or mysql. Just tinker with 'free' softwares that makes my life interesting and learning.I am trying to use this software:[a href=\"http://stanxterm.aecom.yu.edu/secondary/stocks/index.php\" target=\"_blank\"]http://stanxterm.aecom.yu.edu/secondary/stocks/index.php[/a]Which uses [a href=\"http://www.dadabik.org\" target=\"_blank\"]http://www.dadabik.org[/a]I installed. Everything looks fine. But when I go to admin.php, my pages are blank-white. With the following errors:Notice: Undefined variable: head_extra in ./header.php on line 110Laboratory of so and so - Laboratory of so and so - Lab inventoryNotice: Undefined variable: log_status in ./header.php on line 129Notice: Undefined variable: business_logic_included in ./interface_creator/check_login.php on line 58Warning: Cannot modify header information - headers already sent by (output started at ./header.php:76) in ./interface_creator/check_login.php on line 63And in other places, there are many errors. like Notice: Undefined variable: table in ./header.php on line 133-------------Could somebody please help me out?Thanks,drb Quote Link to comment Share on other sites More sharing options...
Humpty Posted March 4, 2006 Share Posted March 4, 2006 Seems a little odd to go into depth if you're not really interested in PHP.Keep this in mind for future 'free app' fiddeling:I use this for error checking: // ERROR TRAPING / DEBUGING // (swap between these following 2 lines) // error_reporting(E_ALL); //Show all errors // error_reporting(0); //Show no errorsRemove the // that is in front of whichever line you want, (in your case the bottom line to turn errors off.I'm a lazy coder. If there are errors that don't effect the overall functionality then I turn errors off.e.g. If you app functions correctly just turn the errors of in the very first file.If some errors do still come then find the offending piece of code and put error_reporting(0); above that offending code line.(this will save you learning what you don't need / want. Other than that if the app doesn't function correctly you'll need someone who knows it or the people who made it.Have fun. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.