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
Great idea and plugin, querschlaeger. Will you add lang strings in separate file?
Has querschlaeger died? Where's the support for this plugin gone? :s
He's around and kicking. I think most people are asking things he won't help with.
(2010-03-04, 11:33 PM)EviLito Wrote: [ -> ]How to raise a 404 error when users go to misc.php?page=unknownpage

You can't. Try to view misc.php (without any parameter) oder misc.php?action=blub - there is always shown a white page.

(2010-03-17, 07:19 PM)cscomputing Wrote: [ -> ]For some reason all my forward slashes convert to backslashes for no reason.

After saving? Can you look at database how page content is stored? Does this happen only within Page Manager or in template editing too?

(2010-04-06, 01:53 AM)AJS Wrote: [ -> ]Meta descriptions [...] are a bit crappy. Is there a way to improve them?

It's up to you to add meta description (or other things). Don't see limitations in creating a page... Huh

(2010-04-15, 10:52 PM)DamYan Wrote: [ -> ]Great idea and plugin, querschlaeger. Will you add lang strings in separate file?

There exists language packs: http://mods.mybboard.net/view/page-manager
English language is included in plugin file for fall back reason only.

(2010-04-15, 11:39 PM)41shots Wrote: [ -> ]He's around and kicking. I think most people are asking things he won't help with.

I never gave a guarantee for free and prompt support. My plugins themselves are free and I always use a public license for them. Isn't this enough?
Awsome plugin forgot to thank you sorry, but better late then never Wink
(2010-04-16, 12:54 PM)querschlaeger Wrote: [ -> ]
(2010-04-06, 01:53 AM)AJS Wrote: [ -> ]Meta descriptions [...] are a bit crappy. Is there a way to improve them?

It's up to you to add meta description (or other things). Don't see limitations in creating a page... Huh

Can I just add them to the page anywhere?

I thought they had to be in the head?
Thanks A lot I Been Looking For Something Like This.
I have to ask, how can I make it so only certain groups can see it?
any reason why I get this error when I try to view the page manager section in the admincp?

Access Denied
You do not have permission to access this part of the administration control panel.

here's the .xml file for the debugger
<?xml version="1.0" encoding="UTF-8"?>
<pagemanager_debug>
	<server>
		<php><![CDATA[5.2.13]]></php>
		<database><![CDATA[MySQLi 5.1.47]]></database>
	</server>
	<mybb>
		<version><![CDATA[1.4.13]]></version>
		<plugins><![CDATA[nam, gip, nur, google_analytics, my_meta_tags, onlinetoday, admsec, automedia, rssfeedicon, wnr, google_seo, stopforumspam, settings_cleaner, pagemanager]]></plugins>
	</mybb>
	<pagemanager>
		<md5><![CDATA[2818ed039c3650a7af6158136ab0085d]]></md5>
		<name><![CDATA[Page Manager]]></name>
		<description><![CDATA[Allows you to manage additional pages.]]></description>
		<website><![CDATA[http://mods.mybboard.net/view/page-manager]]></website>
		<author><![CDATA[Sebastian Wunderlich]]></author>
		<version><![CDATA[1.5]]></version>
		<guid><![CDATA[9df7fb9187de42dd35e99dffb5739387]]></guid>
		<compatibility><![CDATA[14*,16*]]></compatibility>
	</pagemanager>
	<table>
		<create><![CDATA[CREATE TABLE `mybb_pages` (
  `pid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) NOT NULL DEFAULT '',
  `url` varchar(30) NOT NULL DEFAULT '',
  `framework` int(1) NOT NULL DEFAULT '0',
  `template` text NOT NULL,
  `online` int(1) NOT NULL DEFAULT '1',
  `enabled` int(1) NOT NULL DEFAULT '1',
  `dateline` bigint(30) NOT NULL DEFAULT '0',
  PRIMARY KEY (`pid`),
  UNIQUE KEY `url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8]]></create>
	</table>
</pagemanager_debug>
(2010-06-13, 10:20 PM)Conor Calby Wrote: [ -> ]I have to ask, how can I make it so only certain groups can see it?

if($mybb->user['uid'] == 0)
{
    error_no_permission();
}
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22