Gayner Posted September 2, 2009 Share Posted September 2, 2009 Honestly, will it actually speed it up by that much that's it's noticable or just ignore it? cause my whole forum works fine just wondering, Be honest, Thanks: Btw this is all Notice: Undefined property: info::$lang in /home/gtcom/public_html/forums/index.php on line 135 Notice: Use of undefined constant ba_edit - assumed 'ba_edit' in /home/gtcom/public_html/forums/lang/en/lang_global.php on line 134'.s.... Link to comment https://forums.phpfreaks.com/topic/172826-will-this-speed-up-my-site-if-i-fix/ Share on other sites More sharing options...
trq Posted September 2, 2009 Share Posted September 2, 2009 To be honest, that many notices is slowing your php processing times, but its probably not enough to make a massive impact. My personal opinion though is that if your application creates that many notices, its obviously not very well written. Link to comment https://forums.phpfreaks.com/topic/172826-will-this-speed-up-my-site-if-i-fix/#findComment-910894 Share on other sites More sharing options...
Gayner Posted September 2, 2009 Author Share Posted September 2, 2009 To be honest, that many notices is slowing your php processing times, but its probably not enough to make a massive impact. My personal opinion though is that if your application creates that many notices, its obviously not very well written. Well... it's 24-7GT.com, if u would like to see my forum.. I guess i will have to fix all error's most of it is in my lang_xx.php were the stuff doesn't have a ' and ' before and after.. but yea -.- Link to comment https://forums.phpfreaks.com/topic/172826-will-this-speed-up-my-site-if-i-fix/#findComment-910903 Share on other sites More sharing options...
PFMaBiSmAd Posted September 2, 2009 Share Posted September 2, 2009 Another problem with that many bogus notices/warnings is that you should have error logging turned on so that you collect information about real problems that occur so that you can find and fix them. If you were filling up the error log with hundreds of lines on each page request, you would never be able to find out any information about actual problems. Code should not generate notices/warning/errors during its' normal execution, only for abnormal conditions that occur such as input validation that passes perfectly valid input but that generates a query error or a when a hacker feeds your script all kinds of unexpected input in an attempt to break in or overload your database server to shut down your site. You would want a record of these things so that you know what, when, and where something unexpected is happening. Link to comment https://forums.phpfreaks.com/topic/172826-will-this-speed-up-my-site-if-i-fix/#findComment-910915 Share on other sites More sharing options...
Gayner Posted September 2, 2009 Author Share Posted September 2, 2009 Another problem with that many bogus notices/warnings is that you should have error logging turned on so that you collect information about real problems that occur so that you can find and fix them. If you were filling up the error log with hundreds of lines on each page request, you would never be able to find out any information about actual problems. Code should not generate notices/warning/errors during its' normal execution, only for abnormal conditions that occur such as input validation that passes perfectly valid input but that generates a query error or a when a hacker feeds your script all kinds of unexpected input in an attempt to break in or overload your database server to shut down your site. You would want a record of these things so that you know what, when, and where something unexpected is happening. ' True.. i need to clean this up fast... before i hit the production line here.. Link to comment https://forums.phpfreaks.com/topic/172826-will-this-speed-up-my-site-if-i-fix/#findComment-910916 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.