Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Case sensitivity in URL issue on Linux + NGinx + Kohana + php

There is an issue/bug/feature/whatever on Linux + NGinx + Kohana :

We have to make sure that we keep all our file names in lowercase only.

We can't have anything like "setUserServer.php". It simply doesn't work. No idea why. If we give the name of the same file as "setuserserver.php", it runs.

This problem doesn't exist on Windows + Apache + Kohana.

If anyone has an idea how to solve this, please do chime in this thread.

Thanks.

like image 603
Shrinath Avatar asked Jul 04 '11 08:07

Shrinath


1 Answers

Solution is sticking to the naming scheme of kohana: all files lower case

Windows by default is not case sensitive, and linux is. Can't "solve" that

like image 78
SpadXIII Avatar answered Sep 22 '22 14:09

SpadXIII