critical error / Declaration of case-insensitive constants is deprecated
-
For about a week I get an error message when I first try to load my webpage. After reloading once or twice it does load the website without further problems. This is the error notice:
There has been a critical error on your website.
Learn more about debugging in WordPress.I enabled debugging in the wp-config.php and got this note after reloading the page:
Deprecated: define(): Declaration of case-insensitive constants is deprecated in /wp-content/plugins/slider/slider.php on line…
indicating to the following lines in the slider plugin:
define( “RESLIDE_PLUGIN_PATH_FRONT_IMAGES”, plugins_url( ‘Front_images’, __FILE__ ), true );
define( “RESLIDE_PLUGIN_PATH_IMAGES”, plugins_url( ‘images’, __FILE__ ), true );
define( “RESLIDE_PLUGIN_PATH_MEDIA”, plugin_dir_path( __FILE__ ) . ‘media-control’, true );
define( “RESLIDE_PLUGIN_PATH_JS”, plugins_url( ‘js’, __FILE__ ), true );
define( “RESLIDE_PLUGIN_PATH_CSS”, plugins_url( ‘css’, __FILE__ ), true );
define( “RESLIDE_PLUGIN_PATH_ASSETS”, plugins_url( ‘assets’, __FILE__ ), true );
define( “RESLIDE_PLUGIN_PATH_FRONTEND”, plugin_dir_path( __FILE__ ) . ‘front-end’, truedefine( “RESLIDE_TABLE_SLIDERS”, $wpdb->prefix . ‘huge_it_reslider_sliders’, true );
define( “RESLIDE_TABLE_SLIDES”, $wpdb->prefix . ‘huge_it_reslider_slides’, true );I’m using the “Huge IT Responsive Slider” plugin, but didn’t find any similar issue in their forum.
Can anyone tell me what to do now? (Because I have no clue.)The page I need help with: [log in to see the link]
- The topic ‘critical error / Declaration of case-insensitive constants is deprecated’ is closed to new replies.