php - Cloud9 cloud IDE and CakePHP -
i attempting cakephp running on cloud9, cloud based ide. unaware, cloud collaboration ide intermixes services such bitbucket. site gives sudo rights, , installed cakephp using these instructions:
https://www.digitalocean.com/community/tutorials/how-to-install-cakephp-on-an-ubuntu-12-04-vps
when attempt run database exported machine cakephp installed, error message "url rewriting not configured on server." attempted solve issue using official guide cakephp:
http://book.cakephp.org/2.0/en/installation/url-rewriting.html
but no cigar, same error message. has gotten cakephp working, or aware of cloud ide free/low cost cloud9 support cakephp?
here's how got working now:
sudo apt-get update sudo apt-get install php5-intl curl -ss https://getcomposer.org/installer | php -- --filename=composer ./composer create-project --prefer-dist cakephp/app
this creates project in /app default. move workspace docroot:
mv app/* ./ mv app/.* ./ rm -rf app
then default url rewriting worked expected. hth
Comments
Post a Comment