cakephp allow dot in params passed to an action
up vote
0
down vote
favorite
I have a function which accepts a bunch of params in the URL. One of the parameters however is an operating system version. So it has the format like: 5.6.02
This seems to not be allowed in cakephp and thus it breaks my function. I have no control over what is passed to the action because it comes from another source, otherwise I guess I could replace the dots with underscores or something.
So my question is, how can I allow this particular function to accept GET parameters even when they contain dots? Thanks
php .htaccess cakephp
add a comment |
up vote
0
down vote
favorite
I have a function which accepts a bunch of params in the URL. One of the parameters however is an operating system version. So it has the format like: 5.6.02
This seems to not be allowed in cakephp and thus it breaks my function. I have no control over what is passed to the action because it comes from another source, otherwise I guess I could replace the dots with underscores or something.
So my question is, how can I allow this particular function to accept GET parameters even when they contain dots? Thanks
php .htaccess cakephp
What version of Cake are you using?
– Greg Schmidt
17 hours ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a function which accepts a bunch of params in the URL. One of the parameters however is an operating system version. So it has the format like: 5.6.02
This seems to not be allowed in cakephp and thus it breaks my function. I have no control over what is passed to the action because it comes from another source, otherwise I guess I could replace the dots with underscores or something.
So my question is, how can I allow this particular function to accept GET parameters even when they contain dots? Thanks
php .htaccess cakephp
I have a function which accepts a bunch of params in the URL. One of the parameters however is an operating system version. So it has the format like: 5.6.02
This seems to not be allowed in cakephp and thus it breaks my function. I have no control over what is passed to the action because it comes from another source, otherwise I guess I could replace the dots with underscores or something.
So my question is, how can I allow this particular function to accept GET parameters even when they contain dots? Thanks
php .htaccess cakephp
php .htaccess cakephp
asked 22 hours ago
Patrick Guinness
1951417
1951417
What version of Cake are you using?
– Greg Schmidt
17 hours ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago
add a comment |
What version of Cake are you using?
– Greg Schmidt
17 hours ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago
What version of Cake are you using?
– Greg Schmidt
17 hours ago
What version of Cake are you using?
– Greg Schmidt
17 hours ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53343721%2fcakephp-allow-dot-in-params-passed-to-an-action%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What version of Cake are you using?
– Greg Schmidt
17 hours ago
If you need to pass non ascii characters, use query strings :) That allows all and any characters.
– mark
1 hour ago
I'm using version 2 Greg. Mark, the issue is that I have no control over what gets sent to my function. It's coming from an outside source, so there will be a dot in it no matter what. Any ideas?
– Patrick Guinness
37 mins ago