PDA

View Full Version : Banners/Images won't show up


DannCG
Thu 9th Nov '06, 4:46am
After succesfully migration from all banners in signature & all images wont show up due to unreadable bbcode in vb.

Example :-

http:486:424:bb0770593c]http://images.cjb.net/0a9e7.jpg[/img:bb0770593c]

So how? Do i have to use cleaner.php? If yes, please guide me what is the replacing code to use .

Jerry
Thu 9th Nov '06, 4:47pm
cleaner.php is usually used for static replacements, though there are some place holders in there for regular expression matching.

To clean up the img link example you posted, you would need to edit cleaner.php line 103 ish which should be this :


#$text = preg_replace('##siU', '', $text);


And replace it with this :


$text = preg_replace('#\(.*)](.*)\[/img:(.*)\#siU', '$2', $text);

DannCG
Fri 10th Nov '06, 2:02am
Cleaner was sucessful and i have done update counters. Unluckily, its not works!

Jerry
Fri 10th Nov '06, 3:45pm
For the example you posted that regex cleans it out, I did test it before posting.

What isn't working ?