cakephp css not working

2009-08-14 Thread srini vasan
hi, i have downloaded cakephp stable version. I have just typed http://localhost/cakephp in my browser. but css file not running.please replay me what to do to solve this problem. --~--~-~--~~~---~--~~ You received this message because you are

Re: cakephp css not working

2009-08-14 Thread Brendon Kozlowski (Realm)
The most common cause is that mod_rewrite is not enabled. Make sure mod_rewrite is enabled, restart the server, and try again. On Aug 14, 1:59 am, srini vasan srinivas_...@yahoo.co.in wrote: hi,     i have downloaded cakephp stable version.    I have just typedhttp://localhost/cakephpin my

Re: CSS not working out the box

2007-07-12 Thread ReiToei
I had the same problem just now... turns when I unzipped the archive, the .htaccess file didn't get expanded (or didn't come in the archive, I'm not sure). I used Stuffit expander on OS X. All I did to fix it was drop to a command line and copy the .htaccess file from another cake install to the

Re: CSS not working out the box

2007-07-11 Thread Harro
Thanks all for the replys, it turned out for some reason mod_rewrite had been turned off. Its working fine now. On Jul 3, 4:43 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I believe Harro and I are having the exact same problem. I am trying to run this as a development setup .When I point

CSS not working out the box

2007-07-03 Thread Harro
I have just downloaded the latest stable release from cakephp.org: cake_1.1.15.5144.zip and unzipped it into my webroot, however, there is no css styling what so ever? Is there any configurations I have to make to get it working? Thanks, Harro.

Re: CSS not working out the box

2007-07-03 Thread Walker Hamilton
If you've done a default install of cakephp on your local machine and css is not working, check a couple things: 1. do you have mod_rewrite active? 2. which index.php page is getting loaded? /cakephp_xxx/index.php or cakephp_xxx/app/index.php On Jul 3, 7:24 am, Harro [EMAIL PROTECTED] wrote

Re: CSS not working out the box

2007-07-03 Thread Paul R. Zwiers
If you've done a default install of cakephp on your local machine and css is not working, check a couple things: 1. do you have mod_rewrite active? 2. which index.php page is getting loaded? /cakephp_xxx/index.php or cakephp_xxx/app/index.php And also check 3. Can you reach

Re: CSS not working out the box

2007-07-03 Thread [EMAIL PROTECTED]
I believe Harro and I are having the exact same problem. I am trying to run this as a development setup .When I point the browser to 'localhost/cake' and I look at the source, I see the following: link rel=stylesheet type=text/css href=/css/cake.generic.css / Clearly, this is pointing to

Re: CSS not working

2007-06-10 Thread Gonzalo Servat
On 6/10/07, pbland [EMAIL PROTECTED] wrote: Pablo, Great, that worked! Thanks for the help. Can you tell me where $html- css() is described in the Manual? I looked on the Helper page and I see mention of $html functions, but it mentions 4 parms for the css function, so I don't know if this

Re: CSS not working

2007-06-10 Thread Pablo Viojo
Also, you can take a look at the API[1] Pablo [1] http://api.cakephp.org/ On 6/10/07, Gonzalo Servat [EMAIL PROTECTED] wrote: On 6/10/07, pbland [EMAIL PROTECTED] wrote: Pablo, Great, that worked! Thanks for the help. Can you tell me where $html- css() is described in the Manual?

CSS not working

2007-06-09 Thread pbland
I'm having a problem with my CSS file not being found or being applied for a view that is initiated from a link in index.php . Here's how I have my app configured: In routes.php I have / mapped to: array('controller' = 'accounts', 'action' = 'index') When I got to the index.thtml page, the page

Re: CSS not working

2007-06-09 Thread Pablo Viojo
When you are accessing /accounts/login/ the css/style.css become /accounts/login/css/style.css so it's not found (you are using a relative path for it). It will be better if you use the cakephp's buit-in function for including a css file $html-css('css_file_without_css_extension'); -- Pablo

Re: CSS not working

2007-06-09 Thread pbland
Pablo, Great, that worked! Thanks for the help. Can you tell me where $html- css() is described in the Manual? I looked on the Helper page and I see mention of $html functions, but it mentions 4 parms for the css function, so I don't know if this is the correct one. Thanks!