Hi,
I’ve just moved my site from the dev to the production server.
I followed all the instructions and have most of my variables in the conifg.php file. I’ve double and tripple checked everything (I could think of that is).
The CP works fine - I can edit, publish the works.
But when going to the website it just shows a blank page.
Site: http://www.alpentrekking.ch
PHP Info
<?php
if ( ! defined('EXT')){
exit('Invalid file request');
}
$conf['app_version'] = "168";
$conf['license_number'] = "1234-1234-1234-1234";
$conf['debug'] = "1";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "localhost";
$conf['db_username'] = "web123";
$conf['db_password'] = "pass";
$conf['db_name'] = "usr_web123_4";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['system_folder'] = "****";
$conf['cp_url'] = "http://www.alpentrekking.ch/****/index.php";
$conf['doc_url'] = "http://expressionengine.com/docs/";
$conf['cookie_prefix'] = "";
$conf['is_system_on'] = "y";
$conf['allow_extensions'] = "y";
$conf['multiple_sites_enabled'] = "n";
$conf['htaccess_path'] = "/var/www/web123/html/alpentrekking/.htaccess";
$conf['site_url'] = "http://www.alpentrekking.ch/";
$conf['tmpl_file_basepath'] = "/var/www/web123/html/alpentrekking/****/templates";
$conf['theme_folder_url'] = "http://www.alpentrekking.ch/themes/";
$conf['theme_folder_path'] = "/var/www/web123/html/alpentrekking/themes/";
$conf['captcha_path'] = "/var/www/web123/html/alpentrekking/images/captchas";
$conf['captcha_url'] = "http://www.alpentrekking.ch/images/captchas";
$conf['avatar_path'] = "/var/www/web123/html/alpentrekking/images/members/avatars";
$conf['avatar_url'] = "http://www.alpentrekking.ch/images/members/avatars";
$conf['ft_path'] = "/var/www/web123/html/alpentrekking/****/extensions/fieldtypes/";
$conf['ft_url'] = "/****/extensions/fieldtypes/";
?>On my dev environment I had LG htaccess generator running and it worked fine. On the production server it was throwing a 505 error so I disabled it.
Other than that I haven’t had any problems with extensions - even disabling them all hasn’t helped.
Any ideas?