PDA

View Full Version : Text Replacement Links 1.1 (Updated!)


Logikos
10-30-2004, 10:00 PM
Text Replacement Links

====================
Author: Ken 'LiveWire' Iovino
Site: www.vBhacks.us (http://www.vbhacks.us/)
Version: 1.1
====================

Updates

No longer will phrase the the link if the letters are being used. (Example) If google is one of my TextLinks, and a member post "I just got googlefied" It will not link it.
Mass Amounts of Queries per post fixed. This bug fixed by Kentaurus
No longer Case Sensitive. This bug fixed by nexialys


Huge Thanks
I have to give a huge thanks to the following members that have helped me get this hack where it is now. Xenon, Kentaurus, nexialys, Geographic2, and lewekleonek. Thank you guys very much!

What this does
This will allow you to specified any text you add to automatically turn into a link when your members post the word. For example, you go to the ACP and add the word 'google' to the list and then you add the 'url' to googles website, and anytime a member post the word google, it will automatically turn it into a link. See screenshots for example.


To do list...

Time to install: 3-5 minutes
Queries to run: 1
File Mods: 2

/admincp/index.php
/includes/functions_bbcodeprase.php


Templates to edit: 0
Templates to add: 0
New Phrases: 14


Please read carefully and make all the necessary changes as stated. This is will work if installed properly.
PLEASE REMEMBER TO BACKUP BEFORE YOU BEGIN! If you like this hack

Click It
https://vborg.vbsupport.ru/ (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=71191)

Help & Support
Before asking for support Please make sure you have done all necessary changes! If you still need support please post a reply here.

Please post bugs and errors here. Hope you like, feedback welcomed.

Special Thanks and Credit to
-Xenon
-Kentaurus
-nexialys
-Geographic2
-lewekleonek

Kentaurus
10-31-2004, 12:14 AM
try replacing:


$textlinks = $DB_site->query(" SELECT text, link FROM " . TABLE_PREFIX . "textlink");
$findtext = array();
$replacetext = array();
while($link = $DB_site->fetch_array($textlinks))
{
$findtext[] = $link['text'];
$replacetext[] = "" . $link['text'] . " ( . $link['link'] . )";
}
$bbcode = str_replace($findtext, $replacetext, $bbcode);


with


static $customReplaceInit = false;
static $findtext = array();
static $replacetext = array();

if (!$customReplaceInit)
{
$textlinks = $DB_site->query(" SELECT text, link FROM " . TABLE_PREFIX . "textlink");
while($link = $DB_site->fetch_array($textlinks))
{
$findtext[] = $link['text'];
$replacetext[] = "" . $link['text'] . " ( . $link['link'] . )";
}
$customReplaceInit = true;
}

$bbcode = str_replace($findtext, $replacetext, $bbcode);


that should help with your queries problem. I didn't test it but it should work :)

Take in consideration that we already have something called "replacement vars" that are configurable per style and that do "almost" the same thing that you are doing, except that they do it in a global way and not only in the post content. For words like google that are not part of any html or titles one might as well use replacement vars.

Lionel
10-31-2004, 02:34 AM
This is the second time that I read about replacement vars. Where can I find that?

Ok never mind....

Logikos
10-31-2004, 03:18 AM
@ Kentaurus, Thanks alot i will test that right now.

Remi
10-31-2004, 03:23 AM
Hi

Is it posible to use this hack to rplace text with deferent text (not a link).

Thanks

Logikos
10-31-2004, 03:25 AM
Hi

Is it posible to use this hack to rplace text with deferent text (not a link).

Thanks
Sure don't see why not, for example. If a user types the word LiveWire, you can have it be replace with, LiveWire is God. ^^

HiDeo
10-31-2004, 08:43 AM
Lol, really nice job ;)

nexialys
10-31-2004, 08:55 AM
case-insensitive is explained in the preg_replace page...:

http://ca.php.net/manual/en/function.preg-replace.php

preg_replace ("/myWord/i", "myotherword", $thissentence);
...

and is quicker than str-replace in all situations...

... i never used the replacement thing in the templates, i find that really annoying,because it's template based, so filter all the output, not only the text you post.. annoying!

this one will be performing good!!!

TheComputerGuy
10-31-2004, 04:13 PM
Didn't vB2 have this installed by default? I might be thinking Invision...

Either way nice hack!

Logikos
10-31-2004, 04:30 PM
I was testing that code mod that Kentaurus did but i was getting a timeout error. I finally got my computer back online so i'll be working on the hack tonight. (after halloween) ^^

