[TYPO3-50-general] No backend on ubuntu server

Peter Beernink p.beernink at drecomm.nl
Wed Dec 15 11:15:21 CET 2010


Kevin Walter wrote:
> Hi peter,
>
> I think its a rewrite problem,
> the thing is, when i click te backend link it goes too
> http://<host>/typo3/login
>
> but it needs to go to http://<host>/index.php/typo3/login
>
> here is a copy of my htaccess file, can you please take a look at it and
> maybe correct it
I think I might know what is causing the issue.
IIRC default Ubuntu does not allow for .htaccess files to be parsed.
Can you check the config of your vhost and check for the AllowOverride 
setting

The configuration of my vhost is as follows:

<VirtualHost *:80>
         ServerAdmin webmaster at localhost
         ServerName phoenix-sprint5.local

         DocumentRoot /var/www/vhosts/phoenix-sprint5/Web
         <Directory />
                 Options FollowSymLinks
                 AllowOverride None
         </Directory>
         <Directory /var/www/vhosts/phoenix-sprint5/>
                 Options Indexes FollowSymLinks MultiViews
                 AllowOverride All
#               SetEnv FLOW3_CONTEXT Development

                 SetEnv FLOW3_CONTEXT Production
         </Directory>

         ErrorLog /var/log/apache2/error.log

         # Possible values include: debug, info, notice, warn, error, crit,
         # alert, emerg.
         LogLevel warn

         CustomLog /var/log/apache2/access.log combined

</VirtualHost>


More information about the TYPO3-project-5_0-general mailing list