I've just imported from UBB Threads, and am preparing to run cleaner.php. Are there any thorough and well-tested examples of the $replacer settings to run against a UBB Threads import?
As I begin to build my $replacer array, I see that this is going to be very tedious. I'm not the first to do this.
I've searched the forums and found only bits and pieces... If there are any "templates" out there that anyone can offer, I'd be most appreciative.
Thank you in advance for you help.
- Justin
As I begin to build my $replacer array, I see that this is going to be very tedious. I'm not the first to do this.
PHP Code:
$replacer = array(
"[ QUOTE ]" => "[QUOTE]",
"[ /QUOTE ]" => "[/QUOTE]",
"[img]/ubbthreads/images/graemlins/cool.gif[/img]" => ":cool:",
"<font color=" => "[COLOR=",
"" => ""
);
Thank you in advance for you help.
- Justin
Comment