Logikos
10-31-2004, 04:47 PM
UPDATES
Query Bug fixed by Kentaurus. First post updated.

Logikos
10-31-2004, 05:42 PM
case-insensitive is explained in the preg_replace page...:

http://ca.php.net/manual/en/function.preg-replace.php

preg_replace ("/myWord/i", "myotherword", $thissentence);
...

and is quicker than str-replace in all situations...

... i never used the replacement thing in the templates, i find that really annoying,because it's template based, so filter all the output, not only the text you post.. annoying!

this one will be performing good!!!

Hey nex, the problem is i don't know how to add the / / i in there using variables. I tried"


$code = preg_replace("/" . $text . "/i", $replacetext, $code);


But that doesn't work, anyone have any ideas?

Logikos
10-31-2004, 07:28 PM
Another Update
Fixed the case sensitive bug. Zip updated. Please ignore post # 12.

nexialys
10-31-2004, 09:47 PM
@Lime Wire... always the same pattern with PHP:

stuff between "" are to be included without quotes: "$stuff" ...

Blam Forumz
11-01-2004, 04:15 AM
CREATE TABLE textlink (
textlinkid SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
text CHAR(250) NOT NULL DEFAULT '',
link VARCHAR(250) NOT NULL DEFAULT '',
adddef SMALLINT(3) NOT NULL DEFAULT '0',
textdef VARCHAR(250) NOT NULL DEFAULT '',
PRIMARY KEY (textlinkid)


gives me this error:



#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 7

Logikos
11-01-2004, 05:31 AM
CREATE TABLE textlink (
textlinkid SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
text CHAR(250) NOT NULL DEFAULT '',
link VARCHAR(250) NOT NULL DEFAULT '',
adddef SMALLINT(3) NOT NULL DEFAULT '0',
textdef VARCHAR(250) NOT NULL DEFAULT '',
PRIMARY KEY (textlinkid)


gives me this error:
You didn't copy the whole query in the install file.


CREATE TABLE textlink (
textlinkid SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
text CHAR(250) NOT NULL DEFAULT '',
link VARCHAR(250) NOT NULL DEFAULT '',
adddef SMALLINT(3) NOT NULL DEFAULT '0',
textdef VARCHAR(250) NOT NULL DEFAULT '',
PRIMARY KEY (textlinkid)
)

cnczone
11-12-2004, 01:57 AM
installed and does not work

Logikos
11-12-2004, 03:34 AM
If you followed the instructions correcly then it should work.

cnczone
11-12-2004, 04:05 AM
When I add a link I get a "could not find phase" xxxxx

Logikos
11-12-2004, 06:32 PM
Means you just missing a phrase, but that won't let the hack not work. Add a textlink then post that text in your forums, it still should replace the text with the link. Also, what phrase did it say that it could not find?

cnczone
11-12-2004, 08:51 PM
it's says "could not find phase "saved_text_link_x_successfully" " when added a new link

cnczone
11-12-2004, 08:52 PM
Add a textlink then post that text in your forums, it still should replace the text with the link.

I have done that and it does nothing.

cnczone
11-12-2004, 08:53 PM
Any action I do leads to "could not find phase" and I check and all the pharses are there.

Logikos
11-13-2004, 03:05 PM
I have done that and it does nothing.
I don't understand, the instructions are very easy, upload one file, edit to 2 files. And your done. I just downloaded my hack and read my instructions and verything worked fine, though i did find missing phrases, and i'll add those tonight, but thats not the reason the hack isn't working.

cnczone
11-13-2004, 07:58 PM
I don't understand etheir I have installed 100's of hacks and I can't seem to male this one work.

psico
11-21-2004, 12:59 PM
This hack is a great idea like IntelliTXT, but is not working... I´ve installed many times following exactly what instructions says but nithing happens when I create a Text Replacenment Link and then a new post with the text to replace...

Please review the code because something is wrong...

Logikos
11-21-2004, 04:52 PM
I will look at the code and install on a fresh vBulletin and see whats the problem/

psico
11-21-2004, 09:46 PM
Tnx a lot!

Jolten
11-21-2004, 11:20 PM
It's not working here either.

The phrase keeps getting reported as not there, when I've checked and double checked and it is there and in the correct group.

In addition, the text is not parsed to a link anywhere in the forums.

Jolten
11-22-2004, 12:11 AM
I got it somewhat working by replacing the functions_bbcode parse text posted in the second post here.

Don't ask me what the difference is, but there is a difference between that and the code in the install file.

Only problem now is that it actually displays the entire link not the word. What I'd like is for it to display the word... and link the original word.

cnczone
11-22-2004, 03:39 AM
Still not working for me.

StefanS
11-24-2004, 02:58 PM
Exactly installed in 3.03 as described but not working.

HarryBO
12-03-2004, 09:19 PM
Still not working for me,too!

Geographic2
12-21-2004, 01:33 AM
I installed but then used what Kentaurus posted and it works on highly modified vb 3.0.0

I also solved your www.google.com problem.

Simply search for <space>Google<space> which will insure you wouldn't replace subwords as well for example Googleicous...

So look for " Google " instead of "Google"

Kentaurus's code with my small addition to check for spaces before and after the word and add a space before and after the replacement:


static $customReplaceInit = false;
static $findtext = array();
static $replacetext = array();

if (!$customReplaceInit)
{
$textlinks = $DB_site->query(" SELECT text, link FROM " . TABLE_PREFIX . "textlink");
while($link = $DB_site->fetch_array($textlinks))
{
$findtext[] = " ".$link['text']." ";
$replacetext[] = " " . $link['text'] . " ( . $link['link'] . ) ";
}
$customReplaceInit = true;
}

$bbcode = str_replace($findtext, $replacetext, $bbcode);



This works for me at Giant Vegenetics (Http://www.giantvegenetics.com)

Sample word: Pumpkin
Pending full implementation with Wiki... :)


I plan to connect it to my WIKI for a very nice feature. Encylopedic knowledge injected directly into the threads. Sweet.

Geographic2
12-21-2004, 01:51 AM
Kentarus's with n*****?'s idea, Using case insensitive preg_replace and checking for spaces to avoid the www.google.com problem.


static $customReplaceInit = false;
static $findtext = array();
static $replacetext = array();

if (!$customReplaceInit)
{
$textlinks = $DB_site->query(" SELECT text, link FROM " . TABLE_PREFIX . "textlink");
while($link = $DB_site->fetch_array($textlinks))
{
$findtext[] = "/\s".$link['text']."\s/i";
$replacetext[] = " " . $link['text'] . " ( . $link['link'] . ) ";
}
$customReplaceInit = true;
}

$bbcode=preg_replace($findtext, $replacetext, $bbcode);

Marulatree
12-22-2004, 11:03 AM
can this main install file be updated so we can just install straight from your first post

Jolten
12-22-2004, 03:46 PM
Still not working here. But I think it's got something to do the the admin only html hack I've got installed.

Prince
12-27-2004, 02:02 PM
I concur this hack does not work.

Geographic2
12-30-2004, 01:25 PM
*sigh*
I disagree this hack does work - IF you follow the changes given by various people to the original unmaintained install file.

Proof positive: http://www.giantvegenetics.com

Give it a try. Use the word pumpkin in a post. Please use the AI Growbot Garden Teahouse (http://www.giantvegenetics.com/gv/forumdisplay.php?f=21) forum for your test.


User: VB Guest
PW: dotorg


Follow the install file directions. Then make the changes I described in either of the code blocks I posted on Page 3 of this thread, use the first one if you want it case sensitive, use the second one to ignore case sensitivity.

Prince
12-30-2004, 07:17 PM
*sigh*
I disagree this hack does work - IF you follow the changes given by various people to the original unmaintained install file.

Proof positive: http://www.giantvegenetics.com

Give it a try. Use the word pumpkin in a post. Please use the AI Growbot Garden Teahouse (http://www.giantvegenetics.com/gv/forumdisplay.php?f=21) forum for your test.


User: VB Guest
PW: dotorg


Follow the install file directions. Then make the changes I described in either of the code blocks I posted on Page 3 of this thread, use the first one if you want it case sensitive, use the second one to ignore case sensitivity.

so it only works if you go thru this thread and try and figure out all of the additional changes that others have made? to me that means this thing needs to go back to the beta forum or the hack developler needs to update his instructions. I should not have to read thru a thread and guess which additional changes need to be made to the code to make the hack work, that is silly.

Jolten
12-30-2004, 08:13 PM
I'll reiterate. I've applied all changes posted here in this thread. And it still does not work. However, as I posted above, I believe it won't work for me due to admin ability to post html on my forums. For me, admins posting html is more important that text replacements, especially since these replacements can be handled in the built-in vb3 replacement variables.

MajorFm.com
01-01-2005, 10:44 PM
you cannot do this in the built-in vb3 replacement variables.

e.g.

If i replace

value

with

value

it will replace the word value everywhere, in the thread titles, anywhere and it actually replaces it with the text which the forum doesn't pick up as vb code.

I actually need this hack! and was looking for it, its a shame its not finished, i know that Geographic2 has tried to help, however, when i did the test on your forum, the word pumpkin did not replace with a link.

I need this hack asap and would love for someone to finish it!

p.s. i added a few spaces coz this forum kept picking it up as vb code

eXtremeTim
01-02-2005, 12:06 AM
Im planning to install this hack tonight. I will see about releasing what code I use that works correctly. I will then talk with my man livewire and see if he cares about me releasing a new version of this hack for him.

Geographic2
01-02-2005, 04:25 PM
so it only works if you go thru this thread and try and figure out all of the additional changes that others have made? to me that means this thing needs to go back to the beta forum or the hack developler needs to update his instructions. I should not have to read thru a thread and guess which additional changes need to be made to the code to make the hack work, that is silly.

If you can't take the idea and run with it to get it working to your desires it's certainly not my problem. The concept works. The code as posted throughout the thread works.

I agree though move it to beta so people who can't program or stand to read a thread will stay away from it. :)





it will replace the word value everywhere, in the thread titles, anywhere and it actually replaces it with the text which the forum doesn't pick up as vb code.

I actually need this hack! and was looking for it, its a shame its not finished, i know that Geographic2 has tried to help, however, when i did the test on your forum, the word pumpkin did not replace with a link.

I have added additional logic to the code to avoid what would ultimately become way too many links. As you can see on the AI Growbot's reply to you that the Quoted text from your posts WAS linked. And therefore this hack still does work. :ermm:

http://www.giantvegenetics.com/gv/showthread.php?t=2390

Jolten
01-02-2005, 05:18 PM
I'm not a php idiot. I've coded quite a bit. I've followed everyone's advice here, installed and reinstalled. I still can not get this hack to work in any form on my site. I can not rule out that it's my site that is the problem. However, this is the first release by anyone at vb.org that I could not get to function.

Souli
01-04-2005, 09:56 AM
Works great - no problems :squareeyed:

wkhalaf
01-06-2005, 12:23 AM
This hack is not working .. everything is installed word by word .. but the hack it self wouldn't work .. and the links wouldn't show ..

Prince
01-06-2005, 02:23 AM
I agree, I have been hacking vB for 3 years and I cannot get this one to work either.

dhurd
01-21-2005, 01:08 AM
I couldn't get it to work initially but I added the changes that Geographic2 had posted and then it did work. However, it appears that if the text that is to be replaced is at the last text of the post or if the text is followed by a punctuation mark it doesn't not work.

Skyline_GT
01-24-2005, 06:11 PM
thanks.. will install this for sure..

Skyline_GT
01-27-2005, 08:34 AM
this hack doesn't work at all..

Sal Collaziano
01-28-2005, 10:00 PM
Somebody should continue to work on this. It's a really great option for advertisers. Not only does their banner ad show (if they have one), but any time their company name is addressed, it can link to their web site...

Robert Basil
02-09-2005, 07:44 PM
The hack works great for me. But with the "spaces" addition it will not work if the word to be replaced is the first or last word in a post.

aspen0
02-18-2005, 12:38 PM
Got it working with the code (case insensitive) posted by Geographic2.

One bug I noticed though -- it doesn't handle phrases.

I can't replace 2 word phrases. So I couldn't replace say "Golden Retreiver" with a link to a description of the breed.

Limitation of the system? Or something easily fixed?

Geographic2
03-26-2005, 05:42 PM
If you don't like the way it is parsing things then come up with a better regular expression to cover what you are looking for. I'm happy with the way this one has performed for me. Here it is running on my Glossary of Botanical Terms (http://www.giantvegenetics.com/gv/glossary.php) which is integrated with my WIKI. I personally feel there are already enough links being made without including the ones which appear with punctuation etc. I'd actually think of making it limit the # of links more that create more than there is like this.


If you want to check to see if it's at the end of a sentence or followed by a comma simply define it in the regex:

$findtext[] = "/\s".$link['text']."\s/i";


Instead of looking for just a space at the end, you need to look for space or any punction marks ? , . ! etc... Or....

Instead of blocking the replacement of what are already URL's which is the reason I introduced the search for " word " instead of "word" in the first place way back when, you could search for "Not [" and "Not ]" to prevent the url bbcode from being broken. I'm a big fan of people learning how to do things, so somebody learn and figure it out.

I can get mine to cover 2 word phrases, not sure why yours will not.
I am using the same regex I posted here... Here I am replacing the phrase "Giant Vegetables", when I put it in via the admin CP i don't include the quotation marks.
http://www.giantvegenetics.com/gv/showthread.php?t=25379&page=3&pp=10


$findtext[] = "/\s".$link['text']."\s/i";
$replacetext[] = " " . $link['text'] . " ( . $link['link'] . ) ";

lewekleonek
04-19-2005, 03:44 AM
Here is another fix to the fix of the fix (just kidding).
Yet another thought before I'll move on to the fixed code posting - make sure that the version of the php your server is runing has PCRE enabled; navigate to your admin control panel, go to 'Import & Maintenance' section; click on 'View PHP Info' link. Once you are able to view PHP info in the main panel please search for 'pcre':
PCRE (Perl Compatible Regular Expressions) Support enabled
If the line is missing the code may not work for you.

What's fixed:
- now it works with phrases
- works with both words and phrases at the beggining or the end of the post
Enjoy it:
static $customReplaceInit = false;
static $findtext = array();
static $replacetext = array();

if (!$customReplaceInit)
{
$textlinks = $DB_site->query(" SELECT text, link FROM " . TABLE_PREFIX . "textlink");
while($link = $DB_site->fetch_array($textlinks))
{
$findtext[] = "/(\s+|^)".$link['text']."(\s+|$)/i";
$replacetext[] = " " . $link['text'] . " ( . $link['link'] . ) ";
}
$customReplaceInit = true;
}

$bbcode=preg_replace($findtext, $replacetext, $bbcode);

/LL

Logikos
04-28-2005, 11:28 AM
Hey everyone, i'm back for good now and i'll be able to start updating and supporting my hacks. I just read the thread and i have to thank everyone who has contributed there time to trying to make this hack work while i was away. I am going over the code now and will have an update very shortly with all fixes. Thanks again!

Marco van Herwaarden
04-28-2005, 01:48 PM
Nice to see you back (for good???).

Prince
04-28-2005, 03:04 PM
It works! :)

Thanks!

Prince
04-28-2005, 04:14 PM
everything works great, but I do get an error every time I add a new text link in the redirect window:

Cannot find phrase: "saved_text_link_x_successfully'

Prince
04-28-2005, 04:55 PM
actually, none of the redirect window phrases work, they all give he "could not find phrase" error.

Logikos
04-28-2005, 07:07 PM
I noticed that, but the thing is the phrase is there. If you search the phrase it is in the database but for some reason its given me that error. I'll check it out after work.

Yes for good.... :)

Prince
04-29-2005, 12:29 AM
yes the phrase is there and as far as I can tell the code is calling the correct phrase, but there is definitely something coded wrong.

Prince
05-03-2005, 03:42 AM
figure anything out yet? :)

Logikos
05-03-2005, 05:51 AM
Havn't even worked on it, its not a top priority on my list. As long as the hack work for now. Next version will be the fix.

j_86
05-03-2005, 06:05 AM
Is this compatiable with the Geek Auto Linker?

Logikos
05-03-2005, 09:49 AM
Not sure what that does

-=Sniper=-
05-16-2005, 04:47 PM
Not sure what that does

its similar to your hack with loads of features...

Logikos
05-16-2005, 06:09 PM
hmmm, came out 2 months after mine. Have to take a look at it.

-=Sniper=-
05-21-2005, 05:48 PM
just a question, lets say I have amazon linking to amazon.com

a user makes a post and types "AMAZON" all in CAPS, the hack links but converts it back to lowecase, is it possible to avoide this problem?

also is this one query per page or per post.

Logikos
05-22-2005, 06:24 AM
One query per page. That isn't possiable. If you have the word "Soda" as a link going to coke.com, and a user says. I like to drink soda. It will show up as a link. There isn't a way around it unless you deigne something where it can tell the PHP how the user is using the word.

-=Sniper=-
05-22-2005, 08:28 PM
I think the geek auto linker only has one query per page.

Logikos
05-22-2005, 10:24 PM
As this one does also.

-=Sniper=-
05-22-2005, 10:29 PM
hehe what you wrote didnt make sense...anyway I just tested auto linker again, and it seems to do what I described above.

not sure which system to use :)

Logikos
05-22-2005, 10:45 PM
I think the geek auto linker only has one query per page.

You said that the geek auto linker only has one guery per page, as this hack does also.

I would use whatever fits your needs, this isn't any sort of competition. :)

tylercruz
06-04-2005, 03:19 AM
I installed it, but it's not working as well as I hoped, so I'll be removing it. My beef with it is that it messes up the formatting of posts right now.... Sometimes it removes the newlines in posts, and sometimes it removes the preceeding space, making posts really cluttery...

Let me know when you beef this up and fix the errors..

Logikos
06-04-2005, 05:55 AM
i acually never seen this error. Got a screenshot?

Supernature
07-23-2005, 10:27 AM
At first, I have to say "Thank you" for this excellent work!
I found out why the redirect phrases are not working - they phrasetypeid is wrong. I use the german vB3, so I don't know how the type is called in the english version, must be something like "Control Panel: Messages" - the phrasetypeid is "9000" (as sayed, in the german version).

After installing the hack, i asked myself:
If someone asks "Where do I find the homepage of XYZ", and XYZ is in the TextReplacement-Table, the other users will think he is completely insane, because there is no option to tell this automatic link from the others.

So I did the following modification:

I changed one line in the code to insert in functions_bbcodeparse.php from

$replacetext[] = " " . $link['text'] . " ( . $link['link'] . ) ";
to
$replacetext[] = " . "]" . $link['text'] . " ";



