4 Star 2 Fork 4

jink2005 / AISChatBot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
jink2005 提交于 2013-09-27 22:39 . Init AISChatBot with Program-O.
<?php
/***************************************
* http://www.program-o.com
* PROGRAM O
* Version: 2.3.1
* FILE: index.php
* AUTHOR: Elizabeth Perreau and Dave Morton
* DATE: 02-13-2013
* DETAILS: Program O's starting point
***************************************/
if (!file_exists('config/global_config.php'))
{
# No config exists we will run install
header('location: install/install_programo.php');
}
else
{
# Config exists we will goto the bot
$thisFile = __FILE__;
require_once('config/global_config.php');
$format = strtoupper($format);
switch ($format)
{
case 'JSON':
$gui = 'jquery';
break;
case 'XML':
$gui= 'xml';
break;
default:
$gui = 'plain';
}
if (!defined('SCRIPT_INSTALLED')) header('location: ' . _INSTALL_URL_ . 'install_programo.php');
elseif (file_exists(_INSTALL_PATH_ . 'upgrade.php')) header('Location: ' . _INSTALL_URL_ . 'upgrade.php?returnTo=' . $gui);
else header("location: gui/$gui");
}
?>
PHP
1
https://gitee.com/jink2005/AISChatBot.git
git@gitee.com:jink2005/AISChatBot.git
jink2005
AISChatBot
AISChatBot
master

搜索帮助