Hello,
I made a new VMware devbox the other day and noticed an odd issues today
when attempting to use the framework on it.
Something on my new box is causing the framework to lose the action param.
I use a copy of a pre-build centos image, then installed virtualmin/webmin,
installed and setup samba, configured the website home directory to be
shared, then created a project in ZS, and went to making the site modular.
I added this in the Index action of the default index controller :
Zend_Debug::dump($this->getRequest()->getParams());
There is no controller or action for this request, this is falling back to
the default controller, per being set in the application.ini file.
I get the following:
Old Dev: testsite.dev1\atest\somthing
array(3) {
["controller"] => string(5) "atest"
["action"] => string(8) "something"
["module"] => string(7) "default"
}
New Dev: testsite.dev2\atest\somthing
array(2) {
["controller"] => string(5) "atest"
["module"] => string(7) "default"
}
I've tried both version 1.8.3 and 1.9.0 or the frameword with the same
results. I think this means its not a framework direct problem. But what
could be causing it on the server?
I've compared the php.ini files there is nothing that jumps out as a problem
or really that different.
Anyone had this problem before or got any ideas?
Thanks
Terre