Datawalke / Coordino

Self-hosted Knowledge Software your question & answer system written on top of the CakePHP Framework
http://coordino.com
MIT License
714 stars 173 forks source link

installation on webfraction #3

Closed umut77 closed 10 years ago

umut77 commented 13 years ago

hi tried to install on webfraction today , url is here http://www.anadolunetwork.com/,

http://www.anadolunetwork.com/install/database-config turns to 404 not found

Datawalke commented 13 years ago

umut77,

Would you be able to download the most recent source? It appears the .htaccess file that was needed for mod_rewrite to route the URLs correctly was accidentally omitted from the initial commit.

File: /.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$ app/webroot/    [L]
    RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>
umut77 commented 13 years ago

fixed anyone who os trying to install on webfraction .htaccess should be

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^$ app/ [L]
    RewriteRule (.*) app/$1 [L]
</IfModule>
fredmalone commented 12 years ago

I have tried all of the suggestions regarding the mod_rewrite. This isn't solving the issue of no install/database-config path. In fact, there is no install folder at all. Did this not get committed?

twslankard commented 12 years ago

I had this problem as well.

I was able to resolve it by editing my Apache virtual host configuration, and changing

AllowOverride None

to

AllowOverride All

In other words, my Apache configuration was preventing the .htaccess file from doing its thing.

Datawalke commented 12 years ago

Thank you Tom!

On Apr 23, 2012, at 3:04 PM, Tom Slankardreply@reply.github.com wrote:

I had this problem as well.

I was able to resolve it by editing my Apache virtual host configuration, and changing

AllowOverride None

to

AllowOverride All

In other words, my Apache configuration was preventing the .htaccess file from doing its thing.


Reply to this email directly or view it on GitHub: https://github.com/Datawalke/Coordino/issues/3#issuecomment-5288864