Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Installing SilverStripe /

Getting SilverStripe up and running on your computer and on your web server.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

[ERROR] SS3 installation error invalid opcode


Go to End


5 Posts   2652 Views

Avatar
Sphere

Community Member, 46 Posts

26 October 2012 at 9:42pm

I keep getting this error:
PHP Fatal error: Invalid opcode 153/1/8. in framework/i18n/i18n.php on line 1952
The piece of code that's breaking:

		uksort(
			$modules,
			function($a, $b) use(&$prios) {
				$prioA = (isset($prios[$a])) ? $prios[$a] : 50;
				$prioB = (isset($prios[$b])) ? $prios[$b] : 50;
				return ($prioA > $prioB);
			}
		);

When doing a dev/build.

On the live/production side, the same error occurs, but in datalist:
PHP Fatal error: Invalid opcode 153/1/8. in framework/model/DataList.php on line 205
Which is this code:

	public function where($filter) {
		return $this->alterDataQuery_30(function($query) use ($filter){
			$query->where($filter);
		});
	}

The PHP-version on the server is 5.3.17

Any clue?

Avatar
tv

Community Member, 44 Posts

1 May 2013 at 5:48am

Hi Sphere,

I hit you up on Twitter about this, too, but wondering if you were able to find the cause of this error? I'm receiving the exact same error when I've moved my install to production.

Avatar
Sphere

Community Member, 46 Posts

1 May 2013 at 6:09am

The error here is due to a PHP-cacher named eAccelerator. eAccelerator doesn't allow for anonymous functions, which causes this error. Only solution is either disable eAccelerator, or find a host that uses APC (or no PHP-cacher)

Avatar
tv

Community Member, 44 Posts

1 May 2013 at 6:15am

Thanks so much for the quick reply and info. Gonna hit up our hosting provider and find out.

Avatar
tv

Community Member, 44 Posts

1 May 2013 at 8:58am

For anybody else who has this issue, Sphere was correct - eAccelerator was the issue. Disabled it and was able to move forward.