The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#21
|
||||
|
||||
Quote:
|
#22
|
||||
|
||||
Quote:
|
#23
|
||||
|
||||
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.)
|
#24
|
||||
|
||||
Quote:
|
#25
|
||||
|
||||
Quote:
|
#26
|
||||
|
||||
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.
|
#27
|
|||
|
|||
And your not the only one????
Anyone. Looking for some peeps that know this stuff. THanx |
#28
|
|||
|
|||
this has always worked for me... it's old and might need some adjustments.
Code:
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" /> |
#29
|
|||
|
|||
Quote:
*Edit* Nevermind, i fixed it. |
#30
|
||||
|
||||
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.
|
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|