-
Notifications
You must be signed in to change notification settings - Fork 631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URL Query problem with phalcon serve #1305
Comments
Can you post here the routes that handles |
Here you are: $x_user->add('/login', ['action' => 'login'])->setName('login'); |
@Ultimater would this have anything to do with the changes you've made? |
@CameronHall Negative. The changes you speak of I had Jackerson revert so I wouldn't be holding back the 3.4.2 release, the version being used here is 3.4.0 and thus wouldn't have been affected anyways. @AdnanBabakan Are you able to edit your index.php file and compare the output of the following between Apache and
|
#1305 - Fix URL during phalcon serve
Fixed in |
Expected and Actual Behavior
When using
phalcon serve
as a development serve when trying to have url query for GET parameters development server cannot recognize it correctly.http://icriticize.local/x/login?_m=SUCC_LOGOUT
will cause the error below:and using the url
http://icriticize.local/x/login/?_m=SUCC_LOGOUT
with a/
at the end of the route before the query will cause the error below:Totally means that without
/
at the end of the url causes phalcon to look for the default controller and with/
at the end of the url causes phalcon to look for the correct controller but still cause error.Details
Phalcon info:
The text was updated successfully, but these errors were encountered: