I disabled all the plugins and still got the error
I am unclear how to “Please give the permission to WP_AJAX hook”
Appreciate any advice u can give me.
error below
thanks
POST https://www.apacongress.com/wp-admin/admin-ajax.php 500 `jquery.min.js?ver=3.6.1:2
send @ jquery.min.js?ver=3.6.1:2
ajax @ jquery.min.js?ver=3.6.1:2
s.ajax.s.ajax @ jquery-migrate.min.js?ver=3.3.2:2
DspImportMenus @ DspExportImportScript.js?ver=6.1.1:23
(anonymous) @ DspExportImportScript.js?ver=6.1.1:97
dispatch @ jquery.min.js?ver=3.6.1:2
y.handle @ jquery.min.js?ver=3.6.1:2`
error. textStatus: error errorThrown: jqXHR: {“readyState”:4,”responseText”:”<p>There has been a critical error on this website.</p><p>Learn more about troubleshooting WordPress.</p>”,”status”:500,”statusText”:”error”}
Yeah, this plugin is broken / doesn’t work.
I tried exporting a menu with a few Custom Links only (not tied to any specific pages or page IDs) and importing it into a blank site, and still got the “error in processing” message.
Fix this, guys.
Agreed, app is not working at all. Always an error even on a fresh install with no other apps.
its because the dev is too dumb or lazy to check the code for errors in DspExportImportModel.php:136
notice how there is no ref for the class, tries to call a global function, just add the context and it works, not that it even needs to return anything new because if you go to the function definition at line 371 you notice $cap is not defined so it’s jumping to the return, truly lazy and irresponsible.
so you could rewrite line 136 with
add_filter('map_meta_cap', function($c){return $c;}, 0, 2);