• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

programmer needed for small contract work

Max Hodges

Member
I imported data from ip.board 3.1.14 but now there are problems with similes, html links and quotes.

You can see them on my board here and in the samples below. I'm looking for a programmer who can write some custom code to fix these problems with my data.

http://community.whiterabbitjapan.c...ferent-methods-of-learning-kanji.38/#post-148

here are how I'd like them fixed:

Code:
text in post:

<!--QuoteBegin-jeffcadieux+--><div class='quotetop'>QUOTE (jeffcadieux)</div><div class='quotemain'><!--QuoteEBegin-->I'd love some advice on an electronic dictionary.  Do you know of any that let you look-up an unknown kanji, preferably with the SKIP system?

Thanks again!

Jeff Cadieux<!--QuoteEnd--></div><!--QuoteEEnd-->

fixed text:
[QUOTE="jeffcadieux"]I'd love some advice on an electronic dictionary.  Do you know of any that let you look-up an unknown kanji, preferably with the SKIP system?

Thanks again!

Jeff Cadieux[/QUOTE]

Code:
text in post
<a href="http://rapidshare.com/files/143901524/Heisig_WRP_Cross_Reference.xls.html" target="_blank">http://rapidshare.com/files/143901524/Heis...erence.xls.html</a>

desired replacement:
http://rapidshare.com/files/143901524/Heisig_WRP_Cross_Reference.xls.html

Code:
text in post
<img src="http://www.whiterabbitpress.com/forum/style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid="" border="0" alt="smile.gif" />

desired replacement
:)
:)
 
I've moved this from 3rd party services as that is for services which you are offering to others.
This forum still isn't ideal for it, but there isn't one which deals with requests such as this.
 
You can solve that with a query to find and replace text in the post table at the db. First of all make a backup of your post table an then run this query:

Code:
UPDATE xf_post

SET message = replace(message, 'texttobereplaced', 'replacementtext');

And then enter the wordings accordingly and if you are using a custom prefix for your db tables then replace xf_ with that prefix.
 
Top Bottom