Gii Generated Forms And Url Manager Ruyles

Please see info below. Still waiting for someone to respond.

Is AllowOverride set to All instead of None for the site?

Put your code in code boxes, please. It’s currently unreadable. :)

Yes my httpd.conf has:

<Directory /var/www/xxx.com/>

	Options Indexes FollowSymLinks


	AllowOverride All


	Order allow,deny


	Allow from all

</Directory>

Does anyone have any ideas why my controller/actions arent working?

My httpd.conf has:

<Directory /var/www/xxx.com/>

Options Indexes FollowSymLinks

AllowOverride All

Order allow,deny

Allow from all

</Directory>

The document root htaccess has:

Options +FollowSymLinks

IndexIgnore /

RewriteEngine on

if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

otherwise forward it to index.php

RewriteRule . index.php

main/config is as follows:

‘urlManager’=>array(

‘urlFormat’=>‘path’,

‘showScriptName’=>false,

‘rules’=>array(

‘<controller:\w+>/<id:\d+>’=>’<controller>/view’,

‘<controller:\w+>/<action:\w+>/<id:\d+>’=>’<controller>/<action>’,

‘<controller:\w+>/<action:\w+>’=>’<controller>/<action>’,

),

),

Not all actions in my controller are reachable.

My deadline is approaching, am new to Yii have worked with other MVC frameworks in the past and have never experienced such issues.

Thanks so much!

[/size]

Is there any difference between these actions?

Do you get any errors or what exactly happens?