Plogger Support Forum - Admin security & size Thu, 28 Mar 2024 18:03:43 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Admin security & size http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=141#Comment_141 http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=141#Comment_141 Wed, 28 Sep 2005 08:30:38 +0000 peanut
First of all ... excellent script! Exactly what I was looking for. Just 2 questions ...

1. As strange as it may sound, how do I remove the login feature when I log into the admin section?

2. How do I resize the pages to make the whole page fit into a 1024 x 764 resolution? I presume it would be somewhere in the CSS?

Thanks in advance!]]>
Admin security & size http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=145#Comment_145 http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=145#Comment_145 Wed, 28 Sep 2005 10:42:46 +0000 anti
1. Open up admin/plog-globals.php in a text editor
2. Locate the following line
if (!isset($_SESSION["plogger_logged_in"])){
(it's on or around line 33) and comment the whole if block out

Afterwards it should look like this:

/*
if (!isset($_SESSION["plogger_logged_in"])){
header("Location: index.php");
exit;
}
*/]]>
Admin security & size http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=159#Comment_159 http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=159#Comment_159 Thu, 29 Sep 2005 04:46:14 +0000 peanut Admin security & size http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=161#Comment_161 http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=161#Comment_161 Thu, 29 Sep 2005 06:12:21 +0000 anti
If you want http://yourgallery/admin work as well, then open admin/index.php and add the following lines to the beginning of the file (after <?php)

header("Location: plog-upload.php");
exit;]]>
Admin security & size http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=162#Comment_162 http://www.plogger.org/forum/comments.php?DiscussionID=34&Focus=162#Comment_162 Thu, 29 Sep 2005 06:22:27 +0000 peanut Thanks]]>