Plugin Author
Arshid
(@arshidkv12)
Hi,
Don’t worry, I will help you until your satisfaction.
It is working without any problem in http://CipherCoin.com/wp-admin/
First delete wp-limit-login-attempts plugin then install new one. Then take backup and deactivate all plugins. Activities each plugin one by one and check it.
Thanks
Plugin Author
Arshid
(@arshidkv12)
Please send your domain name details to CipherCoin.com contact us. I will check it.
Plugin Author
Arshid
(@arshidkv12)
Please check [your_domain_name]/wp-content/plugins/wp-limit-login-attempts/captcha.php
Plugin Author
Arshid
(@arshidkv12)
Write a file
<?php
phpinfo();
?>
Browse it, you will see JPG Support and GIF create Support are enabled but PNG Support is disabled.
Enable PNG Support by php.in file
Hi,
I have to make a php.ini file myself to enable PNG support for this plugin. I have no idea how to write that! Could you provide me with an example please?
I tried the phpinfo(); but unfortunately my provider does not allow me to run this file.
Also I do not have the link in my admin for setting the options … How can I access them without this link?
Thank you in advance!
update: I ran
<?php
if (imagetypes() & IMG_PNG) {
echo “PNG Support is enabled”;
}
?>
and it says PNG Support is enabled …
So I assume a php.ini file won’t help me ….
What can be wrong??
Plugin Author
Arshid
(@arshidkv12)
Enable gd extention in php.ini
uncomment this line in php.ini file: extension=php_gd2.dll (remove the leading 😉
to find your php.ini file, create the following file and upload to server and run in browser.
<?php
phpinfo();
?>
it will show a line like, Configuration File (php.ini) Path /usr/local/lib and Loaded Configuration File /usr/local/lib/php.ini
Plugin Author
Arshid
(@arshidkv12)
Just make captcha.php file accessible in .htaccess file located in root or wp-contet or plugin folder then try.