PhpDig.net

Go Back   PhpDig.net > PhpDig Forums > Mod Submissions

Reply
 
Thread Tools
Old 02-28-2004, 03:17 AM   #1
manfred
Orange Mole
 
Join Date: Nov 2003
Posts: 42
New admin panel is here!

Hi

Here is new panel with new functionalities. Maybe you find it useful also. Please send a note if it does not work - only tested with WinXP and Apache.

Installation:
- unzip to your PhpDig folder
- change config.php as follows (replace in language " with ')
PHP Code:
$phpdig_language 'en'
You can add new features easily by copying form sections in index.php and check corresponding value from config.php.

Have fun!
-m-

EDIT: Attachment removed. See below for newer attachment - version 0.9b dated 29/02/04.
manfred is offline   Reply With Quote
Old 02-29-2004, 11:56 AM   #2
manfred
Orange Mole
 
Join Date: Nov 2003
Posts: 42
I made a page for this where you can see a picture and download the latest version. I didn't put a download link because you can get the latest directly from main page.

What do you think of this?

Main page

Picture

-m-
manfred is offline   Reply With Quote
Old 03-01-2004, 08:38 AM   #3
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
>> What do you think of this?

Hi. Haven't had a chance to view the code, but the screenshot looks very user friendly.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote
Old 03-01-2004, 11:48 AM   #4
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
EDIT: Attachment removed. See below for newer attachment - version 1.0 dated 09/03/04.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote
Old 03-11-2004, 10:52 PM   #5
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
EDIT: Attachment removed. See below for newer attachment - version 1.1 dated 16/03/04.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote
Old 03-12-2004, 12:27 PM   #6
Konstantine
Green Mole
 
Join Date: Mar 2004
Location: Russia
Posts: 21
Little bug in new admin panel

Hi over there!

Little bug in admin panel, doesn't work changing language, cause in config.php used double quotes, but trying to change with single.

change in config.php:

PHP Code:
$phpdig_language "en"// cs, da, de, en, es, fr, gr, it, nl, no, pt, ru 
on

PHP Code:
$phpdig_language 'en'// cs, da, de, en, es, fr, gr, it, nl, no, pt, ru 
------

Another one, if server configured to add slashes, changing won't work. To make it work, needs to change file config_set.php:

PHP Code:
function replacer($search,$replace){    
    
$search stripslashes($search);
    
$replace stripslashes($replace);
    
$filename="../includes/config.php";

    ... 

Now it works (for me )

Last edited by Konstantine; 03-12-2004 at 12:35 PM.
Konstantine is offline   Reply With Quote
Old 03-12-2004, 01:00 PM   #7
Konstantine
Green Mole
 
Join Date: Mar 2004
Location: Russia
Posts: 21
Windows-1251 and language change

Won't work corrent untill you make changes in libs/htmlmetas.php, line 5:

PHP Code:
$phpdig_language_array = array('cs''da''de''en''es''fr''gr''it''nl''no''pt''ru'); 
---
Have a nice day
Konstantine is offline   Reply With Quote
Old 03-13-2004, 07:37 AM   #8
Konstantine
Green Mole
 
Join Date: Mar 2004
Location: Russia
Posts: 21
showing correct default number of index depth

in index.php:

code:

PHP Code:
<?php
//select list for the depth limit of spidering
for($i 0$i <= SPIDER_MAX_LIMIT$i++) {
    print 
"\t<option value=\"$i\" selected>$i</option>\n";
?>
changing on:

PHP Code:
<?php
//select list for the depth limit of spidering
for($i 0$i <= SPIDER_MAX_LIMIT$i++) {
    if(
$i!=SPIDER_DEFAULT_LIMIT)
        print 
"\t<option value=\"$i\">$i</option>\n";
    else
        print 
"\t<option value=\"$i\" selected>$i</option>\n";
?>

Last edited by Konstantine; 03-13-2004 at 08:15 AM.
Konstantine is offline   Reply With Quote
Old 03-16-2004, 01:42 PM   #9
manfred
Orange Mole
 
Join Date: Nov 2003
Posts: 42
Hi

Thanks for pointing these out. You are the first one who has responded in any way!

New version 1.1 is now available from my web page with corrections. And there is some new features added also.

Keep posting any odds you can find

-m-

P.S. Charter can you update that attachment - again?!
manfred is offline   Reply With Quote
Old 03-25-2004, 06:48 PM   #10
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
FYI: Previous admin panel attachments removed - version 1.1 dated 16/03/04 attached below.
Attached Files
File Type: zip admin_panel_1-1.zip (25.0 KB, 87 views)
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote
Old 03-25-2004, 06:48 PM   #11
jerrywin5
Orange Mole
 
Join Date: Mar 2004
Posts: 48
Really cool!

None of the "Clean..." buttons or the "Statistics" buttons work for me on Firefox. I love the idea of confirmation though. It would be nice to include delete confirmation when deleting a site from the list of sites. There could even be a check box setting next to the "Delete site" button and you could use JS to use confirmation on deletes based on the value of the check box. That way, users can quickly change the setting based upon what they are doing.

I can see where a ton of other configuration settings could be added as well. Personally, I'd like to see a separate page from the index page for setting configuration settings. Changing settings and managing indexing seem like two different tasks to me. With the addition of even more configuration settings, the index would start to become more complicated.
jerrywin5 is offline   Reply With Quote
Old 03-29-2004, 10:10 PM   #12
ikbenivo
Green Mole
 
Join Date: Feb 2004
Posts: 1
I'm using the first version. Can you please tell me what has changed in version 1.1?
ikbenivo is offline   Reply With Quote
Old 04-20-2004, 09:40 AM   #13
manfred
Orange Mole
 
Join Date: Nov 2003
Posts: 42
Hi

Thanks for using my mod. Please see previous posts where is link to my web pages - there is always latest info.

Manfred
manfred is offline   Reply With Quote
Old 04-22-2004, 12:46 PM   #14
konare
Green Mole
 
Join Date: Dec 2003
Posts: 3
I just configured it, and I like the changes to the admin site. I will definitely keep it, thanks for sharing it.
konare is offline   Reply With Quote
Old 05-13-2004, 01:39 PM   #15
manfred
Orange Mole
 
Join Date: Nov 2003
Posts: 42
Updated version available from here.

This has now new login/logoff system integrated + some other enhancements and options.

Any comments or requests?

- manfred -
manfred is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
admin options mikeduff Mod Requests 3 06-09-2004 03:39 PM
problems indexing command line vs. admin panel obottek Troubleshooting 1 04-10-2004 03:01 PM
Clear logs from admin panel manfred Mod Submissions 2 02-25-2004 06:15 AM
Version info to admin panel manfred Mod Requests 1 02-19-2004 01:18 PM


All times are GMT -8. The time now is 07:57 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.