Changing URL from localhost to...
Hi everyone hopefully this is an easy one for some of you php apache gurus out there. I am running vanilla(latest version) on a XAMPP lite box. setup was done with these directions http://lussumo.com/docs/doku.php?id=vanilla:installing and everything seems fine. Except now I want to change the URL to something you know not localhost/vanille. So I have found this post http://lussumo.com/community/discussion/3856/can-i-move-the-vanilla-folder/#Item_6 and followed "Mark Oct 18th 2006" post regarding the conf/settings.php modifications. This works fine and for the base URL but all of the other pages fail like catagories or validated_users_url. Is there another config file that needs to be changed for everything else to resolve now? Thanks for any help out there.
0
This discussion has been closed.
Comments
$Configuration['DEFAULT_STYLE'] = '/Vanilla/themes/vanilla/styles/default/'; $Configuration['WEB_ROOT'] = '/Vanilla/'; $Configuration['BASE_URL'] = 'http://localhost/Vanilla/'; $Configuration['FORWARD_VALIDATED_USER_URL'] = 'http://localhost/Vanilla/'; $Configuration['COOKIE_DOMAIN'] = ''; $Configuration['COOKIE_PATH'] = '/Vanilla/';
$Configuration['DEFAULT_STYLE'] = '/themes/vanilla/styles/default/'; $Configuration['WEB_ROOT'] = '/'; $Configuration['BASE_URL'] = 'http://example.com/'; $Configuration['FORWARD_VALIDATED_USER_URL'] = 'http://example.com/'; $Configuration['COOKIE_DOMAIN'] = 'example.com'; $Configuration['COOKIE_PATH'] = '/';