There are many different server configurations and I too have had problems installing cakephp. I guess the first step would be to see if php is working. You could do that by placing a php file there with the code <?php phpinfo(); ?>. That should print out a bunch of your php settings.
If you httpdocs is your webroot for the subdomain and you placed the cakephp files directly into the httpdocs folder, then the directory structure would look something like httpdocs/app for the app root. Then, assuming that the mod_rewrite module is enabled in apache, you should be able to just go to http://dev.domain.com and cake should appear. This requires that the .htaccess files be there. If you cannot see them, it may be because files that begin with "." are hidden by default in osx so you wouldn't be able to see them in your ftp client unless you adjust your settings. If the apache mod_rewrite module is not enabled (you can check that with the test php file created earlier), then the url should be something like http://dev.domain.com/index.php/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
