MadAxeman84
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_unslash()Hi again. Actually I find a way to fix the problem.
I fix the error on line 1241 – just commentif ( $referer ) $nonce_field .= wp_referer_field( false );After that I was able to open update page, but when i click update button I receive error with the same file functions.php on line 1312.
I comment the code on that line$ref = wp_unslash( $_SERVER['HTTP_REFERER'] );After that it was OK. Now it is successfully updated to version 3.8
Thanks for the direction to solve the problem
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_unslash()I made the comment of the code, but now I receive error in another line:
Fatal error: Call to undefined function wp_referer_field() in /home/hotspotb/public_html/wp-includes/functions.php on line 1241
The code of function is from line 1236 to 1247function wp_nonce_field( $action = -1, $name = "_wpnonce", $referer = true , $echo = true ) { $name = esc_attr( $name ); $nonce_field = '<input type="hidden" id="' . $name . '" name="' . $name . '" value="' . wp_create_nonce( $action ) . '" />'; if ( $referer ) $nonce_field .= wp_referer_field( false ); if ( $echo ) echo $nonce_field; return $nonce_field; }Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_unslash()Hello f1ss1on, thank you for your help.
This is the code from lines 1260 – 1268* @return string Referer field. */ function wp_referer_field( $echo = true ) { $referer_field = '<input type="hidden" name="_wp_http_referer" value="'. esc_attr( wp_unslash( $_SERVER['REQUEST_URI'] ) ) . '" />'; if ( $echo ) echo $referer_field; return $referer_field; }Forum: Fixing WordPress
In reply to: Fatal errorHello,
I successfully remove this error. I sorry for the topic.
Anyway, I uploaded the plugin again through FTP and I was able to access admin panel. After that turn off the plugin and remove it.Now the problem is with the mobile theme, but I will find a way to fix it.
And once again sorry for the useless topic
Forum: Plugins
In reply to: [WP RSS Multi Importer] Problem with installation with WordPress 3.0.5Hello,
I’m sorry, that I late with my answer. After updating WordPress to 3.5.1 everything is OK.Thanks
Forum: Plugins
In reply to: [WP RSS Multi Importer] Problem with installation with WordPress 3.0.5I’ll update WordPress to 3.5.1 this weekend. Then I’ll write here what is the effect
Forum: Plugins
In reply to: [WP RSS Multi Importer] Problem with installation with WordPress 3.0.5Hello,
i did this, but there is no effect. The error is the same:Warning: require_once(/home/hotspotb/public_html/wp-admin/includes/class-wp-list-table.php) [function.require-once]: failed to open stream: No such file or directory in /home/hotspotb/public_html/wp-content/plugins/wp-rss-multi-importer/inc/ftp_list_table.php on line 6
Fatal error: require_once() [function.require]: Failed opening required ‘/home/hotspotb/public_html/wp-admin/includes/class-wp-list-table.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/hotspotb/public_html/wp-content/plugins/wp-rss-multi-importer/inc/ftp_list_table.php on line 6
Forum: Plugins
In reply to: [WP RSS Multi Importer] Problem with installation with WordPress 3.0.5Hello,
thank you for your help Allen.I did not try to update the WordPress version and the problem still persist.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Problem with installation with WordPress 3.0.5Thanks a lot. I’ll try