settings.yml
------------------
prod:
.settings:
no_script_name: on
dev:
.settings:
# E_ALL | E_STRICT = 4095
error_reporting: 4095
web_debug: on
cache: off
no_script_name: off
etag: off
staging:
.settings:
# E_ALL | E_STRICT = 4095
error_reporting: 4095
web_debug: on
cache: on
no_script_name: off
etag: off
test:
.settings:
# E_ALL | E_STRICT & ~E_NOTICE = 2047
error_reporting: 2047
cache: off
web_debug: off
no_script_name: off
etag: off
all:
.actions:
login_module: sfGuardAuth
login_action: signin
secure_module: default # To be called when a user
doesn't have
secure_action: secure # The credentials required for an
action
.settings:
enabled_modules: [default, sfGuardAuth, sfGuardUser,
cryptographp, sf$
escaping_strategy: bc
#escaping_method: ESC_ENTITIES
On Oct 28, 8:06 pm, "Amit Rana" <[EMAIL PROTECTED]> wrote:
> can you also post frontend's settings.yml?
>
> On 10/28/07, cleve <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Hi everyone,
>
> > Im having real trouble trying to get URL Rewriting working on my
> > redhat apache2 prod server.
>
> > When going to:
> >http://fuzzed/static/watch
>
> > it just displays
> > "Not Found
> > The requested URL /chart was not found on this server."
>
> > Buthttp://fuzzed/index.php/static/watchworks fine.
>
> > mod_rewrite is built-in so don't need to load it, it comes up on
> > phpinfo() so is definatly there.
>
> > Any help would be much appreciated!
>
> > John Cleveley
>
> > Here's my configs...
>
> > .htaccess - tried messing with permissions but still no go
> > ---------------
>
> > Options +FollowSymLinks +ExecCGI
>
> > <IfModule mod_rewrite.c>
> > RewriteEngine On
>
> > # uncomment the following line, if you are having trouble
> > # getting no_script_name to work
> > RewriteBase /
>
> > # we skip all files with .something
> > RewriteCond %{REQUEST_URI} \..+$
> > RewriteCond %{REQUEST_URI} !\.html$
> > RewriteRule .* - [L]
>
> > # we check if the .html version is here (caching)
> > RewriteRule ^$ index.html [QSA]
> > RewriteRule ^([^.]+)$ $1.html [QSA]
> > RewriteCond %{REQUEST_FILENAME} !-f
>
> > # no, so we redirect to our front web controller
> > RewriteRule ^(.*)$ index.php [QSA,L]
> > </IfModule>
>
> > # big crash from our front web controller
> > ErrorDocument 500 "<h2>Application error</h2>symfony application
> > failed
> > to star$
>
> > virtual host - at end of httpd.conf
> > ---------------
>
> > <VirtualHost fuzzed:80>
>
> > ServerName fuzzed:80
> > DocumentRoot /home/html/fuzzed/web
> > DirectoryIndex index.php
> > #Using simlink for sf files
> > #ErrorLog /var/log/apache2/error.log
> > #CustomLog /var/log/apache2/access.log combined
>
> > <Directory "/home/html/fuzed/web/sf">
> > AllowOverride All
> > Allow from All
> > </Directory>
>
> > <Directory "/home/html/fuzzed/web">
> > AllowOverride All
> > Allow from All
> > </Directory>
>
> > </VirtualHost>
>
> --
> w:www.techjini.com|www.valuejini.com|www.techjini.org
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" 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/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---