jysse
...I read about it and it seems that this setting is "0" in Sme and "1" in Windows and is related to how it handles lower and upper cases.
Windows programmers use upper & lower case to make the code more easily readable, as in Windows the case does not matter as it is treated the same.
Linux is case sensitive, so if you run the same code on a Linux machine you will have lot's of problems, apart from the fact the code won't even work.
I suggest you get the programmer to go through all the code and make the case consistent, and respect the fact that Linux reads
database
and
Database
as different things.
I am speaking from experience as we had Windows programmers (who were unfamiliar with Linux), develop a quite complex database for us. They developed it on Windows mysql and when transferred to Linux they got badly stung by the case sensitivity issue and the only answer was to scan through all the code and replace all upper case occurences with lower case. I suggest you use lower case only for ease of reading in Linux.