A French character, ç, appears to be breaking my application.
The script harvests data from an external application, then uses post to send this data to our apache/php server to be processed.
For security reasons, anything sent to the server must be accompanied by a hash (md5) of the data, time of sending, user info etcetera to verify the user has permissions to carry out the action.
Now, for whatever reason, actions are getting rejected if there are certain characters in the data string that gets hashed, like the ç.
How can I avoid this? Is there a certain encoding I should be set so they are correctly processed?
A regex that could replace all ç with c, and so on for all non-English letters?
There is also the potential for German and Spanish input to be harvested with this tool so would like to find a catch-all solution!