Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Fatal error after saving profile (1 viewing) (1) Guest
TOPIC: Fatal error after saving profile
#25636
Fatal error after saving profile 1 Year, 3 Months ago  
Hey i got a fatal error after saving profile at fireboard...

[code:1]Fatal error: Using $this when not in object context in /home/spicyjoe/public_html/includes/version.php on line 66[/code:1]

when to that file but i don't get whats wrong with it...

EDIT: if i don't type password it it won't happen this problem... but if i type in my password the problem would occur
spicyjoe (User)
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/02 12:20 By spicyjoe.
 
 
#26460
Re:Fatal error after saving profile 1 Year, 3 Months ago  
I have the same problem while trying to change my password in the profile.
Any ideas???

I'm running the site locally using xampp. I haven't tried it yet online, if that helps...
vintage (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#26944
Re:Fatal error after saving profile 1 Year, 3 Months ago  
i have got the same problem.

[code:1]Fatal error: Using $this when not in object context in /htdocs/j/includes/version.php on line 66[/code:1]

tested two different joomla templates, but error stays. have this error only when trying to save the password. changing the email address is no problem.
jeandarc (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/09 10:59 By jeandarc.
 
 
#34567
Re:Fatal error after saving profile 1 Year ago  
same here any fix for it?
papokergod (User)
Senior Boarder
Posts: 124
graphgraph
User Offline Click here to see the profile of this user
Gender: Male NEPA Rounders Location: Pennsylvainia, USA Birthdate: 1975-07-07
Logged Logged
 
 
#34586
Re:Fatal error after saving profile 1 Year ago  
Find the file com_fireboard/template/default/plugin/myprofile/myprofile.php

Line 700, find :
if (joomlaVersion::getShortVersion()

Add Above that line:
$joomlaVersion = new joomlaVersion();
vintage (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/12/15 15:42 By vintage.
 
 
#34593
Re:Fatal error after saving profile 1 Year ago  
So around line 700 it should be like:

[code:1]
$joomlaVersion = new joomlaVersion();
if ($joomlaVersion->getShortVersion() password = md5($row->password);
}
[/code:1]

can you check if it works?

Thanks vintage ;)
danialt (Admin)
BoJ Team
Simplicity
Administrator
Posts: 957
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Birthdate: 1978-05-25
Logged Logged
 
Best Of Joomla Team
FireBoard Project Manager
 
 
#37067
Re:Fatal error after saving profile 1 Year ago  
That line is already there (using FireBoard 1.0.4 Stable), but I still get that error. So my guess is, no that fix doesn't work.

Anyone else have any other suggestions?

Here's the error I get when attempting to save a profile change and re-entering password:
[quote]Fatal error: Class 'joomlaVersion' not found in /home/(MYHOST)/public_html/components/com_fireboard/template/default/plugin/myprofile/myprofile.php on line 702[quote]
PaganRadio (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: California, USA Birthdate: 1968-06-18
Logged Logged
 
 
#45295
Re:Fatal error after saving profile 10 Months, 2 Weeks ago  
Hi im getting this problem aswell, ive checked thru the froum but still no luck ( yes i have tryed the "new" thing in front" but in the new forum its already there. has anyone had any luck with this in joomla 1.5?

skooza
Skooza (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#47798
Re:Fatal error after saving profile 9 Months, 2 Weeks ago  
SOLVED!

After checking in version.php, I noticed that in Joomla 1.5 the joomaVersion was changed. Please update your coding at line 702 to the following and you're golden.

[code:1]$joomlaVersion = new JVersion();
if ($joomlaVersion->getShortVersion() password = md5($row->password);[/code:1]

Should I submit this bug fix somewhere? Will this change be compatible with users of 1.0.13?
caleb2001r (User)
Fresh Boarder
Posts: 13
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/03/26 20:43 By caleb2001r.
 
 
Go to top