Log in

View Full Version : Turn off autoparsing (vB3)


SloppyGoat
01-05-2004, 01:26 AM
I'd like autoparsing or url hyperlinks to be off by default (or completely disabled), but only in a certain forum. It can't be global. This was accomplished in vB2.x, but now I'd be simply ecstatic if someone could help figure out how to do this in vB3.0.

Thanks in advance

SloppyGoat
01-12-2004, 01:48 AM
Oh yeah, BTW...here's the old code that worked in 2.x. It never did work on the quick reply though. I wish that could be fixed on the new version. Anyway, I thought this might help someone to figure this out. I hope this makes it easier.

There are two different variations that accomplish this hack...

Replace this in newthread.php and newreply.php

if (!isset($parseurl)) {
$parseurlchecked="CHECKED";
}



With this:

if (!isset($parseurl)) {
if ($foruminfo[forumid]!=22) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
}



This also seemed to work:

if ((!isset($parseurl)) && ($foruminfo[forumid]!=22)) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}

Erwin
01-12-2004, 01:58 AM
You can do this using template conditionals now in vB3 - no hack needed. :)

SloppyGoat
01-12-2004, 02:14 AM
That's great! Could you point me in the right direction? I know nothing of template conditionals, I guess. :ermm: Where do I find this?

SloppyGoat
01-13-2004, 10:40 PM
Basically, I want it to do this...

If forurmid=12, then parseurl=no
else, parseurl=yes

I just don't know how to do it. I'm sure it's something simple, but I don't know the code to do it. Anyone? :ermm:

SloppyGoat
01-15-2004, 07:15 PM
Nobody? :(

SloppyGoat
03-23-2004, 07:15 PM
Now that it's gone Gold, I really need to figure this one out. Any help will be greatly appreciated.

SloppyGoat
03-24-2004, 01:15 AM
Ok, Zachery at vB just told me that WYSIWYG will always parse url's, so that will also have to be disabled in that one forum. Can this be done using conditionals, too?

SloppyGoat
03-24-2004, 06:20 PM
I've been reading about this, and I think I just need convert this old code into the newer code.

Old 2.X code

if (!isset($parseurl)) {
if ($foruminfo[forumid]!=22) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
}



New 3.0 code

if (!$checked['parseurl'])
{
$checked['parseurl'] = HTML_CHECKED;
}

I assume I just need an if/else statement in there, as in the 2.X code, right? I'm just not sure how to do this, since the code is a bit different in the new version. Anyone care to help me out with a bit of 2.X to 3.0 translation?

kauka
03-24-2004, 11:19 PM
You can do this using template conditionals now in vB3 - no hack needed. :)

What template conditionals you talking about erwin?

SloppyGoat
03-25-2004, 12:10 AM
According to the vB team, WYSIWYG will always parse, so it'll have to be a hack, apparently.

Mr Blunt
03-26-2004, 07:40 AM
Hey guys,
I'm a new kid on the block here.
Long time user and supermoderator.
First time I've been responsible for a whole server though.
:banana:

I've been having a blast for the last couple months learning about vbulletin, tweaking styles, testing tweaks, installing hacks into php files, upgrading from 2.3.4 to various 3.0 versions, transferring databases, transferring servers, etc...... mainly everything from scratch on my own (with the assistance of some fine readings available!!! YOU GUYS ROCK AROUND HERE!!!!). I've been wanting to tip my hat and say thanks and maybe nows the time as maybe I can help with this thread.
:up:

My guys didn't want outside links on the board so I made the 3 small mods to newreply, newthread, and private. All went well and it works beautiful for standard. So I was playing with that WYSIWYG Editor and like the thread here says, even if the checkmark is off, the links still parse.

So I tried something and it works in WYSIWYG Editor:

