I just deployed a fairly clean Radiant instance to a server, and now the admin style is completely gone. I'm using Phusion Passenger, and it's basically giving a 404 on all the Admin assets: stylesheets, images, & javascripts. Does anyone have any first hand knowledge about what this could be? It does show that the request for the assets is going through Passenger because it's showing up in the Rails log. It is serving the Radiant content correctly though.
on 20.08.2008 23:34
on 21.08.2008 00:51
On Wed, Aug 20, 2008 at 11:33 PM, Josh Schairbaum < mailing-lists@joshuaschairbaum.com> wrote: I just deployed a fairly clean Radiant instance to a server, and now the > admin style is completely gone. I'm using Phusion Passenger, and it's > basically giving a 404 on all the Admin assets: stylesheets, images, & > javascripts. Does anyone have any first hand knowledge about what this > could be? It does show that the request for the assets is going through > Passenger because it's showing up in the Rails log. It is serving the > Radiant content correctly though. Have you enabled mod_rewrite? -- Sincerely, Bjorn Michelsen
on 21.08.2008 01:24
Josh Schairbaum wrote: > I just deployed a fairly clean Radiant instance to a server, and now > the admin style is completely gone. I'm using Phusion Passenger, and > it's basically giving a 404 on all the Admin assets: stylesheets, > images, & javascripts. Does anyone have any first hand knowledge > about what this could be? It does show that the request for the > assets is going through Passenger because it's showing up in the Rails > log. It is serving the Radiant content correctly though. Trash the .htaccess file in the public folder.
on 21.08.2008 02:15
Dennis C. wrote: > > Trash the .htaccess file in the public folder. > > > You can also add AllowOverride none to the <Directory> definition. Sean
on 21.08.2008 02:46
Thanks everyone, I had read about the mod_rewrite compatibility, so that was already disabled. The solution was to comment out the .htaccess file that came with Rails. Thanks for the suggestions everyone!