Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 392 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 392 Bytes

Server Actions

Different "exec" PHP commands for download, zip, unzip and directory permission. Sometimes we don't have access to cPanel then we can use below commands.

Pull Request

Full free to send your pull request

Note

First check "exec" funcation anable or not using below code. Becuase some server disabled.

if(exec('echo EXEC') == 'EXEC')
{
    echo 'exec works';
}