Problem in *ranksystem*

tiro

Member
Joined
Jun 6, 2016
Messages
27
Reaction score
4
Points
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
Joined
Jul 18, 2015
Messages
635
Reaction score
588
Points
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
Joined
Jun 6, 2016
Messages
27
Reaction score
4
Points
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
Joined
Jul 18, 2015
Messages
635
Reaction score
588
Points
157
Open your php.ini and remove exec from disable_functions. Then restart your webserver.
 
Top