bml13
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTTPS reverse proxy redirect loopHow did you fix it?
Forum: Fixing WordPress
In reply to: WordPress behind a reverse proxy/ssl endpoint, slightly borkedI want to do the same thing with my site, i.e run it on https behind nginx proxy.
Could you please post the complete nginx config file for your blog?Forum: Plugins
In reply to: [WooCommerce] Replacing Shipping Address with Google MapsI also need this, will be great if it lets the user put a pin on his location also
Forum: Plugins
In reply to: [WP-FFPC] memcache unix socket not workingThe plugin expects to give it also the port number, that is why it is not working with unix sockets which does not use ports, so I set it like this:
/tmp/memcached.sock:0
and it seems that it is working for me and the error is disappeared now.Forum: Plugins
In reply to: [WP-FFPC] memcache unix socket not workingWhy this is tagged as “resolved”, I am getting the same error and no fix here!
I am also getting the same error in one of my sites and it did not work (on ubuntu 13.10 and php 5.5.3). But it is working perfectly in my other site (on ubuntu 14.04 andphp 5.5.9),
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Dos not support questions in arabicgreat
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Dos not support questions in arabicI just downloaded V1.7 and I think you still did not fix the COLLATATION problem, I thinks you should add the collate and charset in your sql. See how WordPress does that in its function wp_get_schema:
https://wpseek.com/wp_get_db_schema/Thanks.
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Error messages should not be in separate pageThat is great. Many thanks.
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Dos not support questions in arabicWas this fixed in the new 1.7 release?
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Error messages should not be in separate pageI have fixed that by replacing you line:
add_filter('register_post', array(&$this, 'obr_register_validate_answer'), 10, 2);
by this line
add_filter(‘registration_errors’, array(&$this,’my_validate_answer’), 10, 3);
and added this function:
function my_validate_answer($errors, $sanitized_user_login, $user_email) { if (!session_id()){ session_start(); } if ((!isset($_POST['answer'])) || ($_POST['answer'] == '')){ $errors->add('obr_error',__('Error: please fill the required field (humancaptcha).', 'humancaptcha')); } $user_answer = md5(strtolower(trim($_POST['answer']))); $obr_answer = strtolower(trim($_SESSION['obr_answer'])); if ($user_answer != $obr_answer){ $errors->add('obr_error',__('Error: your answer to the humancaptcha question is incorrect.', 'humancaptcha')); }
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Dos not support questions in arabicYes it did solve the problem, using mysql i executed the query:
alter table wp_obr_humancaptcha_qanda convert to character set utf8 collate utf8_general_ci;
Many thanks.
Forum: Plugins
In reply to: [HumanCaptcha by Outerbridge] Dos not support questions in arabicI added the question :
???? ????????: ???? ? ???? ? ?????
and the answer
171
and clicked on “Add New Q & A”, the question became:
???? ????????: ???? ? ???? ? ?????
It also appears like that in the signup page.I am using WordPress 3.9.1 Arabic and HumanCaptcha 1.6
Forum: Fixing WordPress
In reply to: How to point domain name to primary domain name instead of subdomainThe root folder is the parent folder of the “wordpress” folder
Forum: Fixing WordPress
In reply to: How to point domain name to primary domain name instead of subdomainMove the content of the folder wordpress to its parent folder which the root of your site.
or follow this