Fixed problem - with toolsp.php - repair all settings and now no errors in log file!
Announcement
Collapse
No announcement yet.
Error log file
Collapse
X
-
You can adjust the level of error reporting in your php.ini file or using the error_reporting() function.
- 1 like
Leave a comment:
-
Originally posted by Wayne Luke View PostYou have a non-numeric value stored in a setting, user option, or other variable when it should be numeric. It is impossible for us to know which one that might be. If you want to fix it, you'll have to go through every setting and option in the AdminCP and user records to see where the value might be.
This is a simple warning and should have no impact on the operation of your forum.
Leave a comment:
-
You have a non-numeric value stored in a setting, user option, or other variable when it should be numeric. It is impossible for us to know which one that might be. If you want to fix it, you'll have to go through every setting and option in the AdminCP and user records to see where the value might be.
This is a simple warning and should have no impact on the operation of your forum.
Leave a comment:
-
I have a similar problem in:
PHP Code:[26-Sep-2019 02:51:12 Europe/Istanbul] PHP Warning: A non-numeric value encountered in /includes/class_postbit.php on line 1047
vB4.2.5
PHP 7.1.32
The lines (1043 - 1051):
PHP Code:(
$this->thread['open'] AND
$this->post['userid'] == $this->registry->userinfo['userid'] AND
($forumperms & $this->registry->bf_ugp_forumpermissions['caneditpost']) AND
( $this->post['dateline'] >= (TIMENOW - ($this->registry->options['edittimelimit'] * 60)) OR
$this->registry->options['edittimelimit'] == 0
)
))
)
Last edited by blue7; Wed 25 Sep '19, 5:04pm.
Leave a comment:
-
Error log file
Hello
Get this on my server - maybe 10 lines every day
Code:[25-Sep-2019 05:43:07 America/New_York] PHP Warning: A non-numeric value encountered in /home/user/public_html/vb4/includes/class_core.php on line 2540
some help?
regards
bosss
my lines 2538-2549 in class_core.php are
Code:case TYPE_INT: $data = intval($data); break; case TYPE_UINT: $data = ($data = intval($data)) < 0 ? 0 : $data; break; case TYPE_NUM: $data = strval($data) + 0; break; case TYPE_UNUM: $data = strval($data) + 0; $data = ($data < 0) ? 0 : $data; break; case TYPE_BINARY: $data = strval($data); break; case TYPE_STR: $data = trim(strval($data)); break; case TYPE_NOTRIM: $data = strval($data); break; case TYPE_NOHTML: $data = htmlspecialchars_uni(trim(strval($data))); break; case TYPE_BOOL: $data = in_array(strtolower($data), $booltypes) ? 1 : 0; break; case TYPE_ARRAY: $data = (is_array($data)) ? $data : array(); break; case TYPE_NOHTMLCOND:
Tags: None
Related Topics
Collapse
-
by nextgenI have had several problems after upgrading my forum to the latest version. Here are a few samples.
In the first image, the bbcodes not showing and the second image the phrase dont appear
...-
Channel: vBulletin 5 Installs & Upgrades
Thu 27 Mar '14, 11:44am -
-
by simonhindwith the current verion of VB Connect 5
PHP 5.3.15 is reporting the following issues in error_log
Code:[13-Sep-2012 20:03:49 UTC] PHP Warning: PHP Startup: magickwand: Unable to
-
Channel: vBulletin 5 Installs & Upgrades
Thu 13 Sep '12, 1:27pm -
Leave a comment: