Paul Duffield wrote:
The params.ini however showed as not writeable so I changed the permissions to make it writeable and that enabled me to make changes to the template although the error message params.ini not writeable still shows I cannot seem to change that status message although the actual permissions do appear to change when I modify them.
hi paul,
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