Title: PHP &#8220;error_log&#8221; Warnings
Last modified: May 2, 2019

---

# PHP “error_log” Warnings

 *  Resolved [rmarlow](https://wordpress.org/support/users/rmarlow/)
 * (@rmarlow)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/)
 * I’ve found hundreds log entries in my “error_log” file within public_html all
   repeating two lines over and over…
 * The lines displayed:
    [02-May-2019 21:15:43 UTC] PHP Warning: A non-numeric value
   encountered in /home/diving33cl/public_html/wp-content/plugins/wd-facebook-feed/
   frontend/views/FFWDViewBlog_style.php on line 581 [02-May-2019 21:15:43 UTC] 
   PHP Warning: A non-numeric value encountered in /home/diving33cl/public_html/
   wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewBlog_style.php on 
   line 589
 * Any advice would be appreciated.
 * Thanks,
    Ross

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Support [Kima Baghdasaryan](https://wordpress.org/support/users/kimabaghdasaryan/)
 * (@kimabaghdasaryan)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/#post-11499981)
 * Hi,
 * Could you please let us know which version of the Plugin you use? Please note
   that the current version does not have this issue. It can be also because of 
   PHP version.
    You can also go to these files, and search for the certain lines,
   and delete **(int)**.
 * Thank you!
 * Have a nice day!
 *  Thread Starter [rmarlow](https://wordpress.org/support/users/rmarlow/)
 * (@rmarlow)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/#post-11500014)
 * Thanks for getting back to me…
 * Plugin Version 1.1.7
    PHP Version 7.2
 * These are the two lines of the file:
 * [581] max-width: <?php echo $ffwd_info[‘blog_style_width’] * 0.80; ?>px;
    [589]
   max-width: <?php echo $ffwd_info[‘blog_style_width’] * 0.70; ?>px;
 * Thanks
 *  Plugin Support [Kima Baghdasaryan](https://wordpress.org/support/users/kimabaghdasaryan/)
 * (@kimabaghdasaryan)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/#post-11507467)
 * Hi,
 * In this case please add (int) in certain lines:
 * [581] max-width: <?php echo (int)$ffwd_info[‘blog_style_width’] * 0.80; ?>px;
   [
   589] max-width: <?php echo (int)$ffwd_info[‘blog_style_width’] * 0.70; ?>px;
 * The string has not been converted to number automatically in this PHP version.
 * Please let me know if you have further questions.
 * Thank you!
 * Have a nice day!
 *  Thread Starter [rmarlow](https://wordpress.org/support/users/rmarlow/)
 * (@rmarlow)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/#post-11511914)
 * Worked perfect. No errors after I reset the log and made these changes.
 * Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘PHP “error_log” Warnings’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wd-facebook-feed_e0e3e1.svg)
 * [10Web Social Post Feed](https://wordpress.org/plugins/wd-facebook-feed/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wd-facebook-feed/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wd-facebook-feed/)
 * [Active Topics](https://wordpress.org/support/plugin/wd-facebook-feed/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wd-facebook-feed/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wd-facebook-feed/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [rmarlow](https://wordpress.org/support/users/rmarlow/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/php-error_log-warnings/#post-11511914)
 * Status: resolved