• asunb

    (@asunb)


    I have got an error and cannot log in to my wp-admin portal. It gives me the following error on the page –


    Warning: Use of undefined constant WPLANG – assumed ‘WPLANG’ (this will throw an Error in a future version of PHP) in /home/customer/www/eziblank.com/public_html/wp-content/plugins/breezing-forms/BreezingFormsWidget.php on line 4

    Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/eziblank.com/public_html/wp-content/plugins/breezing-forms/BreezingFormsWidget.php:4) in /home/customer/www/eziblank.com/public_html/wp-includes/pluggable.php on line 1296

    Warning: Parameter 2 to wp_hide_post_Public::query_posts_join() expected to be a reference, value given in /home/customer/www/eziblank.com/public_html/wp-includes/class-wp-hook.php on line 287

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter asunb

    (@asunb)

    BreezingFormsWidget.php on line 4
    1 <?php
    2 // no translations yet, let’s do it quick and dirty for now
    3 $breezingforms_widget_description = ‘Display a BreezingForms form’;
    4 if( WPLANG == ‘de-DE’ ){
    5 $breezingforms_widget_description = ‘Zeige ein BreezingForms Formular’;
    6 }
    ————————————————–
    pluggable.php on line 1296
    1294 $x_redirect_by = apply_filters( ‘x_redirect_by’, $x_redirect_by, $status, $location );
    1295 if ( is_string( $x_redirect_by ) ) {
    1296 header( “X-Redirect-By: $x_redirect_by” );
    1297 }
    ————————————————–
    class-wp-hook.php on line 287
    284 if ( 0 == $the_[‘accepted_args’] ) {
    285 $value = call_user_func( $the_[‘function’] );
    286 } elseif ( $the_[‘accepted_args’] >= $num_args ) {
    287 $value = call_user_func_array( $the_[‘function’], $args );
    288 } else {
    289 $value = call_user_func_array( $the_[‘function’], array_slice( $args, 0, (int) $the_[‘accepted_args’] ) );
    290 }

Viewing 1 replies (of 1 total)
  • The topic ‘Error’ is closed to new replies.