PDA

View Full Version : Fatal Error - Profile


Bubble #5
08-25-2013, 10:51 PM
All of a sudden we're getting this error when we click on the Profile link:

Fatal error: Class 'vB_ActivityStream_View_Perm__' not found in /home/love4um/public_html/4um/vb/activitystream/view.php on line 589

Can anyone point us in the right direction?

UPDATE:

This appears to be an error ONLY for the admin. Everyone else seems to have Profile access. Can this maybe be fixed in ACP > maintenance?

ozzy47
08-25-2013, 11:03 PM
Temporarily disable all your mods, and see if the issue still persists.


To disable the plugin/hook system open your config.php which can be found in your forumroot/includes directory

Just below:

<?phpAdd this:

define('DISABLE_HOOKS', true);Then save the file.

If you would like to enable the plugin/hook system again, either remove the line again or simply comment that line out. To comment it out, add two forward slashes " / " so it will look like

// define('DISABLE_HOOKS', true);Next time you would like to disable the plugin/hook system again
you simply have to remove those two " / ".


Or since you are able to access your AdminCP go to

AdminCP -> Settings -> Options -> Plugin/Hook System

And set it to No to disable.

Bubble #5
08-25-2013, 11:21 PM
Same error with hooks off.

ozzy47
08-25-2013, 11:29 PM
Try, Maintenance --> General Update Tools, and Rebuild the Activity Stream and see if that fixes the issue.

Bubble #5
08-25-2013, 11:33 PM
Tried that, no joy.

I also tried uploading a fresh copy of view.php. Again no joy.

ozzy47
08-25-2013, 11:35 PM
Did this start happening after you were experiencing issues with this mod, https://vborg.vbsupport.ru/showthread.php?t=269808&highlight=review&page=109

Bubble #5
08-25-2013, 11:57 PM
I can't say 100% but yes I'm at least 95% sure that was the mod that broke everything. TedS is offering no support. As soon as I installed that mod I noticed that many features of the mod did not work correctly (manage buttons did nothing, couldn't upload images, etc.). Not to long afterward I noticed when I clicked on the Activity Stream button that it gave an error, so I started trouble shooting, I uninstalled the mod completely. The error then changed to a different error. At that time I didn't know about the profile issue. I turned Activity Stream off for the time being until I get it sorted.

ozzy47
08-26-2013, 12:00 AM
That's a bummer, I am all out of ideas then, maybe someone else can help, as I have never run across it before.

Amaury
08-26-2013, 12:41 AM
Give this (http://www.vbulletin.com/docs/html/blank_pages) a try.

Bubble #5
08-26-2013, 01:19 AM
Thanks Amaury for trying to help.

Unfortunately none of that worked... :erm:

ozzy47
08-26-2013, 01:21 AM
Then I guess you may need to open a support ticket, describing everything you have tried.

ForceHSS
08-26-2013, 01:30 AM
might help

line 589 and 590 of view.php

$this->classes[$classname] = new $classname($this->content, $this->vbphrase);
($hook = vBulletinHook::fetch_hook($this->hook_group)) ? eval($hook) : false;