Quote:
I'm using version 2.5.7. After you select the template page, selecting my template and a specific module I get the answer:
"You have not created any file"
Do you have an idea how to solve it?
It seems like XOOPS needs to have writing rights to the
/modules
folder in your theme that you want to copy the templates to.
So for example, I tested it on the Suice theme with the News module as you did, and I've got the same error as you did.
But in situations like this, it is always good to turn on the Debug, so you can see what PHP is telling you
After I did that, I've got these errors:
Ostrzeżenie: mkdir() [function.mkdir]: Permission denied w pliku /modules/system/admin/tplsets/main.php na linii 238
Ostrzeżenie: chmod() [function.chmod]: No such file or directory w pliku /modules/system/admin/tplsets/main.php na linii 239
Ostrzeżenie: copy(/themes/suico/modules/news/index.html) [function.copy]: failed to open stream: No such file or directory w pliku /modules/system/admin/tplsets/main.php na linii 240
So if you report to us these errors, it makes it much easier for us to solve problems.
Basically, the theme folder
/modules that you want to copy the templates to:
/public_html/themes/suico/modules
has permission 755, and the template creation failed.
Once I've changed the rights to 777, XOOPS was able to create the new folder:
/public_html/new_site/themes/suico/modules/news
and copy the templates that I've selected.
So whatever theme you want to use, just make sure that the permissions to the folder
/yourtheme/modules
are set to 777