Next, I created a custom vb-Code:

Name: autolink
Tag: autolink
Code to insert: <span class="autolink"><a title="this link has been created automatically" href="{option}" target="_blank">{param}</a>*</span>Use option: yes



At last, I went to the custom CSS-Definitions and inserted the following:
.autolink a:link
{
text-decoration:underline;
}
.autolink a:visited
{
text-decoration:underline;
}
.autolink a:hover
{
text-decoration:underline;
}

The result is that the generated links are marked with a '*', and on mouseover, the text "this link has been created automatically" will appear.
Additionally, the links will be underlined.
If you alreade use "underline" for the normal Links, you should use any other CSS-Definition.

Logikos
07-23-2005, 10:49 AM
Thank you for that! I will definitly be looking at your above post when I port this to 3.5.0! :)

Supernature
07-23-2005, 01:51 PM
Feel free to do so :)
Just found another problem: If the text to replace is followed by a ".", it will not work.
And if the word to replace is the first in a line, the link will "jump" to the end of the line before, even if there are one ore more blank lines in between.
(Tried this also with the original hack without my modifications, same behaviour).
Any idea?

Logikos
07-23-2005, 03:00 PM
Feel free to do so :)
Just found another problem: If the text to replace is followed by a ".", it will not work.
And if the word to replace is the first in a line, the link will "jump" to the end of the line before, even if there are one ore more blank lines in between.
(Tried this also with the original hack without my modifications, same behaviour).
Any idea?

