Re: Images won't show up after name change
I just want to clarify something. Windows is case-insensitive when it comes to files. The file "abc.def" is the same as "ABC.DEF". This is part of the filesystem Windows uses. However, *nix uses different filesystems. Most of them are case-sensitive. The file "abc" is NOT the same file as "Abc". Since x10 uses *nix based servers, they also employ one of those case-sensitive filesystems.
The webserver itself (Apache) is case-sensitive as well. Thus, a request for "site.com/a" can give completely different results from "site.com/A".
Real programmers don't document their code - if it was hard to write, it should be hard to understand.