I am getting the following error when trying to delete basically anything (notes, users, bugs etc.):
"APPLICATION ERROR 200
A required parameter to this page (bugnote_id) was not found.
Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section."
I am using a pretty fresh install of 1.0.0rc1. Anyone know if this is a bug or just user error?
Thanks,
Ceres
Application Error 200 when trying to delete items
Moderators: Developer, Contributor
-
Ceres
Well, I found out what was wrong but I am still not sure if this is a bug or a configuration issue.
Basically the problem was that when the helper_ensure_confirmed function in helper_api.php was generating the form action, it only put something like:
instead of:
It is getting this from $PHP_SELF which is set (it seems) by $_SERVER['PHP_SELF']. If this is a bug then it's an easy fix, but it doesn't seem like this is a very common problem. Maybe there should be a check to handle configurations like mine?
Ceres
Basically the problem was that when the helper_ensure_confirmed function in helper_api.php was generating the form action, it only put something like:
Code: Select all
<form action="/my.bugtracker.com">Code: Select all
<form action="http://my.bugtracker.com">Ceres
-
Ceres