Hi @hamzaa01
thank you for reporting this issue.
I suggest you:
- Go to the page where you have the issue
- RIght-click => Click on Inspect => Click on Console
- If you see red errors, please, share them with me
Are you maybe loading the jQuery library from an external domain also in the backend?
Have a great day!
Jose
Hi @hamzaa01
again me. If the issue is caused by jQuery that is loaded by an external domain in the backend, as I suspect, then you will solve it by adding this code to the functions.php of your child theme or to a functional plugin:
add_action( 'fdp_loaded',function(){
if( function_exists( 'eos_dp_is_fdp_page' ) && eos_dp_is_fdp_page() ){
remove_all_filters( 'nocache_headers' );
}
} );
It doesn’t help let me know and I will give you more suggestions.
Have a great day!
Jose
i have try to deactivate all the plugin and i have find the issue is from (all in one wp secuirty and fire wall) plugin, i think its from file permission, i dont now, what should i do?? Thank you for your reply
Hi @hamzaa01
thank you for the information.
What do you see in the console with WP Security and Firewall active?
- Go to the page where you have the issue
- RIght-click => Click on Inspect => Click on Console
Have you tried this code?:
add_action( 'fdp_loaded',function(){
if( function_exists( 'eos_dp_is_fdp_page' ) && eos_dp_is_fdp_page() ){
remove_all_filters( 'nocache_headers' );
}
} );
Freesoul Deactivate Plugins adds a Content Security Policy to the FDP backend pages that prevents scripts from external domains from being loaded.
If that policy prevents All In One Security and Firewall from loading some scripts from external domains, it may cause an error that stops the JS execution.
So again, please, tell me if you see any error in the console, and try the code suggested above.
In the meantime, I will also test All In One Security and Firewall. I suppose this plugin https://ww.wp.xz.cn/plugins/all-in-one-wp-security-and-firewall/, right?
Have a great day!
Jose
I have you tried this code, and its not work
add_action( 'fdp_loaded',function(){
if( function_exists( 'eos_dp_is_fdp_page' ) && eos_dp_is_fdp_page() ){
remove_all_filters( 'nocache_headers' );
}
} );
But in the inspect =>console =>this error (JQMIGRATE: Migrate is installed, version 3.4.1) but when i deactivate the https://ww.wp.xz.cn/plugins/all-in-one-wp-security-and-firewall/ this jquery code is stop in console !! and i have the issue in all pages not from one page the issue is the plugin dont save changes
-
This reply was modified 2 years, 9 months ago by
hamzaa01.
Hi @hamzaa01,
I suggest you:
- Update to v. 2.1.6
- Go to Users => Profile
- Scroll down until FDP Preferences
- Uncheck the checkbox “Content Security Policy to exclude external scripts on the FDP backend pages.”
- Save
Then, please, let me know if you still have the same issue.
Have a great day!
Jose