Hi
I have made a post at my forum, Dev:station:
“The problem with bbPages is that the customized pages are stored in an SQL Table within your bbPress Database. In effect, and based on the way it loads, the PHP code will not execute.
If, however, the plugin saved the custom page as a PHP file, it would work.
Once bbPress starts to mature with a new version, I may create such a plugin.”
Michael Finally i got it…..
I use the following code… and listen …. wow its works
<iframe src =”contact.php” width=”500″ height=”700″>
</iframe>
I Just want to confirm…..should i continue to use this script or quit…. is this good or bad for me……..Thx
That should do okay – if it works and doesn’t reduce server-load times, then it should work.
Alternatively, you could make a PHP file that has something like this as content, instead of using iFrames:
<?php bb_get_header(); ?>
/* Your PHP script goes here */
<?php bb_get_footer(); ?>
This file would be saved in your template folder (with a funky name if you wish – the user will never see the name).
Then you would create a file in the forum root, with the following contents:
<?php require_once('my-templates/xxxxxx/page1.php ?>
You would then save that file with the name you want people to access it with, such as information.php.
Much more reliable than iFrames. I, personally, will never use them.
Good Michael…..
I’ll tell u abt it… after using ur scipt
stay connect
script not working….. Michael are you sure you tell me right thing……………………………….think about it
That was really something that came off the top of my head. Does it not do anything? If not, you should keep your iFrames thing going. It must work well.
Instead of <?php require_once('my-templates/xxxxxx/page1.php ?>
, use <?php require_once( 'bb-load.php' ); bb_load_template( 'page1.php' ); ?>
I thought there was something wrong with my ever-so-simple code. Would that page1.php be stored in the root?
No, it would go in the template folder.
it also works for me, but if I want to create multiple pages then?
Can I just add one page in root and include all template pages in this file?
like in root file i want something like this
http://pastebin.com/33EfWn4p
or I’ll stick to create multiple pages in root for making multiple template pages?
anyone interested to help?