The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#21
|
||||
|
||||
Quote:
|
#22
|
||||
|
||||
Yeah, there is alot going on, thanks for understanding.
|
#23
|
|||
|
|||
Paul, we all greatly appreciate your time and work but this upgrade really turned out more problematic that anyone had expected...errors popping everywhere after upgrade, templates broken.
|
#24
|
||||
|
||||
Paul, do not be so dismissive, it is silly. 5 forum upgrades today, all with display errors set to off and errors still displaying. Anyhow, I said "I think" in my post. If the error is not in the error handler, could be elsewhere.
|
Благодарность от: | ||
CharlieDelta |
#25
|
|||
|
|||
I get a error for attachments as well
|
#26
|
|||
|
|||
Horrible
Vbulletin needs to release a fix for all these issues, this is no good |
#27
|
||||
|
||||
Quote:
The final part of the new error handler, the one matching all errors not matched by previous cases, which means also deprecated errors (those most people in the forums have been having problems with) contains this: Code:
default: if (error_reporting() OR ini_get('display_errors')) { This means errors will be shown if error_reporting is enabled even if display errors is set to off. A correct implementation of an error_handler needs to follow the configuration settings specified on the server and react accordingly. http://stackoverflow.com/questions/5...700117#5700117 I do not have the time to submit this to vBulletin's JIRA, so if you guys have the time, do it. I will submit only a trouble ticket for this. |
#28
|
|||
|
|||
So I put up a fresh install for testing and the problem with attachments they are still there was just making sure the problem was not with my forums. VB needs to fix this problem now some kind of quick fix in the next hour this should of been tested before it was given out
|
#29
|
||||
|
||||
And for forum owners, a possible solution to this is just to change this in includes/class_core.php line 5733
Code:
if (error_reporting() OR ini_get('display_errors')) { if (defined('DIR')) { require_once(DIR . '/includes/functions_log_error.php'); $message = "Warning: $errstr in $errfile on line $errline"; log_vbulletin_error($message, 'php'); } Code:
if (error_reporting() OR ini_get('display_errors')) { if (defined('DIR')) { require_once(DIR . '/includes/functions_log_error.php'); $message = "Warning: $errstr in $errfile on line $errline"; log_vbulletin_error($message, 'php'); if(!ini_get('display_errors')) return; } --------------- Added [DATE]1381371455[/DATE] at [TIME]1381371455[/TIME] --------------- Guys, I can confirm I had a similar problem with attachments in a forum and it was, once again, caused by the issue I posted above about warnings coming out at the head of the AJAX response. Using the fix above and hiding the display errors made them work for me. Not sure this covers also your cases (it does not seem to as some of you are reporting issues with fresh installs which should not contain deprecated messages), but just double check this is not what is causing the problem for you as well. |
#30
|
|||
|
|||
Shame really, never imagined we could come to this.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|