StartBBS后台是什么?

虎友们,StartBBS后台是什么?


求告知!!!


StartBBS官网木有找到答案


求解!!!



重新安装倒是可以获得后台地址,可是太麻烦了!!!


StartBBS官网:http://bbs.startbbs.com

请现在有电脑的友友在本地安装一下,把后台告诉我,谢谢大家


210bed42524a3e148bfbc8349c7314a1.jpg

网站主目录截图
回复列表(18|隐藏机器人聊天)
  • @Ta / 2015-05-21 / /
    没有人知道吗?
  • @Ta / 2015-05-21 / /
    没有人知道吗?
  • c
    @Ta / 2015-05-21 / /
    /admin?
  • @Ta / 2015-05-21 / /
    @c,不是,因为StartBBS程序没有admin目录。。。
  • @Ta / 2015-05-21 / /
    @飞炫的火花,应该在首页,你查看下首页的代码试试
  • @Ta / 2015-05-21 / /
    登陆管理员账号后有后台地址
  • @Ta / 2015-05-21 / /
    @米者,太乱看不懂
  • @Ta / 2015-05-21 / /
    @Dieinwarm,官网回复有后台链接,可是我翻了遍都没找到
  • @Ta / 2015-05-21 / /
    @飞炫的火花,index.php打出来
  • @Ta / 2015-05-21 / /
    @米者

    <?php
    header('Content-Type: text/html; charset=utf-8');//强制输出utf8
    define('ENVIRONMENT', 'development');
    /*
     *---------------------------------------------------------------
     * 错误报告
     *---------------------------------------------------------------
     */
    
    if (defined('ENVIRONMENT'))
    {
    	switch (ENVIRONMENT)
    	{
    		case 'development':
    			error_reporting(E_ALL);
    		break;
    
    		case 'testing':
    		case 'production':
    			error_reporting(0);
    		break;
    
    		default:
    			exit('The application environment is not set correctly.');
    	}
    }
    
    /*
     *---------------------------------------------------------------
     * 系统文件夹
     *---------------------------------------------------------------
     *
     * This variable must contain the name of your "system" folder.
     * Include the path if the folder is not in the same  directory
     * as this file.
     *
     */
    	$system_path = 'system';
    
    /*
     *---------------------------------------------------------------
     * 应用文件夹
     *---------------------------------------------------------------
     *
     * If you want this front controller to use a different "application"
     * folder then the default one you can set its name here. The folder
     * can also be renamed or relocated anywhere on your server.  If
     * you do, use a full server path. For more info please see the user guide:
     * /user_guide/general/managing_apps.html
     *
     * NO TRAILING SLASH!
     *
     */
    	$application_folder = 'app';
    
    /*
     * --------------------------------------------------------------------
     * DEFAULT CONTROLLER
     * --------------------------------------------------------------------
     *
     * Normally you will set your default controller in the routes.php file.
     * You can, however, force a custom routing by hard-coding a
     * specific controller class/function here.  For most applications, you
     * WILL NOT set your routing here, but it's an option for those
     * special instances where you might want to override the standard
     * routing in a specific front controller that shares a common CI installation.
     *
     * IMPORTANT:  If you set the routing here, NO OTHER controller will be
     * callable. In essence, this preference limits your application to ONE
     * specific controller.  Leave the function name blank if you need
     * to call functions dynamically via the URI.
     *
     * Un-comment the $routing array below to use this feature
     *
     */
    	// The directory name, relative to the "controllers" folder.  Leave blank
    	// if your controller is not in a sub-folder within the "controllers" folder
    	// $routing['directory'] = '';
    
    	// The controller class file name.  Example:  Mycontroller
    	// $routing['controller'] = '';
    
    	// The controller function you wish to be called.
    	// $routing['function']	= '';
    
    
    /*
     * -------------------------------------------------------------------
     *  CUSTOM CONFIG VALUES
     * -------------------------------------------------------------------
     *
     * The $assign_to_config array below will be passed dynamically to the
     * config class when initialized. This allows you to set custom config
     * items or override any default config values found in the config.php file.
     * This can be handy as it permits you to share one application between
     * multiple front controller files, with each file containing different
     * config values.
     *
     * Un-comment the $assign_to_config array below to use this feature
     *
     */
    	// $assign_to_config['name_of_config_item'] = 'value of config item';
    
    
    
    // --------------------------------------------------------------------
    // END OF USER CONFIGURABLE SETTINGS.  DO NOT EDIT BELOW THIS LINE
    // --------------------------------------------------------------------
    
    /*
     * ---------------------------------------------------------------
     *  Resolve the system path for increased reliability
     * ---------------------------------------------------------------
     */
    
    	// Set the current directory correctly for CLI requests
    	if (defined('STDIN'))
    	{
    		chdir(dirname(__FILE__));
    	}
    
    	if (realpath($system_path) !== FALSE)
    	{
    		$system_path = realpath($system_path).'/';
    	}
    
    	// ensure there's a tr
    ?>
    
  • @Ta / 2015-05-21 / /
    ?admin/login
  • @Ta / 2015-05-21 / /
    @高手,不行,这不是后台,还是停留在首页
  • @Ta / 2015-05-21 / /
    @飞炫的火花,试试这个index.php?/admin/login/do_login
  • @Ta / 2015-05-21 / /
    @飞炫的火花,admin/login/do_login
  • @Ta / 2015-05-21 / /
    @高手,晚了一步,重装了
  • @Ta / 2015-05-21 / /
    @高手,还是很感谢!!!
  • @Ta / 2015-05-21 / /
    @飞炫的火花,这程序不错,
  • @Ta / 2015-05-21 / /
    @高手,我看中的就是这个程序的简洁,建小型论坛足以,不需要dz
添加新回复
回复需要登录