The file you are looking for is:
/components/com_mamblog/configuration.php
However, the problem is most likely not the CHMOD.
I have looked at the source code for this software and found that is uses the GLOBAL function which is disabled on many web servers. You can try turning on the register_globals PHP option, but it does create a security issue.
I was able to bypass this problem by editing
administrator/components/com_mamblog/admin.mamblog.php
Lines 69 & 70
function showConfig($database, $mosConfig_absolute_path, $option, $cfgfile, $cfg_mamblog, $blogadmin) {
// global $database, $mosConfig_absolute_path, $option, $cfgfile, $cfg_mamblog, $blogadmin;
This resulted in another error:
Fatal error: Call to a member function showAdminPages() on a non-object in /home/.../administrator/components/com_mamblog/admin.mamblog.php on line 253
If I find a fix for this, I wil post it.
Post edited by: rholzler, at: 2008/09/09 19:23