Find a thread and Click Reply
Uncheck automatically parse links in text.
Type or paste your link in window.
Type a space and one character.
(...and a smilie doesn't count as a character apparently)
Go back and Highlight just the link.
Click Remove Link Button.
Now click mouse after that extra character.
Continue typing your reply.
Post reply and it works!!!!
https://vborg.vbsupport.ru/index.php

So can a hack be made to force the WYSIWYG editor to look at the "auto pase links in text" and if no checkmark, when the user clicks "Submit Reply", have a script highlight the whole text and then call the "Remove Links" button?? .....like maybe in the includes/functions_wysiwyg.php file??

It makes sense to me that this is where the bug is, because only the WYSIWYG editor has this button so I'm guessing it has to do with some function that's calling the standard's way of removing parse.

What I'm saying is if I could find a manual workaround, then can someone create code to automate that manual workaround??



Last thing, sorry to waste your time guys, lol.
I think the editpost.php needs to be edited along with newreply, newthread, and private.php if you really want no autoparsing by default. I posted to the other thread about it

https://vborg.vbsupport.ru/showthread.php?t=62254

Hey wow, sidenote.....
Take a look, one link is parsed and the other isn't.
hmmmmm, this would make my idea of highlighting whole messages and clicking the "Remove Links" quite a bit more challenging. This whole thing revolves around that next character after the link somehow guys.

Who's got the brains to overcome it??
:squareeyed:

SloppyGoat
03-26-2004, 12:23 PM
That's a damn good observation. So, can a conditional be used to first; specify a specific forum, then use the remove links command(or whatever you'd call it) to remove them as you post? In other words, can a conditional do something like this? I'm sure a hack can, if not.

If forumid=XX
then remove links
else normal operation

This would probably be the ideal way to accomplish this.

Or, use this hack, which disables parsing completely, but use an if statement with it to specify the forum. Found in this thread (https://vborg.vbsupport.ru/showthread.php?t=61979).

In functions_newpost.php FIND

function convert_url_to_bbcode($messagetext)
{ // the auto parser - adds [url] tags around neccessary things


BELOW that ADD

return $messagetext;

This will disable autoparsing of URLs everywhere.

Mr Blunt
03-27-2004, 02:13 PM
Thanks, but that code wouldn't work for my guys cause we do a lot of linking to things on our website.

Hmmmmm, now here's a thought outside the box.....
A hack that allows for only onsite urls ?????
That would rock!!!

Seems if someone can figure out how to check forumid for SloppyGoat, then they could check a character string instead for me.

But to solve my issue still requires a hack to fix how the WYSIWYG editor immediately parses urls to links when you hit a space or return.

Maybe part of the flaw is that the WYSIWYG editor doesn't handle the "auto parse links in text" box in "realtime" (doesn't check it at start of post either, but hey, I'm just thinking out loud).

In other words.....
If the Auto Parse Links Box was turned into WYSIWYG realtime, then maybe it would fix the flaw by allowing for the conditional check at the moment you hit the space or return after typing in the link.

SloppyGoat
03-27-2004, 02:25 PM
Well, if my thinking is correct, doesn't the above code remove all url tags when you click submit, or keep them from ever being posted? That's pretty much what needs to be done, I think. Even if you use the WYSIWYG editor, doesn't the resulting post still have to have url tags in order for it to show as a clickable link?

Mr Blunt
03-28-2004, 12:07 PM
I tried that edit and it does prevent all non-hypered links in standard editor no matter what the autoparse checkbox says, yes, but since the wysiwyg editor autoparses all non-hypered links long before it does the functions_newpost, the result is the newpost doesn't find any non-parsed links to even think about because the links are already parsed.

So it seems logical that it also needs to be put in some other php like maybe the "functions_wysiwyg.php"??? I haven't found exactly where to put it though. I'm still a newbie.

There's a few goals going on here so let's recap...

Some admin's would want to remove 100% of ability to autoparse links in text no matter what the check value is (hack works for standard but not wysiwyg).
Some admin's would want to remove the "default on" for autoparse checkmark, but still allow the checkmark to be turned on by user (hack works for standard but not wysiwyg).
Some admin's would want to keep the "default on" for autoparse checkmark, but still allow the checkmark to be turned off by user (default way for standard, but checkmark value is called too late for wysiwyg).
Some admin's would like a conditional check of what forumid the user is in and probably one of the other options above.
I happen to fall in the second catagory, not the first.
SloppyGoat falls in the fourth catagory.

There's a couple hacks available...

Can turn off autoparse links checkmark default in 4 php files (newreply, newthread, editpost, & private).
Can disable autoparsing links in standard editor completely by editing "functions_newpost.php" file.
So now we all seek the following...

Find where in wysiwyg to add current "return $messagetext;" hack to disable autoparse value check.
Add a hack for wysiwyg to check if autoparse value is off, then don't autoparse when messagebox opens AND while messagebox is in use.
Add a hack to check forumid when deciding to autoparse.

Interesting Facts about vb3 Gold

wysiwyg editor uses quotes in hyperlinks while standard editor and standard with extra controls editor doesn't.
wysiwyg editor automatically adds the quotes to standard hyperlinks if you edit a post with wysiwyg editor.
wysiwyg editor automatically turns simple links into full hyperlinks.
since everything becomes a hyperlink, the autoparse value check at post time is moot in the wysiwyg editor.
there's 4 known php edits to turn off autoparse box by default which still allows the box to function.
wysiwyg editor's "Remove Link" button functions but hitting space or return at end of link reprompts the autoparse.
Examples of the 3 ways links are currently presented:
standard editor - manual typed link
http://www.vbulletin.org

standard editor - hyperlink
http://www.vbulletin.org

wysiwyg editor (manual or hyperlink)
http://www.vbulletin.org


***SIDENOTE***
While creating this reply, I made it in notepad and did a C&P to messagebox in wysiwyg editor. It did NOT parse the first 2 links in my code above but it DID parse the 3rd url. Now to add to that weirdness, and MAYBE a key all this, I don't know, but only a part of the "code" I cut n pasted became a link. I don't know how this is gonna look when I hit reply but what my editor has highlighted in white and underlined "as linked" is from the first quote to the last ]

I corrected the above link by highlighting the link and clicking "Remove Link" and I'll bet you won't see it as a link. I'll post it now below as I saw it with the editor instead....... Notice how the editor ignores the endquote?? It also ignored the first ] that's right after that endquote. Instead, it went all the way to end of string ]

