Set up the dezender online for free/paid online service
To set up the dezender online the same dezender can be used with a php index file and put all the code in your windows server
Source code:
<?
/*————————————————————————————————-*/
// DEZENDER CONFIGS
// EDIT THIS CONFIGS
$main = ‘C:/DEZENDER’;
$ext = ‘.php’;
$encluded = array(’php’);
ini_set(’max_execution_time’, ‘120′);
// DONT EDIT THIS CONFIGS
$source = $main.’/SOURCE’;
$dest = $main.’/OUTPUT’;
$php = $main.’/PHP’;
/*————————————————————————————————-*/
/*————————————————————————————————-*/
// INCLUDE FILE DEZENDER
include(”COPCODE/dezend.php”);
/*————————————————————————————————-*/
/*————————————————————————————————-*/
// CALL DEZEND FUNC — DEZENDING ALL FILES
dezend($source, $dest, $ext, $php, $encluded);
/*————————————————————————————————-*/
?>
——————————————————————-
<?
$INI = file_get_contents(”PHP/decode64.ini”);
$INI .= <<<EBD
[Zend]
zend_extension_manager.optimizer_ts=$main/Zend
zend_extension_ts=$main/Zend/ZendExtensionManager.dll
EBD;
?>
——————————————————————–
<?
//————————————————————————————————-
function decode($FILE_EXT,$PHP_SOURCE_PATH,$ENCODED_FILE,$DECODEDING_PATH){
$decommand = ” “.$PHP_SOURCE_PATH.”/php.exe “;
$decommand .= ” “.$ENCODED_FILE.” “;
$decommand .= ” /path:”.$DECODEDING_PATH.” “;
$decommand .= ” /ext:”.$FILE_EXT.” “;
exec($decommand);
}
//————————————————————————————————-
function dezend($source, $dest, $ext, $php, $encluded){
// Simple copy for a file
if (is_file($source)) {
$extension = substr($source, strrpos($source, ‘.’) + 1);
$encoded_file = $source;
$decodeding_path = dirname($dest);
if(in_array($extension,$encluded)){
decode($ext,$php,$encoded_file,$decodeding_path);
echo “<FONT SIZE=\”5\” COLOR=\”#CC0000\”><B>FILE DECODED :</B></FONT>”.$source.”<BR>”;
}else{
$c = copy($source, $dest);
echo “<FONT SIZE=\”5\” COLOR=\”#339900\”><B>FILE COPIED :</B></FONT>”.$source.”<BR>”;
}
$c = true;
return $c;
}
// Make destination directory
if (!is_dir($dest)) {
$oldumask = umask(0);
mkdir($dest, 0777);
umask($oldumask);
}
// Loop through the folder
$dir = dir($source);
while (false !== $entry = $dir->read()) {
// Skip pointers
if ($entry == ‘.’ || $entry == ‘..’) {
continue;
}
// Deep copy directories
if ($dest !== “”.$source.”/”.$entry.”") {dezend(”".$source.”/”.$entry.”", “”.$dest.”/”.$entry.”", $ext, $php, $encluded);}
}
// Clean up
$dir->close();
return true;
}
//————————————————————————————————-
/*————————————————————————————————-*/
// INCLUDE DEZENDER PHP INI
include(”COPCODE/ini.php”);
// WRITING PHP INI
$file = $php.”/php.ini”;
$h = fopen($file, ‘w+’);
if(fwrite($h,$INI) === false) return false;fclose($h);
/*————————————————————————————————-*/
?>
——————————————————————
These are the files which are called during the online dezending.
SERVER REQUIREMENT: Your server should be properly configured to run the php.exe in many case it may require a VPS hosting.
You should conform this to your webhosting service provider.
Download the dezenderonline here
Output file goes to the output directory which can be copied on downloaded online.
This will allow you to dezend the work online and if you use any payment gateway you get the payment and then allow the name/password based login.
Read Related Post











thank you