Problem in *ranksystem*

tiro

Member
Jun 6, 2016
27
4
43
What solution to this problem?

PHP:
Warning: exec ( ) has been disabled for security reasons in/home/mydomain/domains/mydomain/public_html /ranksystem /webinterface.php on line 109
 

Norvik

Retired Staff
Contributor
Jul 18, 2015
635
588
157
The error means exactly what it says. Somebody (probably you) disabled the use of the exec function. In other words, you can't use exec until your webserver allows it.
 

tiro

Member
Jun 6, 2016
27
4
43
The error means exactly what it says. Somebody (probably you) disabled the use of the exec function. In other words, you can't use exec until your webserver allows it.
But what is the solution?
 

Norvik

Retired Staff
Contributor
Jul 18, 2015
635
588
157
Open your php.ini and remove exec from disable_functions. Then restart your webserver.
 
Top