12345678910111213141516171819202122232425 |
- <?php
- define('APP_PATH', __DIR__ . '/../application/');
- if (!file_exists(APP_PATH . 'admin/command/Install/install.lock'))
- {
- header("location:./install.php");
- exit;
- }
- require __DIR__ . '/../thinkphp/start.php';
|