[SOLVED !!!] Freaking "Could not determine manipulator class name" in FEU 1.3.1

A place to discuss the testing process in beta cycles or against SVN for the CMS Made Simple CORE package.
Locked
kazkas

[SOLVED !!!] Freaking "Could not determine manipulator class name" in FEU 1.3.1

Post by kazkas »

I'm installed a FEU 1.3.1, it worked nice. Then I needed to get a username of logged user, so I tried to do

Code: Select all

	$feusers = $this->GetModuleInstance('FrontEndUsers');
	$album = $feusers -> LoggedInName();
and all I received was "Could not determine manipulator class name". If I comment those 2 lines, it works fine. I tried to change a

Code: Select all

$module =& $this->GetModule();
lines to

Code: Select all

$module = $this->GetModule();
as it was offered, but it not helps. Any ideas how to solve this problem? 'cause in other case I will need to downgrade FEU which I don't want to do  :-\
Last edited by kazkas on Tue Dec 11, 2007 9:22 am, edited 1 time in total.
kazkas

[SOLVED!!!] Freaking "Could not determine manipulator class name" in FEU 1.3.1

Post by kazkas »

Ok, how I solved that problem:
Error was causing the

Code: Select all

      if( !isset( $manipulator ) )
        die('Could not determine manipulator class name');
lines in FrontEndUsers.module.php. The $manipulator is not set, although it seems like it should be set in next to last line in FrontEndUsers.api.php. So all I did was copy line

Code: Select all

$manipulator = 'FrontEndUsersManipulator';
to line 192 in just under line

Code: Select all

      require_once($fn);
Now it's working fine, even with changing back to

Code: Select all

$module =& $this->GetModule();
Can someone from module authors take a closer look, maybe that's why the module is no longer working for some of us?
cubix
Power Poster
Power Poster
Posts: 314
Joined: Mon Jul 09, 2007 10:00 am

Re: [SOLVED !!!] Freaking "Could not determine manipulator class name" in FEU 1.

Post by cubix »

wow, this one did my head in too!

thank you for the fix.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: [SOLVED !!!] Freaking "Could not determine manipulator class name" in FEU 1.

Post by calguy1000 »

Code: Select all

$feusers =& $this->GetModuleInstance('FrontEndUsers');
I bet your UDT would be faster and wouldn't give the manipulator class error if you had done this.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Locked

Return to “[locked] Quality Assurance”