Make WordPress Core

Opened 8 years ago

Last modified 5 years ago

#36499 new defect (bug)

featured image, image upload

Reported by: diskmandotnet's profile diskmandotnet Owned by:
Milestone: Priority: normal
Severity: normal Version: 4.5
Component: General Keywords: reporter-feedback
Focuses: Cc:

Description

Using Avada theme with WP4.5, many elements have broken since WP4.5 update.

Including:

Slidedeck Slider shows ini_set errors and load.php errors
Fusion Slider - stuck at spinning wheel trying to load slides
Featured Images for blog posts not showing
Add Media into post or page (images wont load to select from)

Surprised this update has affected just about all my sites (about 200) which updated automatically. Now I am trying to revert them all to 4.4x

How did you guys drop the ball this time?

Change History (3)

#1 @dd32
8 years ago

  • Keywords reporter-feedback added

Can you let us know the exact ini_set and load.php errors you're seeing are?
It sounds like these are what is causing your problem, but there's been no other reports of a similar type, which leads me to think this could be an unrelated server configuration issue.

Please review https://wordpress.org/support/topic/read-this-first-wordpress-45-master-list and make sure you've upgraded all your plugins (especially Visual composer) and make sure Jetpack is connected.

If it's determined that this isn't a WordPress bug, you can post in the .org fourms to seek help here: https://wordpress.org/support/forum/how-to-and-troubleshooting

#2 @WeBuyPinball
8 years ago

I'm having the same problem with an Enford theme. ProvoVilla .com (godaddy hosted) Check BuiltWith.com for more info.
I killed plugins. It looks like a JS img load issue. But I really haven't had time to dive into it yet.

-Aaron

(FIXED BY THEME update by Enfold, as expected)

Last edited 8 years ago by WeBuyPinball (previous) (diff)

#3 @tomascot
8 years ago

  • Summary changed from featured image to featured image, image upload

I had the same problem which is caused by the ini_set on line 305 in the includes/load.php file. The error was related to the hosting security configuration, particularly because the ini_set function was disabled. Searching on the web I found that it's a common problem and reading in php.net I found that using


ini_set( 'display_errors', 0 );

is the same as using


error_reporting(0);

As long as the code doesn't check the value that ini_set function returned.

So, why not use the former instead?

Note: See TracTickets for help on using tickets.