MyBB Community Forums

Full Version: Link problem after converting from phpBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After merging my phpBB forums into the new MyBB all the links in posts look like this:
<!-- m --><a class="postlink" href="http://www.bethann.us/misha">http://www.bethann.us/misha</a><!-- m -->

Is there a way to change them all to MyBB code and have them display correctly without having to manually edit every post with a link in it?

I was told that someone had written a script to do this but can't find it. Thanks!
I found what I was thinking of. See if this helps - http://community.mybb.com/thread-69865-p...#pid506248 Smile
I had the same problem.
Then someone told me to do this:
1. Create a mycode
Regular expression
&lt;\!-- m --&gt;&lt;a class\="postlink" href\="(.*?)"&gt;(.*?)&lt;/a&gt;&lt;\!-- m --&gt;
Replacement
<a href="$1">$2</a>
2. Save]