Problems with MediaWiki and PHP

Hello, I’m creating a wiki with MediaWiki (installed through Softaculous), I’ve then added the Scribunto extension and enabled it, it works fine and I could import the template:infobox.

The problem now is that when I create a page with that template, I get the following PHP error:

“Lua error: Cannot create process: proc_open is not available. Check PHP’s “disable_functions” configuration directive.”

Googling I found out that I need to enable proc_open in the PHP configuration, but I can’t access that config.

The proc_open function is used to execute arbitrary commands on the server. Functions like that are blocked for security reasons, you cannot execute shell commands on the servers. Also, no Lua interpreter is installed on our servers.

MediaWiki is supported here, but the Scribunto extension is not.

So what’s an alternative to get working infoboxes without lua script ?

@Elia1995 said:
So what’s an alternative to get working infoboxes without lua script ?

I have no idea, I’m not a Mediawiki expert. Maybe Google for alternative plugins which fully rely on PHP?

@Admin said:

@Elia1995 said:
So what’s an alternative to get working infoboxes without lua script ?

I have no idea, I’m not a Mediawiki expert. Maybe Google for alternative plugins which fully rely on PHP?

I’ve already looked on Google and the only solution for infoboxes was that to use the actual lua scripts from Wikipedia, which I used, but without that php support it doesn’t seem to work.

I’ll look for something similar to MediaWiki but with a different structure for infoboxes, maybe they’ll work.