Page 1 of 1

move admin area, and hide php info

Posted: Fri Jan 02, 2009 5:49 am
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

Re: move admin area, and hide php info

Posted: Fri Jan 02, 2009 9:19 am
by garvinhicking
Hi!

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

Regards,
Garvin

Re: move admin area, and hide php info

Posted: Fri Jan 02, 2009 3:26 pm
by tux
thanks! works fine.. :D