Marti Clayton wrote:
The params.ini is writable until I try to do a save. Then is changes to unwritable even though I didn't change the permissions.
hi there,
this is a known joomla bug which seems to appear on certain servers only.
very often the changes actually do get saved, even if the params.ini says it is unwritable.
worth to give this a try.
if it does not work, you may try to enable your ftp layer in the joomla global configuration.
if this doesn't help as well, then you can try to add some changes to ../administrator/components/com_templates/controller.php
find below codes:
// Try to make the params file unwriteable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0555')) {
and change to:
// Try to make the params file unwriteable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0755')) {
kat