wysiwyg editor (manual or hyperlink)
http://www.vbulletin.org[/url">http://www.vbulletin.org"]http://www.vbulletin.org (<A href="http://www.vbulletin.org)


*** /SIDENOTE***


Possible Solutions to wysiwyg editor's url parsing:

WHEN editpost opens, search for string "[url*" THEN DO wysiwyg repair IF "[url=*" ELSE ignore and continue string search.
WHEN space or return is pressed in wysiwyg messagebox, IF is a text link, CHECK for value of autoparse, IF autoparse=true THEN parse, IF autoparse=false THEN excute character print.
Add that "return $messagetext;" to an additional php file somewhere.
Someday I'll figure out how to turn english into code but in the mean time a little assistance would be real cool if someone thinks of a thing or three to help. Sorry if I'm wasting y'alls time with the lengthy disertation.

I'm a good debugger.
I'm not a good coder....... yet :D
.....but I'm working on it ;)

Mr Blunt
03-28-2004, 12:15 PM
hmmmm, all those links got parsed even though the editor didn't show them to me as links.

Let's try posting it again but with the standard editor w/ extra controls.

standard editor - manual typed link
http://www.vbulletin.org

standard editor - hyperlink
http://www.vbulletin.org

wysiwyg editor (manual or hyperlink)
http://www.vbulletin.org


Darn it, I still can't show you them so I'll show you a different way

standard editor - manual typed link
url]xxx.vbulletin.org /url]

standard editor - hyperlink
url=xxx.vbulletin.org]xxx.vbulletin.org /url]

wysiwyg editor (manual or hyperlink)
url="xxx.vbulletin.org"]xxx.vbulletin.org /url]


