As the title says above I'm getting this error on my site:
It's basically a blank error saying HTTP Error 500.
Any help would be great!
It's basically a blank error saying HTTP Error 500.
PHP:
<?php
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
$_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.
$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host
$_CONFIG['mysql']['username'] = 'root'; //MySQL username
$_CONFIG['mysql']['password'] = ''; //MySQL password
$_CONFIG['mysql']['database'] = 'roleplay'; //MySQL database
$_CONFIG['mysql']['port'] = '3306'; //MySQL's port
/*
*
* Hotel management - All URLs do not end with an "/"
*
*/
$_CONFIG['hotel']['url'] = 'http://localhost'; //Does not end with a "/"
$_CONFIG['hotel']['name'] = 'FluxRP';
$_CONFIG['hotel']['server_ip'] = '127.0.0.1';
$_CONFIG['hotel']['cdnurl'] = 'http://localhost';
$_CONFIG['hotel']['name'] = 'FluxRP';
$_CONFIG['hotel']['facebook'] = '';
$_CONFIG['hotel']['in_maint'] = false;
$_CONFIG['hotel']['motto'] = 'Civilian';
$_CONFIG['hotel']['credits'] = 10;
$_CONFIG['hotel']['pixels'] = 0;
$_CONFIG['hotel']['look'] = 'hd-180-1.ch-210-66.lg-270-82.sh-290-91.hr-100';
$_CONFIG['template']['style'] = 'Theme';
$_CONFIG['hotel']['online_text'] = 'Civilian(s) Online!';
?>