I am using Zend Framework and running into issues where myAction() is called twice. After spending many hours looking for other developers with same experience it seems that there are some main issues that people have solved. Either:
-*.css / *.js file or favicon is not found, so I tailed the apache access log fiel with no thing to show for.
-Then I looked for images that did not exist that were referenced in any css. No luck there as well.
-Lastly I found that people using ZFDebug were running into issues, but since I am not using that or have it installed this is something I cannot troubleshoot.
Please if anyone has any idea of what I can try to resolve the issue I would grateful if you would share this with me.
UPDATE:
kinghfb and Phil,
Thank you very much for your replies.
Your information was very clear and all very good suggestions. I double checked all my css and js files and since I don't really use partials but have view helpers that was an easy check as well. All were at least 4k and none were empty. I also, tried what Phil suggested changed:
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
to:
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Which also did not solve my problem. I did fail to say earlier that when I disable layout in the action it runs only once. Any other suggestions?
