Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
6 |
kaklik |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
if(is_file("install.php")){
|
|
|
4 |
echo("There is install.php. If you have installed g-shout, you MUST delete install.php (or rename it to anything) and then you can go to Admin Control Panel directly.<br />But if you have not installed g-shout yet, read the README.txt file inside \"docs\" directory and then run install.php to check the required files. <br /><br />");
|
|
|
5 |
echo ("<a href='admin.php'>click here to Login to Admin Control Panel</a> (delete install.php first)<br />");
|
|
|
6 |
echo ("<a href='install.php'>click here to run install.php</a><br />");
|
|
|
7 |
} else {
|
|
|
8 |
header("Location: admin.php");
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
?>
|