Not sure, after I get back from the beach I will look into this. I also have some updated features I want to apply to this hack.

bgray
07-30-2005, 09:41 AM
Hey Live Wire. I'm happy to see you're going to rev this hack for 3.5
Thanks!

*eagerly awaiting*

GrendelKhan{TSU
08-09-2005, 02:13 AM
Hey Live Wire. I'm happy to see you're going to rev this hack for 3.5
Thanks!

*eagerly awaiting*

what he said. ;) :D

Logikos
08-09-2005, 03:06 AM
Some info for you guys :)
https://vborg.vbsupport.ru/showthread.php?t=93903

bgray
08-30-2005, 09:34 AM
Hey Livewire,

Any ETA on this badboy?

yahoooh
09-02-2005, 06:05 AM
we wait

c0d3x
09-30-2005, 08:39 PM
any news for the vb3.5 version? :P

Big_Ad
12-27-2005, 07:56 PM
Hi, I'm getting a slight problem installing?

I get:


Fatal error: Call to a member function on a non-object in /usr/local/psa/home/vhosts/musclezone.co.uk/httpdocs/forum/admincp/install_text_replacement_links.php on line 200

Any ideas?

Thanks

Luggruff
02-05-2006, 04:26 PM
Hi, I'm getting a slight problem installing?

I get:


Fatal error: Call to a member function on a non-object in /usr/local/psa/home/vhosts/musclezone.co.uk/httpdocs/forum/admincp/install_text_replacement_links.php on line 200

Any ideas?

Thanks

Probably because you have vb v.3.5**.. and not 3.0 wich this hack is for.. realised it myself when I got the error.

Update please !