He wanted you to check if a .htaccess file is present (and readable to the webserver) E:/Pfad/zum/Projekt/.htaccess
Another thing that could give a clue is to look at the source of the front page of your application. Look at where the css, javascript, images and links point. I would also suggest you point the DocumentRoot to the app/webroot folder of your application. This is generally speaking the best root for a Cake app since all application php files will be outside the exposed folders. It may also fix your problem... at least that setup has never failed to work for me. /Martin On Oct 16, 8:35 am, Arndtinho <[EMAIL PROTECTED]> wrote: > Hello, > > thanks for your answer. > What do you mean with ".htaccess in your webroot virtual site"? > > I have in my apache config following: AccessFileName .htaccess > Or should it be in the virtual host configuration? > > Regards > Arndtinho > > On 16 Okt., 01:00, francky06l <[EMAIL PROTECTED]> wrote: > > > Usually mod-rewrite is in the htaccess, be sure you have > > proper .htaccess in your webroot virtual site.... > > (you can also turn on the rewrite log on apache, and check if > > something is wrong).. > > > hth > > > On Oct 15, 10:13 pm, Arndtinho <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > I reconfigured my new workstation with Cake. > > > Following transfering my projects I tested one. > > > But the site is displayed without the CSS definitions and the > > > includes. > > > I was first exposed mod_rewrite is disabled but it's enabled. And if > > > I > > > callhttp://myproject/css/main.css, the content of the css file is > > > displayed > > > at the browser. > > > What could be the reason for this behavior? > > > Here my virtual host configuration: > > > > <VirtualHost *:80> > > > ServerAdmin [EMAIL PROTECTED] > > > DocumentRoot "E:/Pfad/zum/Projekt" > > > ServerName myproject > > > ServerAlias 127.0.0.1 > > > ErrorLog "E:/Pfad/zum/Projekt/logfiles/profil_error.log" > > > CustomLog "E:/Pfad/zum/Projekt/logfiles/profil_access.log" common > > > > <Directory "E:/Pfad/zum/Projekt/"> > > > AllowOverride All > > > Options +FollowSymLinks > > > Order deny,allow > > > Allow from all > > > Satisfy all > > > </Directory> > > > </VirtualHost> > > > > System: WinXP, Apache2 (mod_rewrite enabled), CakePHP 1.1 > > > > Regards > > > Arndtinho- Zitierten Text ausblenden - > > > - Zitierten Text anzeigen - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
