I keep getting this message when I try to go to a user profile page in the frontend. Can someone help me find a solution. I'm very new to Magento.
Fatal error: Class 'Mage_Profile_Helper_Data' not found in /home/.../public_html/store/app/Mage.php on line 546
Also, I believe this was working recently but I have only made some css changes to the theme so not sure how I could have broken this.
I have also recompiled and disabled compilation from the admin panel.
Update:
I found this in Data.php:
class MYSITE_Profile_Helper_Data extends Mage_Core_Helper_Abstract{
public function getProfilesUrl(){
return Mage::getUrl('profile/profile/index');
}
}
And I found this in app/etc/modules/MYSITE_Profile.xml
<config>
<modules>
<MYSITE_Profile>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Core />
</depends>
</MYSITE_Profile>
</modules>
</config>