I am having challenge with my app. When working on Windows I created class file under classes folder.
It loads in my view files when working on windows, but when I moved the app files to ubuntu, it displays Error: Class Not Found.
What could be the cause of this.
Thanks
Windows doesn't care about backslash or forward slash, unnecessary to change that and makes it incompatible with many *nix systems.
Problem is most likely the casing of the filenames: windows filesystem is case insensitive, linux is case sensitive. Thus check your paths for uppercase characters, Fuel filesystem shouldn't have any uppercase chars in them.