Hello friends,
I am developing one site using PHP, Mysql, JavaScript & Smarty.
site is working fine on windows server but when i change the server windows to linux then i have got the problem of case-sensitivity with Smarty....as smarty is Case Sensitive
now my question is there any idea to have Case Insensitive Smarty?
or any idea how to remove Case insensitivity in linux?
Answers
Add AnswerJust modify your code... use find and replace all strategy...
You could modify your code to perform toUpper or toLower on all comparisons or at the time you insert/update your data. If you aren't concerned with case it shouldn't break anything.
Just modify your code
develop on case sensitive environment first, you cannot go wrong.
Share your knowledge