magefix
Forum Replies Created
-
To stop new plugin installation & file edits, add the following lines in your wp-config.php file – its not a permanent fix, but it will prevent any attacker to upload content.
define('DISALLOW_FILE_MODS', true); define('DISALLOW_FILE_EDIT', true);Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Conflict with WPForms LiteA temporary solution I found was to disable reCAPTCHA on WPForms. This way both plugins will coexist.
Plugins:
WPForms Lite ver. 1.8.0.2
reCaptcha Pro by BestWebSoft ver. 1.70Forum: Themes and Templates
In reply to: [OceanWP] Fatal error (Problem with Elementor)@moisesgomez I’m glad it worked!
- This reply was modified 3 years, 4 months ago by magefix.
Hi @hegenberg
It works, thank you!
Forum: Plugins
In reply to: [MimeTypes Link Icons] Download button ( Gutenberg editor )Thank you @x06designs !
Hi @harthur90
Page is showing but still getting many console errors.
No CSRF Cookie found.
No quick-fetch early login-verify request found
Failed to load resource: the server responded with a status of 401 ()
Cannot resolve parent frame. Use fallback valuesHi @harthur90
I no longer get the blank screen and the “Refused to display ‘https://www.hubspot.com/’ in a frame, because it set ‘X-Frame-Options’ to ‘deny’.
However, there are still some console errors.
Just sent an email. Best regards,Hi @harthur90
I’m on holiday, I will check after the 27th of June.Forum: Themes and Templates
In reply to: [OceanWP] Fatal error (Problem with Elementor)Hi @jpmellon,
Another fix is described here: https://forum.elementor.com/development-24/fatal-error-class-elementor-scheme-color-not-found-15404It will include a separate fix, which doesn’t require a plugin downgrade.
“create a new .php file in the wp-content/mu-plugins folder. Add this code snippet:”<?php /** * Plugin Name: Elementor Scheme_Color and Scheme_Typography Class Issue **/ namespace Elementor; \add_action( 'plugins_loaded', function() { if ( ! class_exists( 'Elementor\Scheme_Color' ) ) { class Scheme_Color extends Core\Schemes\Color {} } } ); \add_action( 'plugins_loaded', function() { if ( ! class_exists( 'Elementor\Scheme_Typography' ) ) { class Scheme_Typography extends Core\Schemes\Typography {} } } ); ?>Forum: Fixing WordPress
In reply to: Sorry, you are not allowed to access this page@padreed123 Thank you, your post saved the day for me as well.
Hi there,
I’m getting the same issue! Plugin: Widget for Social Page Feeds
Error: “Your Request Couldn’t be Processed”Browser: Firefox.
Thank you for the fix @capuderg!
Hi there! Check server logs, and look for “/wc-api/Wc_Tech_Autho”. It might be a plugin conflict issue, which might trigger 500 internal server error.
Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Fatal error: Cannot declare class PHPMailer@digamberpradhan error occurs when I’m submitting Preview Emails form
https://i.imgur.com/CXbYWMSl.png
I’m running PHP 7.3.21- This reply was modified 5 years, 9 months ago by magefix.
Forum: Fixing WordPress
In reply to: Critical Error – no access to dashboardTry this: https://ww.wp.xz.cn/support/article/debugging-in-wordpress/
Edit your wp-config.php, then check wp-content/debug.log
Code to add in your config file.
// Enable WP_DEBUG mode
define( ‘WP_DEBUG’, true );// Enable Debug logging to the /wp-content/debug.log file
define( ‘WP_DEBUG_LOG’, true );// Disable display of errors and warnings
define( ‘WP_DEBUG_DISPLAY’, false );
@ini_set( ‘display_errors’, 0 );// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( ‘SCRIPT_DEBUG’, true );