Now add the front bracket [ to those 6 url or /url's and THAT's what the 3 methods of creating url's with vbulletin look like in text.

Mr Blunt
03-30-2004, 07:09 PM
I made hack to suit me.
I'm sure it could be done better by someone better.
But here's the jist of it.
Don't hold me responsible for any problems, lol.
I'm just a newbie.

This allows onsite url's to always parse as links in wysiwyg editor.
This places control back into the hand of the auto parse checkmark for all other url's.

Note this hack doesn't kick in until the user clicks "submit reply".
The wysiwyg editor message window will still highlight links.
And in fact if you want it to parse, I think it has to be highlighted before "submit reply".
Don't worry, the submit reply will then remove the offsite links highlighted if autoparse box is NOT checked.


Find part of 'function parse_wysiwyg_anchor' in 'functions_wysiwyg.php':

if (substr($href, 0, 7) == 'mailto:')
{
$tag = 'email';
$href = substr($href, 7);
}
else
{
$tag = 'url';
}


Replaced with this:

if (substr($href, 0, 7) == 'mailto:')
{
$tag = 'email';
$href = substr($href, 7);
}
else if (substr($href, 0, 16) == 'www.mydomain.com')
{
$tag = 'url';
}
else if (substr($href, 0, 23) == 'http://www.mydomain.com')
{
$tag = 'url';
}
else
{
return $text;
}


But notice.....
href, 0, 16....
href, 0, 23....

The 16 and the 23 are the number of characters in the domain quotes
So obviously you must edit these numbers AND the "mydomain".


************************************************** ****
On the other hand, if someone wanted to remove 100% of links with the wysiwyg editor, I tested this and it appeared to do the job ok, but again, I'm just a newbie so don't blame me if it screws up your board.

In the same file, same place, instead of the above stuff, just find this:

$tag = 'url';


Replace with this:

return $text;


Can someone knowledgable verify and/or test this??

SloppyGoat
04-10-2004, 05:16 PM
Bump!

Sooner95
04-27-2004, 11:01 PM
$checked[parseurl]

i searched for that...in all the templates and changed it too

$unchecked[parseurl]

and that worked too, tho i didnt find any thing the quick reply as of yet...

Zachery
04-27-2004, 11:11 PM
$checked[parseurl]

i searched for that...in all the templates and changed it too

$unchecked[parseurl]

and that worked too, tho i didnt find any thing the quick reply as of yet...
the wyswyg will always parse links, you would need to change how it works at the js level to make it work differntly.

Zachery
04-27-2004, 11:12 PM
$checked[parseurl]

i searched for that...in all the templates and changed it too

$unchecked[parseurl]

and that worked too, tho i didnt find any thing the quick reply as of yet...
thats not a real varible, thats why it worked, you in enssense removed that varible.

SloppyGoat
04-27-2004, 11:49 PM
Is this really that tough to do, or does nobody (who knows how to code) want to mess with it? Man, I'd be simply ecstatic if this can be done. I'm still using 2.3 until this hack is accomplished, and I really want to upgrade. :( I have a certain forum that absolutely cannot parse url's. Mainly used by mods/admins for posting semi-dangerous code in a hidden forum. There are a few other hacks I absolutely must have to go live with vB3, but this is probably the most problematic, I guess. I'd even be willing to pay someone a reasonable fee to help with this. Does vB do any custom coding for a fee? I'd love to discuss this with anyone who's interested and capable. (Although, I'm not wealthy, or anything.)

Zachery
04-28-2004, 12:01 AM
Is this really that tough to do, or does nobody (who knows how to code) want to mess with it? Man, I'd be simply ecstatic if this can be done. I'm still using 2.3 until this hack is accomplished, and I really want to upgrade. :( I have a certain forum that absolutely cannot parse url's. Mainly used by mods/admins for posting semi-dangerous code in a hidden forum. There are a few other hacks I absolutely must have to go live with vB3, but this is probably the most problematic, I guess. I'd even be willing to pay someone a reasonable fee to help with this. Does vB do any custom coding for a fee? I'd love to discuss this with anyone who's interested and capable. (Although, I'm not wealthy, or anything.)
You can turn off auto parsing in the standard editor and the regular text box, why not just turn off the ability to use the advanced wysiwyg. ?

SloppyGoat
04-28-2004, 01:06 AM
You can turn off auto parsing in the standard editor and the regular text box, why not just turn off the ability to use the advanced wysiwyg. ?I would, but that's one of the features everyone seems to like. I have no problem disabling it in the one forum, but that hasn't been figured out either, I don't guess. Man, I wish I was a php coder. :ermm: If I could disable the WYSIWYG editor in just the one forum, then disable parsing, my problems would be solved. It's not necessary in that forum, since it's private anyway. I don't want to deprive my members of the nice new features of vB3, though.

SloppyGoat
01-05-2005, 03:57 PM
Did anyone ever solve this? Although I pretty much gave up for awhile, I'm still waiting for some kind PHP guru to help me figure this out.

EZ-Dozet
02-11-2005, 04:51 AM
And your not the only one????

Anyone. Looking for some peeps that know this stuff.

THanx

Jadelit
04-26-2005, 05:05 PM
this has always worked for me... it's old and might need some adjustments.

Disables all parsing of links.
================================================
================================================

newthread.php

find:
$checked['parseurl'] = HTML_CHECKED;

replace with:
$checked['parseurl'] = HTML_UNCHECKED;
================================================
================================================
newreply.php

find:
$checked['parseurl'] = HTML_CHECKED;

replace with:
$checked['parseurl'] = HTML_UNCHECKED;
================================================
================================================
private.php

find:
'parseurl' => true,

replace with
'parseurl' => false,
================================================
================================================
includes/functions_newpost.php

find:
function convert_url_to_bbcode($messagetext)
{

below add:
return $messagetext;

find:
'parseurl' => iif($post['parseurl'], HTML_CHECKED),

replace with:
'parseurl' => iif($post['parseurl'], HTML_UNCHECKED),
================================================
================================================
includes/functions_bbcodeparse.php

find:
// standard URL hyperlink
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";

replace with:
// standard URL hyperlink
return "$text";

find:
$text = htmlspecialchars_uni(substr($tmp, 0, 35) . '...' . substr($tmp, -15));

replace with:
$text = htmlspecialchars_uni(substr($tmp, 0, 500));


=================================================
in showthread.php find:
$showsig = iif($bbuserinfo['signature'], 1, 0);

under add:
if (!isset($checked['parseurl']))
{
$checked['parseurl'] = HTML_UNCHECKED;
}


=================================================

showthread_quickreply

<input type="hidden" name="parseurl" value="1" />


<input type="hidden" name="parseurl" value="0" />

EricaJoy
06-24-2005, 03:29 PM
That's a damn good observation. So, can a conditional be used to first; specify a specific forum, then use the remove links command(or whatever you'd call it) to remove them as you post? In other words, can a conditional do something like this? I'm sure a hack can, if not.

If forumid=XX
then remove links
else normal operation

This would probably be the ideal way to accomplish this.

Or, use this hack, which disables parsing completely, but use an if statement with it to specify the forum. Found in this thread (https://vborg.vbsupport.ru/showthread.php?t=61979).

In functions_newpost.php FIND

function convert_url_to_bbcode($messagetext)
{ // the auto parser - adds [url] tags around neccessary things


BELOW that ADD

return $messagetext;

This will disable autoparsing of URLs everywhere.i did this but now all my users quotation marks are showing up like this \" . I am using vB 3.0.6. Help?

*Edit* Nevermind, i fixed it.

SloppyGoat
06-24-2005, 06:44 PM
So what exactly did it do? Does it disable all parsing globally, even in WYSIWYG? How did you fix the problem with the backslashes? If that works, then all I need is someone to tell me how I can apply it to a single forum.