Skip to Content Skip to Menu

Error Message in Profile

  • MarkusK
  • MarkusK
  • OFFLINE
  • Posts: 4
  • Thanks: 0
  • Karma: 0
15 years 11 months ago #75175 by MarkusK
Error Message in Profile was created by MarkusK
Hi !
When i enter my Profil, there appears following error message:

[code:1]Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 96

Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 168

Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 168

Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 168

Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 168

Notice: Trying to get property of non-object in /xxx/components/com_comprofiler/plugin/user/plug_pmsuddeiminbox/pms.showinbox.php on line 168[/code:1]

Have anyone a idea to solve the problem ?
I use the latest udde and Joomla 1.5 Version

Post edited by: MarkusK, at: 2008/09/22 18:49

Please Log in or Create an account to join the conversation.

  • slabbi
  • slabbi
  • OFFLINE
  • Posts: 3709
  • Thanks: 250
  • Karma: 153
15 years 11 months ago #75182 by slabbi
Replied by slabbi on topic Re:Error Message in Profile
The problem is not uddeIM but CB. uddeIM tries to access $_CB_database and the object seems not to be available.

Do you use CB 1.1? Have you enabled the legacy mode?

uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer

Please Log in or Create an account to join the conversation.

  • Sectus
  • Sectus
  • OFFLINE
  • Posts: 3
  • Thanks: 0
  • Karma: 0
15 years 11 months ago #75250 by Sectus
Replied by Sectus on topic Re:Error Message in Profile
i got same errors on my Joomla! 1.0.15 and tried to change this
[code:1]
if ($this->config->overwriteitemid)
$item_id = $this->config->useitemid;//error here

$this->_getLanguageFile();
$params = $this->params;
$return="";
[/code:1]
to
[code:1]
$this->_getLanguageFile();

if ($this->config->overwriteitemid)
$item_id = $this->config->useitemid;//error here

$params = $this->params;
$return="";
[/code:1]

and

[code:1]
if($cm->systemmessage || $this->config->allowbb) {
[/code:1]
to
[code:1]
if($item->systemmessage || $this->config->allowbb) {
[/code:1]

but i've got more errors:
Notice: Undefined variable: uddeim_isadmin in Z:\home\auto_3ir_ru\www\components\com_uddeim\uddeimlib10.php on line 97

how can i fix this?

Please Log in or Create an account to join the conversation.

  • slabbi
  • slabbi
  • OFFLINE
  • Posts: 3709
  • Thanks: 250
  • Karma: 153
15 years 11 months ago #75255 by slabbi
Replied by slabbi on topic Re:Error Message in Profile
After updating to uddeIM 1.3 have you saved the configuration file? This is required since 1.3 introduces new member variables which are not present in 1.2.

Just press the save button once and the error should be gone.

The second one is a bug, so you fix
[code:1]if($item->systemmessage || $this->config->allowbb) {[/code:1]
should be correct. It is not a serious bug so there is no need for you to fix it (it will be fixed in uddeIM 1.4).

Post edited by: slabbi, at: 2008/09/23 09:37

uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer

Please Log in or Create an account to join the conversation.

  • Sectus
  • Sectus
  • OFFLINE
  • Posts: 3
  • Thanks: 0
  • Karma: 0
15 years 11 months ago #75256 by Sectus
Replied by Sectus on topic Re:Error Message in Profile
It was my first install of 1.3 on local comp on joomla! 1.0.15 RE and CB 1.1

i have pressed button to save config and
"Notice: Undefined variable: uddeim_isadmin in uddeimlib10.php on line 97" still here (in CB profile with plug_pmsuddeim or plug_pmsuddeiminbox)

Post edited by: Sectus, at: 2008/09/23 09:12

Post edited by: Sectus, at: 2008/09/23 09:18

Please Log in or Create an account to join the conversation.

  • slabbi
  • slabbi
  • OFFLINE
  • Posts: 3709
  • Thanks: 250
  • Karma: 153
15 years 11 months ago #75257 by slabbi
Replied by slabbi on topic Re:Error Message in Profile
Sectus wrote:

but i've got more errors:
Notice: Undefined variable: uddeim_isadmin in Z:\home\auto_3ir_ru\www\components\com_uddeim\uddeimlib10.php on line 97
how can i fix this?


Yes, its a bug. Please add
$uddeim_isadmin = 0;
before
if ( defined( 'JPATH_ADMINISTRATOR' ) ) {
so it looks like

[code:1]$uddeim_isadmin = 0;
if ( defined( 'JPATH_ADMINISTRATOR' ) ) {
[/code:1]

It is not a serious bug so there is no need for you to fix it (it will be fixed in uddeIM 1.4).

Post edited by: slabbi, at: 2008/09/23 09:37

uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer

Please Log in or Create an account to join the conversation.

Moderators: beatnantslabbikrileon
Powered by Kunena Forum