Problems, need help? Have a tip or advice? Post it here.
4 posts Page 1 of 1
I am trying to migrate a local couch install to a live test server. i have the database set up correctly i believe, the ion cube loaders are up. the web host only have v3 loaders i dont know if couch needs v4 or not? the problem i have is that when i go to install it using myhost/couch/
i dont get the install page only a log in page with no graphics.
i have deleted and reinstalled all files to server but i keep getting this same thing happening. any help would be appreciated
Hi,

This happens on some rare occasions when Couch fails to figure out the URL it is running on correctly (hence the paths for CSS and images turn up wrong and ergo the problem you have).

It can be easily corrected by lending a helping hand to Couch.
Please open up the config.php file in your installation folder and find the following lines:
Code: Select all
    // 1.
    // If neccesary, define the full URL of your site including the subdomain, if any.
    // V.IMP: Don't forget the trailing slash!
    //define( 'K_SITE_URL', 'http://www.test.com/subfolder1/subfolder2/mysite/' );


uncomment the 'define' and add the URL of your site. Thus if your site, for example, is http://www.yourdomain.com/, the code will become
Code: Select all
    // 1.
    // If neccesary, define the full URL of your site including the subdomain, if any.
    // V.IMP: Don't forget the trailing slash!
    define( 'K_SITE_URL', 'http://www.yourdomain.com/' );

Please let me know if this helps.
yes that worked just fine. only bug i have right now is since i placed my images in my blog on a localhost now that i have uploaded it to the live server it is still pointing to localhost location. i will go thru and redirect to the new location, i dont know any easier way to do this unless you guys have a hint to update without doing it manually. anyway maybe in a future version there will be a way to use ck editor and not have this problem.
thank you for the help.tim
Hi Tim,

Thank you for posting back.

We are actually in the process of addressing this problem with images being saved with full path.
The upcoming version will have this feature as well as an importer for migrating whole site from one domain to another without pain.

Thanks
4 posts Page 1 of 1