In which folder on the server of the site created using Joomla , files with the .cz
extension can be stored?
I specifically need estou-srdce.cz
(although I don’t know if this is a custom file or not).
There is neither a file with this name in the source code of joomla , nor even a file with the .cz
suffix.
To search for files with the .cz
suffix (case-insensitive) throughout the directory tree, starting at the root of the site, in the gnu / linux operating system, you can use this command, for example:
$ find /путь/к/корню/сайта -iname \*.cz
Source: https://ru.stackoverflow.com/questions/434638/
All Articles