ehsanaghaei
Forum Replies Created
-
After a some digging into the code, I fixed my problem,
but I’ll only explain the issue,
this issue comes from the file located under “plugins/email-subscribers/job/es-subscribe.php”, function “es_add_subscribers_db”.at the beginning of the function there is a condition to validate request by nonce.
$hp_key = "esfpx_es_hp_" . wp_create_nonce('es_hp'); if ( !isset( $_POST[$hp_key] ) || !empty( $_POST[$hp_key] ) ) { $es_response['error'] = 'unexpected-error'; return $es_response; }but it’s wrong,
replacing that with blow code will make the fix.if (!isset($_POST['esfpx_es-subscribe']) || !wp_verify_nonce($_POST['esfpx_es-subscribe'], 'es-subscribe' )) { $es_response['error'] = 'unexpected-error'; return $es_response; }and now plugin works perfectly fine.
Hi,
I have the same issue here, I tried and disabled all the plugin except this one, but still does not working, for instance you can check my URL https://devian.irForum: Plugins
In reply to: [Crayon Syntax Highlighter] Can someone adopt this plugin?Hi, I read the whole story and thanks for informing, I think I can take of this plugin.
any thought or ideas or problems, please make list and share, I’ll start the process keep you guys posted. and here is my mail, [email protected]the Symbol in Persian should be,
“ریال”.Forum: Plugins
In reply to: [WP Tiles] plugin make admin slowan other thing,
i’m using version 1 beta
downloaded from wp-tiles web site