Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.

Question Change user profile gives "no valid image" error

More
13 years 5 months ago #138218 by verena76
Hey I need help,

When a User tries to change Signature avatars country birthday or any other information the system only says No valid image.

I am using Joomla 2.5.8 and Kuena 2.0.3 on a Linux System with mysql 5 and php 5 and a Apache 2.2 server.

Thank you for your help

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

More
13 years 5 months ago #138284 by xillibit
Hello,

Which Kunena version are-you using ?

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 5 months ago #138302 by verena76
The latest Version 2.0.3

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

More
13 years 5 months ago #138373 by xillibit
The profile infomrations aren't saved correctly ?

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 5 months ago #138381 by verena76
Yes that is correct

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

More
13 years 4 months ago - 13 years 4 months ago #139166 by verena76
When I change a line in function save in the file controllers/user.php then it save corectly

I have added the line success=true; but id don't know why the function saveuser() makes trouble.
Code:
public function save() { // TODO: allow moderators to save another users profile (without account info) if (! JRequest::checkToken ()) { $this->app->enqueueMessage ( JText::_ ( 'COM_KUNENA_ERROR_TOKEN' ), 'error' ); $this->redirectBack (); } // perform security checks if (!$this->me->exists()) { JError::raiseError( 403, JText::_('Access Forbidden') ); return; } $this->user = JFactory::getUser(); $success = $this->saveUser(); [color=#ff0000]$success=true;[/color] if (!$success) { $this->app->enqueueMessage($this->user->getError(), 'notice'); } else { $this->saveProfile(); $this->saveAvatar(); $this->saveSettings(); if (!$this->me->save()) { $this->app->enqueueMessage($this->me->getError(), 'notice'); } } $msg = JText::_( 'COM_KUNENA_PROFILE_SAVED' ); $this->setRedirect ( $this->me->getUrl(false), $msg ); }
Last edit: 13 years 4 months ago by verena76.

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

Time to create page: 0.221 seconds