我刚刚将我的应用程序上传到我的托管帐户,该帐户由hostinger
提供。您可以看到链接here。
配置文件:
<?php
class SystemConfiguration {
// General Settings
public static $base_url = 'http://primodebug.esy.es/Calendario/';
// Database Settings
public static $db_host = 'mysql.hostinger.it';
public static $db_name = 'u460105738_primo';
public static $db_username = 'u460105738_ferve';
public static $db_password = '*****';
CodeIgniter config.php file(此处粘贴时间太长了。)
的.htaccess
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
我还有其他问题记录可能相关的文件.httaccess我不知道,但似乎有些javascript文件没有正确加载。可能是什么?
答案 0 :(得分:0)
首先要查看的是/application/config/config.php,其中项$config['base_url']
应设置为您的主机帐户。
$config['base_url'] = 'http://primodebug.esy.es/';
如果设置如图所示,那么您的代码中的其他地方都有硬编码的“localhost”。
在此示例中,需要在加载SystemConfiguration之前加载Codeigniter的“URL Helper”。因此在加载SystemConfiguration之前在某处运行$this->load->helper('url');
。或者,它可以在SystemConfiguration的构造函数中完成,如下所示。
<?php
class SystemConfiguration {
// General Settings
public static $base_url;
// Database Settings
public static $db_host = 'mysql.hostinger.it';
public static $db_name = 'u460105738_primo';
public static $db_username = 'u460105738_ferve';
public static $db_password = '*****';
}
function __construct()
{
$this->CI->load->helper('url');
$this->base_url = base_url('Calendario/')
}