I just uploaded my application on my hosting account, the account is provided by hostinger
. You can see the link here.
Configuration file:
<?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 (It's too long to paste here).
.HTACCESS
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
I also have other problems logging probably related files .httaccess I have no idea, but it seems that some javascript files are not loaded properly. What can be?