MyBB Community Forums

Full Version: Page Manager - Create and manage additional pages!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
When I click on Page Manager in configuration I get something that says

"You do not have permission to access this part of the administration control panel."
acp > Users & Groups > Admin Permissions
Make sure your usergroup (admins) have permission to manage the custom pages
another question please Smile
how to make use of MyCode and Smilies in page content?
(2010-01-17, 11:39 PM)Nickman Wrote: [ -> ]
(2010-01-17, 11:29 PM)faviouz Wrote: [ -> ]Now that I think of it, this will be very useful for remotely hosted forums. They can't upload files, so this really is nice.

Would be dangerous to allow them to use PHP though.

Nickman is right. It would be dangerous to allow PHP on a sharing MyBB installation.

If you really want to do this I suggest disable of PHP usage.
Open pagemanager.php and find:
				eval('?>'.$pages['template'].'<?');

Replace it with:
				/*eval('?>'.$pages['template'].'<?');*/
				echo $pages['template'];

Maybe it's a good idea to alter the language string pagemanager_edit_form_framework_description and remove the following (because it's pointless then):
 <strong>This will disable the possibility to use PHP in page content!</strong>



(2010-01-18, 03:07 AM)untitle Wrote: [ -> ]another question please Smile
how to make use of MyCode and Smilies in page content?

This is not possible. Use HTML instead.
<img src="http://community.mybboard.net/images/smilies/smile.gif" alt="Smile" />

Maybe I can include an option to enable MyBB message parser in a next release. I will think about it...
No one answered my question Sad
(2010-01-18, 01:12 PM)Shining Latios Wrote: [ -> ]No one answered my question Sad
Correct me if I'm wrong, but you're hosted on those multiforums scripts (I guess you're at EasyMyBB). So you won't be able to install the plugin yourself. The admins must install it for you, ask them. Although it probably won't be installed, as this seems to be dangerous in multiforum hosts, because of PHP.
(2010-01-18, 01:12 PM)Shining Latios Wrote: [ -> ]No one answered my question Sad

Sorry I overlooked your post... Sad
You have to put the file pagemanager.php in directory inc/plugins/ on your webspace/MyBB main directory. But if you are on a MyBB sharing host you are not able to install this (or any other) plugin in most cases.
Hope u will make bb code parser, cause i really lack it :'(
(2010-01-18, 06:04 PM)plyrblur Wrote: [ -> ]Hope u will make bb code parser, cause i really lack it :'(

Everything is possible with PHP. Big Grin
I attached a site (parser.xml) in this thread: http://community.mybboard.net/thread-63357.html
It demonstrates how to load the MyBB message parser.
maybe I'm doing something wrong, but this isn't including the template header/footer.......I have it set to include the mybb template and I'm using version 1.4...

<html>
<head>
<title>About Us</title>
{$headerinclude}
</head>
<body>
{$header}
<center>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="875" height="600">

<param name="WMode" value="Transparent">

   <param name="movie" value="http://www.pazrt.com/forum/images/aboutus.swf">

   <param name="quality" value="high">

   <embed src="http://www.pazrt.com/forum/images/aboutus.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="875" height="600" wmode="transparent"></embed>

</object>

<p>
Website designed and built by: <a href="http://www.pazrt.com/forum/user-rocketfoot"><b>RocketFoot</b></a> and <a href="http://www.pazrt.com/forum/user-andrewjs18"><b>andrewjs18</b></a>.  Hosted by: <a href="http://www.pazrt.com/forum/user-FireGS"><b>FireGS</b></a>.  Member list maintained by: <a href="http://www.pazrt.com/forum/user-Ronnie77"><b>Ronnie77</b></a>
</center>
{$footer}
</body>
</html>
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22