MyBB Community Forums

Full Version: Pleas help with the register CAPTCHA
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello, the captcha is bugged where it does not show words in the box but shows random lines and squares. Also when you register you never get a activation email.

Sorry but also I want to put a chatango chat box on the forum but I have to put the embed code but I don't know how. Please help!
1.I don't know
2.On server which e-mail address are you using
3. http://mods.mybb.com/view/ajax-chat
(2014-06-14, 09:11 PM)Ali. Wrote: [ -> ]1.I don't know
2.On server which e-mail address are you using
3. http://mods.mybb.com/view/ajax-chat

WOW.. You are such a huge help! Such descriptive tips, advice and help!

On topic I want a chatango chat box not ajax, go on chatango. com and you will see what I am talking about. If I desperately wanted a chat I would use inferno shoutbox. But also on topic I do not get your 2nd advice at all.
We can set up a chatango, copy the html of the chat and paste it in your themes index.
(2014-06-14, 09:19 PM)Ace700 Wrote: [ -> ]We can set up a chatango, copy the html of the chat and paste it in your themes index.

Where is theme index? Also can I position it?
(2014-06-14, 09:21 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:19 PM)Ace700 Wrote: [ -> ]We can set up a chatango, copy the html of the chat and paste it in your themes index.

Where is theme index? Also can I position it?

Yes. The Theme is:

http://mysite.com/admin/index.php?module...-templates

Then choose your theme and then go to:

http://prntscr.com/3sun5h

To add it I like to add the chat above forums so place code before:
{$forums}
(2014-06-14, 09:27 PM)Ace700 Wrote: [ -> ]
(2014-06-14, 09:21 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:19 PM)Ace700 Wrote: [ -> ]We can set up a chatango, copy the html of the chat and paste it in your themes index.

Where is theme index? Also can I position it?

Yes. The Theme is:

http://mysite.com/admin/index.php?module...-templates

Then choose your theme and then go to:

http://prntscr.com/3sun5h

To add it I like to add the chat above forums so place code before:
{$forums}

Thx I found it. This is the code: "<script id="sid0010000063772988926">(function() {function async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var ss = document.getElementsByTagName('script');for (var i=0, l=ss.length; i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id +='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var s=document.createElement('script');if (s.async==undefined){if (window.addEventListener) {addEventListener('load',async_load,false);}else if (window.attachEvent) {attachEvent('onload',async_load);}}else {async_load();}})();</script>"

Sorry for adding it, I thought you could help me where in the index to put it. I see 2 HTML at number 1 and 30, do I just paste it in one of those? Or do I just paste it in the index?
(2014-06-14, 09:36 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:27 PM)Ace700 Wrote: [ -> ]
(2014-06-14, 09:21 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:19 PM)Ace700 Wrote: [ -> ]We can set up a chatango, copy the html of the chat and paste it in your themes index.

Where is theme index? Also can I position it?

Yes. The Theme is:

http://mysite.com/admin/index.php?module...-templates

Then choose your theme and then go to:

http://prntscr.com/3sun5h

To add it I like to add the chat above forums so place code before:
{$forums}

Thx I found it. This is the code: "<script id="sid0010000063772988926">(function() {function async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var ss = document.getElementsByTagName('script');for (var i=0, l=ss.length; i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id +='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var s=document.createElement('script');if (s.async==undefined){if (window.addEventListener) {addEventListener('load',async_load,false);}else if (window.attachEvent) {attachEvent('onload',async_load);}}else {async_load();}})();</script>"

Sorry for adding it, I thought you could help me where in the index to put it. I see 2 HTML at number 1 and 30, do I just paste it in one of those? Or do I just paste it in the index?

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
{$header}
{$ps_header_index}
<script id="sid0010000063772988926">(function() {function 
async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var
 ss = document.getElementsByTagName('script');for (var i=0, l=ss.length;
 i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id 
+='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var 
s=document.createElement('script');if (s.async==undefined){if 
(window.addEventListener) 
{addEventListener('load',async_load,false);}else if (window.attachEvent)
 {attachEvent('onload',async_load);}}else 
{async_load();}})();</script>
{$forums}
{$boardstats}
{$footer}
</body>
</html>

This would be what it will look like.
(2014-06-14, 09:58 PM)Ace700 Wrote: [ -> ]
(2014-06-14, 09:36 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:27 PM)Ace700 Wrote: [ -> ]
(2014-06-14, 09:21 PM)BlackPlumb Wrote: [ -> ]
(2014-06-14, 09:19 PM)Ace700 Wrote: [ -> ]We can set up a chatango, copy the html of the chat and paste it in your themes index.

Where is theme index? Also can I position it?

Yes. The Theme is:

http://mysite.com/admin/index.php?module...-templates

Then choose your theme and then go to:

http://prntscr.com/3sun5h

To add it I like to add the chat above forums so place code before:
{$forums}

Thx I found it. This is the code: "<script id="sid0010000063772988926">(function() {function async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var ss = document.getElementsByTagName('script');for (var i=0, l=ss.length; i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id +='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var s=document.createElement('script');if (s.async==undefined){if (window.addEventListener) {addEventListener('load',async_load,false);}else if (window.attachEvent) {attachEvent('onload',async_load);}}else {async_load();}})();</script>"

Sorry for adding it, I thought you could help me where in the index to put it. I see 2 HTML at number 1 and 30, do I just paste it in one of those? Or do I just paste it in the index?

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
{$header}
{$ps_header_index}
<script id="sid0010000063772988926">(function() {function 
async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var
 ss = document.getElementsByTagName('script');for (var i=0, l=ss.length;
 i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id 
+='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var 
s=document.createElement('script');if (s.async==undefined){if 
(window.addEventListener) 
{addEventListener('load',async_load,false);}else if (window.attachEvent)
 {attachEvent('onload',async_load);}}else 
{async_load();}})();</script>
{$forums}
{$boardstats}
{$footer}
</body>
</html>

This would be what it will look like.

[Image: ngsnif.jpg]
This is what mines looks like. I don't have the {$ps_header_index}.
Add this:
<script id="sid0010000063772988926">(function() {function
async_load(){s.id="cid0010000063772988926";s.src='http://st.chatango.com/js/gz/emb.js';s.style.cssText="width:500px;height:500px;";s.async=true;s.text='{"handle":"lumeplume","styles":{"b":100,"v":0,"w":0}}';var
ss = document.getElementsByTagName('script');for (var i=0, l=ss.length;
i < l; i++){if (ss[i].id=='sid0010000063772988926'){ss[i].id
+='_';ss[i].parentNode.insertBefore(s, ss[i]);break;}}}var
s=document.createElement('script');if (s.async==undefined){if
(window.addEventListener)
{addEventListener('load',async_load,false);}else if (window.attachEvent)
{attachEvent('onload',async_load);}}else
{async_load();}})();</script>
Either before or after forums to see it above it or below it?
Pages: 1 2