I can't offer any GoDaddy specific advice, but I am running Cake apps in a
shared hosting environment. If GoDaddy runs Apache, you need to change the
DocumentRoot for your virtual host. In the httpd.conf (or more likely an
httpd.include or vhost.conf file for your virtual host) add something like
this:
DocumentRoot /path/to/cake_app/app/webroot
In my setup, I also needed to set some Directory configuration:
<Directory /path/to/cake_app/app/webroot>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/path/to/cake_app:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/path/to/cake_app:/tmp"
</IfModule>
Options -Includes -ExecCGI
</Directory>
AceStudio-2 wrote:
>
>
> A client of mine purchased a web hosting package on GoDaddy but after
> i uploaded the application on it... it wasn't working. i have been
> racking my head on how to make it work but all to no avail.
>
> I need to know who has successfully hosted on a GoDaddy server, so the
> person could tell me how he tweaked the server.
> >
>
>
--
View this message in context:
http://www.nabble.com/Hosting-A-Cake-App-On-GoDaddy%21-tp19954617p19959977.html
Sent from the CakePHP mailing list archive at Nabble.com.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---