MyBB Community Forums

Full Version: [Page Manager] Share your custom 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
hello to all, to create the user map is necessary to use the apikey right?
but if I'm not mistaken the apikey now have to pay
as you can then create the usermap now?

I apologize for my English

thanks in advance
Come show your costume page here
I love this plugin and very easy to use Big Grin
I want to ask
why I can not make this page? error

<?php

global $headerinclude, $header, $theme, $footer, $templates, $lang;

$template = '<html>
<head>
<title>' . $pages['name'] . '</title>
</head>
<body>

<div id="container">
{$header}

<div id="main">
<h1>Donate</h1>
BLA...BLA...BLA...BLA...BLA...BLA...BLA...BLA...
</div>

{$footer}

</body>
</html>';

$template = str_replace("\'", "'", addslashes($template));

eval("\$page = \"" . $template . "\";");

output_page($page);

?>
(2012-05-23, 01:08 AM)Jayfore Wrote: [ -> ]
(2012-05-22, 12:01 PM)~andrew~ Wrote: [ -> ]I also updated the usermap page to use the latest Google Maps API V3 functions.
It may fix some issues people have with that page.
Find the installation instructions here: MyBBStyles.com

THANKS, Andrew! I updated, got my updated key, and it's working great.

Andrew, I see on your site that Google has changed things again, and that you were working on an update back in March of this year. Did you ever complete that? My pins are not working anymore either, and I am already using your updated code for the v3 API. Thanks!
I uploaded the pagemanager.php to Inc/Plugins... I logged in to admin panel, went to plugins, installed and activated. When i got to find where i can make the pages, it doesnt exist anywhere.. What is the direct link to the plugin area? http://prntscr.com/1eg2up
(2013-07-09, 05:56 PM)Zunox Wrote: [ -> ]I uploaded the pagemanager.php to Inc/Plugins... I logged in to admin panel, went to plugins, installed and activated. When i got to find where i can make the pages, it doesnt exist anywhere.. What is the direct link to the plugin area? http://prntscr.com/1eg2up

By default, only Admin has rights...
I am the admin of the forum. I just dont know where in the admin panel i can find the location to make the pages.
^ page manager should be available at the left side menu on configuration page of admin panel

if it is not visible or if it says no permission then navigate to below location & add the permission
admin panel >> users & groups >> Admin Permissions >> click on your name >> configuration
--> Can manage additional pages? <-- select yes and update permissions
The problem is that there is an error in Page Manager's activate and deactivate functions. In activate, this:

change_admin_permission('tools','pagemanager');

Should be this:

change_admin_permission('config','pagemanager');

and similarly in deactivate, this:

change_admin_permission('tools','pagemanager',-1);

Should be this:

change_admin_permission('config','pagemanager',-1);
^ oh! Thank You.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49