|
I can't add, view topic or posts 4 Months, 3 Weeks ago
|
|
|
On top of forum message _PROBLEM_CREATING_PROFILE joomla 1.5.2 FB 1.0.4
|
|
wojtas (User)
Fresh Boarder
Posts: 1
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 4 Months, 1 Week ago
|
|
|
I am also getting this Meassage. Also there is no option available to add new Post/Thread.
Although I have installed fireboard with a fresh Joomla 1.5 installation and Its working fine.
But not working with existing Joomla 1.5 installation.
Any Suggestions................................................Please................
|
|
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 4 Months, 1 Week ago
|
|
|
Its not working with JoomFish 2.0. When I enable "Joomfish - Abstraction Layer" plugin
the Post New Topic/Thread option got hide and FireBoard Stops working.
Is there any Solutoins ....... Please
|
|
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 4 Months, 1 Week ago
|
|
|
I have added following return statement in \plugins\system\jfdatabase\jfdatabase_inherit.php
file's loadObject( &$object, $translate=true, $language=null ) function :
return $object;
and its Working Now!!
|
|
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 3 Months, 1 Week ago
|
|
|
WOW!
Thanks a lot!
You helped me with that, because i had the same issue!
|
|
andryx (User)
Fresh Boarder
Posts: 1
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 3 Months, 1 Week ago
|
|
|
Sorry for a simple question, but can you tell me EXACTLY what lines go where in the jfdatabase_inherit.php file (maybe cut/paste a few lines before, the code, and after lines)?
Thanks.
|
|
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|
Re:I can't add, view topic or posts 2 Months, 2 Weeks ago
|
|
|
here it is:
in the file \plugins\system\jfdatabase\jfdatabase_inherit.php
go to the line 563 and just after the } and before the other } paste and save this code:
return $object;
the function will looks like this:
function loadObject( &$object, $translate=true, $language=null )
{
if (!is_null($object) && is_object($object)){
$res = parent::loadObject($translate, $language);
foreach (get_object_vars($res) as $key=>$val) {
$object->$key = $val;
}
}
else {
$object = parent::loadObject($translate, $language);
}
return $object;
}
SO IT WILL WORK!!!!!!!!!!!!
|
|
azhhael (User)
Fresh Boarder
Posts: 10
|
Logged
|
|
|
The administrator has disabled public write access.
|
|
|