How can we do ?
there is a reCAPTCHA provided by google on my forum, how can i remove it ?
What is the actually question? You don't want google indexing your forum, or you don't want reCAPTCHA?
grep is your friend.
We don't want things like this for exemple : When you create a discussion, the page contains this :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
IP and URL for google !
And we don't want reCaptcha too...
code is not possible on this forum ?http://pastebin.com/Fe226pWB
IP address are not displayed to guests.
If you don't want your pages to be indexed by google that is something you can sort out by server rules and robots.txt
If you don't want reCaptcha pick a different registration method. dashboard/settings/registration
dashboard/settings/registration
If you want a private community that is possible through permissions. Just limit guest permissions.
You can disable CDNs via a config option. Add $Configuration['Garden']['Cdns']['Disable'] = TRUE; to your /conf/config.php file.
$Configuration['Garden']['Cdns']['Disable'] = TRUE;
/conf/config.php
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
ok, thanks !
Comments
What is the actually question? You don't want google indexing your forum, or you don't want reCAPTCHA?
grep is your friend.
We don't want things like this for exemple :
When you create a discussion, the page contains this :
IP and URL for google !
And we don't want reCaptcha too...
code is not possible on this forum ?
http://pastebin.com/Fe226pWB
IP address are not displayed to guests.
If you don't want your pages to be indexed by google that is something you can sort out by server rules and robots.txt
If you don't want reCaptcha pick a different registration method.
dashboard/settings/registration
If you want a private community that is possible through permissions. Just limit guest permissions.
grep is your friend.
You can disable CDNs via a config option. Add
$Configuration['Garden']['Cdns']['Disable'] = TRUE;
to your/conf/config.php
file.Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
ok, thanks !