Problem with Tagging Member(Mention) Script
4 posters
Page 1 of 1
Problem with Tagging Member(Mention) Script
Hi all,
I have installed member tagging javascript but it is not working.
Javascript:
Can someone help please to fix it? My forum version is PunBB.
Best Regards,
Black-Shadow
I have installed member tagging javascript but it is not working.
Javascript:
- Spoiler:
- Code:
$(document).on('ready', function() {
var BST = {pergunta: 'Do you want to score a user?',name: 'User name:',note: 'Would you like to send to a member notification tag?'};
var b = $('textarea[dir="ltr"]');
b.keyup(function() {
if ('@' == b.val().split('')[b.val().length-1]) {
if(confirm(BST.pergunta)) {
var host = {
pro: ''+window.location.protocol+'',
link: ''+window.location.host+'',
path: ''+window.location.pathname+''
};
var user = prompt(BST.nome).replace(/\s/g,'+');
if(confirm(BST.note)) {
$.post('/privmsg', {
folder: 'inbox',
mode: 'post',
post: '1',
username: ''+user+'',
subject: 'I scored you on a topic',
message: 'You have been marked on the following topic: '+host.pro+'//'+host.link+host.path+''
});
}
$('[name="message"]').sceditor('instance').insertText('[url='+host.pro+'//'+host.link+'/profile?mode=viewprofile&u='+user+']'+user+'[/url]');
}
}
});
});
Can someone help please to fix it? My forum version is PunBB.
Best Regards,
Black-Shadow
Last edited by Black-Shadow on July 29th 2014, 12:24 am; edited 1 time in total
Re: Problem with Tagging Member(Mention) Script
Can I ask where you got the member tagging script from?
Was it here or another site?
I do ask because if it was from another site then you're best to ask them.
Was it here or another site?
I do ask because if it was from another site then you're best to ask them.
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
Re: Problem with Tagging Member(Mention) Script
Hello Derri ,
Yes it is from another site but I am asking here if can someone help me to fix it also I have asked at the site which I found the script but I didn't get any answer yet. Furthermore I was use another script from dom but his site is down.
Yes it is from another site but I am asking here if can someone help me to fix it also I have asked at the site which I found the script but I didn't get any answer yet. Furthermore I was use another script from dom but his site is down.
Re: Problem with Tagging Member(Mention) Script
Don's codes will not work as he's server is not on right now all codes that he had as a plugin is Not working so the code you have will not work
I think your best move now is to ask for the one that is used by LGforum on the same site
I think your best move now is to ask for the one that is used by LGforum on the same site
Re: Problem with Tagging Member(Mention) Script
Hello all,
Yes Dom is working on his server as he informed me http://www.avacweb.com/t1919p30-forumotion-plugins-by-dom#20684 . But the script which I was posted is not hosted on Dom's server its an independed javascript but it need fixing.
Yes Dom is working on his server as he informed me http://www.avacweb.com/t1919p30-forumotion-plugins-by-dom#20684 . But the script which I was posted is not hosted on Dom's server its an independed javascript but it need fixing.
Re: Problem with Tagging Member(Mention) Script
I use the LGBB system it's much better and works like charm
LINK HERE !!!
LINK HERE !!!
Re: Problem with Tagging Member(Mention) Script
Hello APE ,
I have read the LGBB module but it looks really very complicated and I dont know how to recode this script into LGBB module. I have never work with it.
Also I was found this https://help.forumotion.com/t116032p30-mention-mentioning-a-member-or-user#758989 which is similar but its not working.
I have read the LGBB module but it looks really very complicated and I dont know how to recode this script into LGBB module. I have never work with it.
Also I was found this https://help.forumotion.com/t116032p30-mention-mentioning-a-member-or-user#758989 which is similar but its not working.
Re: Problem with Tagging Member(Mention) Script
Just found out my tagging system is no longer working on my forums too and my Friends one toBlack-Shadow wrote:Hello APE ,
I have read the LGBB module but it looks really very complicated and I dont know how to recode this script into LGBB module. I have never work with it.
Also I was found this https://help.forumotion.com/t116032p30-mention-mentioning-a-member-or-user#758989 which is similar but its not working.
Re: Problem with Tagging Member(Mention) Script
Hello APE,APE wrote:I use the LGBB system it's much better and works like charm
LINK HERE !!!
How can I adapt Member Tagging System with LGBB?
Re: Problem with Tagging Member(Mention) Script
there one is Down to i can not get it to work on my forum aswell so i think it's down to the codes all being on the same server or a mix of the 2
Right now the tagging systems are down on all of the sites i use. Dom is not going to carry the code over to anyone i don't think.
Maybe we should ask FM to add one on the main servers in a update.
I'm going to find out if we have a thread for it already if not i will make one
Right now the tagging systems are down on all of the sites i use. Dom is not going to carry the code over to anyone i don't think.
Maybe we should ask FM to add one on the main servers in a update.
I'm going to find out if we have a thread for it already if not i will make one
Re: Problem with Tagging Member(Mention) Script
Just to let you know there is no way to make this code work without server side from Dom. the code only works with he's server. as FM is not hosting any updates on the tag system there is nothing that can be done right now. the code you have needs Dom's server to keep the code working.
I and a number of other members that i know have run lots of ways to get the code working but without server side we can not get it to work SORRY.
Ape
I and a number of other members that i know have run lots of ways to get the code working but without server side we can not get it to work SORRY.
Ape
Re: Problem with Tagging Member(Mention) Script
Hello APE,APE wrote:Just to let you know there is no way to make this code work without server side from Dom. the code only works with he's server. as FM is not hosting any updates on the tag system there is nothing that can be done right now. the code you have needs Dom's server to keep the code working.
I and a number of other members that i know have run lots of ways to get the code working but without server side we can not get it to work SORRY.
Ape
This code
- Code:
$(document).on('ready', function() {
var BST = {pergunta: 'Do you want to score a user?',name: 'User name:',note: 'Would you like to send to a member notification tag?'};
var b = $('textarea[dir="ltr"]');
b.keyup(function() {
if ('@' == b.val().split('')[b.val().length-1]) {
if(confirm(BST.pergunta)) {
var host = {
pro: ''+window.location.protocol+'',
link: ''+window.location.host+'',
path: ''+window.location.pathname+''
};
var user = prompt(BST.nome).replace(/\s/g,'+');
if(confirm(BST.note)) {
$.post('/privmsg', {
folder: 'inbox',
mode: 'post',
post: '1',
username: ''+user+'',
subject: 'I scored you on a topic',
message: 'You have been marked on the following topic: '+host.pro+'//'+host.link+host.path+''
});
}
$('[name="message"]').sceditor('instance').insertText('[url='+host.pro+'//'+host.link+'/profile?mode=viewprofile&u='+user+']'+user+'[/url]');
}
}
});
});
as I can see it doesn't seems hosted on Dom's server its an independed code but it needs some modifications to work. And one more question can we adapt the script to work with LGBB(I think LGBB its independed code too)?
Re: Problem with Tagging Member(Mention) Script
You would have to ask LGForum to make a code to help you on that.
Over all the code you have placed on here for help still has a problem that needs a server side system not sure who gave you that code but the Code Does 100% need server side info that we Do not Host here on FM i think it was made with some sort of support from The same Code as Dom's
I have been running tests and have found as much as i Do the Code just dont work No matter what i Do.
Ive done a BBcode that sort of worked but found it to have bad bugs on all forums i've tested on So right now im Sorry but it looks like until FM/ Dom/ LG work there magic there is nothing else we can Do
Sorry
Ape
Over all the code you have placed on here for help still has a problem that needs a server side system not sure who gave you that code but the Code Does 100% need server side info that we Do not Host here on FM i think it was made with some sort of support from The same Code as Dom's
I have been running tests and have found as much as i Do the Code just dont work No matter what i Do.
Ive done a BBcode that sort of worked but found it to have bad bugs on all forums i've tested on So right now im Sorry but it looks like until FM/ Dom/ LG work there magic there is nothing else we can Do
Sorry
Ape
Re: Problem with Tagging Member(Mention) Script
Hello,
I seem to have a problem with the Hashtag and mention system that LGForum gave me! What's wrong?
I seem to have a problem with the Hashtag and mention system that LGForum gave me! What's wrong?
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Problem with Tagging Member(Mention) Script
We do not give full support about LGforums codes here you should really post on there forums for support as there codes are nothing to Do with FM's systemMrMind wrote:Hello,
I seem to have a problem with the Hashtag and mention system that LGForum gave me! What's wrong?
Re: Problem with Tagging Member(Mention) Script
Hello,MrMind wrote:Hello,
I seem to have a problem with the Hashtag and mention system that LGForum gave me! What's wrong?
You can open a topic in avacweb for those problems which its responsible as they are providing these codes.
Best Regards,
Black-Shadow
Similar topics
» Mention Button Script for awesomebb?
» Script Problem
» weird request topics by member by tagging
» please help me out , Java script problem
» Java script problem
» Script Problem
» weird request topics by member by tagging
» please help me out , Java script problem
» Java script problem
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum