Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I am new to drupal. I installed acquia latest version. Now I am installing drupal 7.8, which I downloaded from drupal website, so that it will work with acquia. When I try to import drupal 7 folder in acquia control panel, it displays this error "myweb.localhost:8082/install.php Application not found"
I added the following to my .htaccess file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/new-site/.*
RewriteRule ^(.*)$ /new-site/index.php?q=$1 [L,QSA]
In terminal I added a sym link to point to the new directry: ln -s . new-site
I have a Ubuntu 10.04 server with LAMP installed, but it is not serving the install.php page - browser tries to download the file instead of displaying it.
I've created a testphp file that should display phpinfo but this is treated in the same way.
Is this something to do with the permissions on the drupal folders? Or maybe on /var/www?
Does anyone have a similar problem, or a solution to this?