I am using PHTML encoder to encode my php file but it is giving error \"Call to undefined function dl()\" when i run the encoded file. Somebody please help.
as @k102 mentioned dl()
has been disabled by default since 5.3:
as refered on the php documentation: http://php.net/manual/en/function.dl.php
5.3.0 dl() is now disabled in some SAPIs due to stability issues.
The only SAPIs that allow dl() are CLI and Embed. Use the Extension Loading Directives instead.
as suggested there, use the Extension Loading Directives instead: http://www.php.net/manual/en/ini.core.php#ini.extension
Basically your only choices are:
dl()
as mentioned in the documentation:
(CLI, CGI and Embed)