move admin area, and hide php info

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
tux
Posts: 2
Joined: Fri Jan 02, 2009 5:40 am

move admin area, and hide php info

Post by tux »

i like to move the admin url to.. for example: miweb/admin/ to protect via cpanel..

in my admin log in, its shows my php version, and my s9y version, and i like hide it from anonymouse users.


any help?

I remove this lines:

Code: Select all

    <?php 
            if ($serendipity['expose_s9y']) {
                echo sprintf(ADMIN_FOOTER_POWERED_BY, $serendipity['versionInstalled'], phpversion());
            } else {
                echo sprintf(ADMIN_FOOTER_POWERED_BY, '', '');
            }
            ?>
and still show it
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: move admin area, and hide php info

Post by garvinhicking »

Hi!

Simply set $serendipity['expose_s9y'] = false in your serendipity_config_local.inc.php.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
tux
Posts: 2
Joined: Fri Jan 02, 2009 5:40 am

Re: move admin area, and hide php info

Post by tux »

thanks! works fine.. :D
Post Reply