Search found 6 matches

by TanisLinkEragon
Tue Jan 02, 2007 8:39 pm
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Re: Taking Posts made in PHPBB and putting them outside the foru

Replace echo $row['post_text']; with echo $bbcode->bbcode_second_pass($row['post_text'], $row['bbcode_uid'], $row['bbcode_bitfield']); That should work. I havn't tried it and only briefly edited it so if it doesn't work, post the error you get and I'll see if I can help. Mark Thanks!! (Even if that...
by TanisLinkEragon
Thu Dec 28, 2006 3:35 am
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Re: Taking Posts made in PHPBB and putting them outside the foru

muse-ic wrote: ^ that doesn't make sense

It means that it is a forum created for testing purposes, and will be deleted when I'm done testing, and that only one person has tried to help me solve my problem.
by TanisLinkEragon
Tue Dec 26, 2006 10:45 pm
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Re: Taking Posts made in PHPBB and putting them outside the foru

First: as it isn't a live forum and the database will be deleted in a month or two anyways, I dont really care.

Second: Only one person has even ATTEMPTED to help.
by TanisLinkEragon
Sun Dec 24, 2006 2:55 pm
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Re: Taking Posts made in PHPBB and putting them outside the foru

ChALkeR wrote: Use the phpBB class, do not do manual changing to html. :D
Rember about security and custom bbcodes. ;)

How does that help?

That really didnt answer my question....
by TanisLinkEragon
Thu Dec 21, 2006 9:14 pm
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Re: Taking Posts made in PHPBB and putting them outside the foru

I know that mods are currently not supported. But anyways, where would I put $bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']); ? Script so far: <?php define('IN_PHPBB', true); $phpbb_root_path = '/forums/'; // make sure this goes to the path that phpBB is installed....
by TanisLinkEragon
Thu Dec 21, 2006 12:27 am
Forum: [3.0/Olympus] Discussion
Topic: Taking Posts made in PHPBB and putting them outside the foru
Replies: 24
Views: 26188

Taking Posts made in PHPBB and putting them outside the foru

Hey guys, I'm attempting to take some posts made in PHPBB3 and put them outside of the form (like a portal). Its working fine, and I get the posts, the only problem is BB code... say someone posts Cool. When I get it out of my database, and put it somewhere, it shows up as [b]cool[/b] It does the sa...