If you click "My profile" in JooAnswers main menu and get a "view not found error", here's the solution:
Edit file "
components/com_jooanswers/jooanswers.php". At the beginning of the file, right after "<?php", add the following code:
$database =& JFactory::getDBO();
$database->setQuery(" UPDATE `#__menu` SET `link`='index.php?option=com_jooanswers&task=userprofile' WHERE `menutype`='JAnswersManmenu' AND `name`='My Profile' ");
$database->query();
Save the file, then visit any page on your site that displays JooAnswers component (i.e.:
www.example.com/index.php?option=com_jooanswers)
After doing this, edit again the above mentioned file and delete those 3 lines you have added.
H.