Progenitura
Progenitura

Reputation: 43

CakePHP: Shared Hosting Dilemma

I'm having trouble with uploading my cakePHP project on a shared hosting ( from hostgator ). Here is what I have done: I've organized my cake distribution like this:

EDIT: Apparently I had problems with the hosting. My URL was something like:

http://gator111.hostgator.com/~username/

and all I had to do was add an extra line in the webroot .htaccess:

RewriteBase /~username/

Thanks for the support.

Upvotes: 4

Views: 2319

Answers (1)

David Tan
David Tan

Reputation: 11

This tutorial is a life saver, I had the same problem that my host name comes with ~username. Now after adding the 'rewriteBase /~username/', works like a charm.

However, before all these, I followed a youtube tutorial by jason talking about how to configure cakephp on shared hosting. Just paste it here in case it helps anybody. http://www.youtube.com/watch?v=4GobWo1rIkE&tracker=False

Upvotes: 1

Related Questions