Sitedown - What is my IP address?
Posted: Mon Nov 02, 2009 10:11 am
I'm currently using the
Site Admin -> Global Settings -> Sitedown Settings
in order to lock down access to a site I'm developing however I have a bit of an issue that my IP keeps on changing so I've ended up dumping in a quick little hack to show my current IP address on this page
Into /admin/siteprefs.php I've dumped in
and into siteprefs.tpl
obviously a quick hack but handy for me to have it on the page there just thought I'd share
edit: corrected typo
Site Admin -> Global Settings -> Sitedown Settings
in order to lock down access to a site I'm developing however I have a bit of an issue that my IP keeps on changing so I've ended up dumping in a quick little hack to show my current IP address on this page
Into /admin/siteprefs.php I've dumped in
Code: Select all
$smarty->assign('whatismyip',getenv("REMOTE_ADDR"));
Code: Select all
<br/>
Your IP address is: {$whatismyip}
<br />
<br />
edit: corrected typo