Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.
The Team DeZender
Please Log in or Create an account to join the conversation.
<?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.1.0
* @ Author : DeZender
* @ Release on : 2011.01.04
* @ Official site : http://DeZender.Net
*
*/
function fetch_json_table($primary_table_mainid, $SQLCount, $SQL) {
global $ui_grid_rows_per_page;
global $ui_grid_page_to_fetch;
global $jsonGridDataHasNames;
global $ui_griddata_columns;
global $in_demo_mode;
global $ui_operation_mode;
if (!( $result = mysql_query( $SQLCount ))) {
exit( 'Couldn\'t execute count query.' . mysql_error( ) );
(bool)true;
}
$row = mysql_fetch_array( $result, MYSQL_ASSOC );
$count = $row['count'];
if (( $in_demo_mode == true && 20 < $count )) {
$count = 20;
}
if (( 0 < $count && $ui_grid_rows_per_page != 0 )) {
$total_pages = ceil( $count / $ui_grid_rows_per_page );
} else {
$total_pages = 0;
}
if ($total_pages < $ui_grid_page_to_fetch) {
$ui_grid_page_to_fetch = $total_pages;
}
$start = $ui_grid_rows_per_page * $ui_grid_page_to_fetch - $ui_grid_rows_per_page;
if (0 < $count) {
$SQL .= '' . ' LIMIT ' . $start . ', ' . $ui_grid_rows_per_page;
}
if (!( $result = mysql_query( $SQL ))) {
exit( 'Couldn\'t execute your query.' . mysql_error( ) );
(bool)true;
}
$responce->page = $ui_grid_page_to_fetch;
$responce->total = $total_pages;
$responce->records = $count;
$i = 0;
while ($row = mysql_fetch_array( $result, MYSQL_ASSOC )) {
$responce->rows[$i]['id'] = $row[$primary_table_mainid];
if ($jsonGridDataHasNames == true) {
foreach ($ui_griddata_columns as $dbValue) {
if (( $in_demo_mode == true && $ui_operation_mode == WHOIS_DATA )) {
if ((string)$dbValue == 'registry_whois') {
$row[$dbValue] = '<h3>This demo has expired. The domain table will display only 20 domains.</h3>' . $row[$dbValue];
}
}
if ($row[$dbValue] == null) {
$row[$dbValue] = '';
}
$responce->rows[$i][(string)$dbValue] = $row[$dbValue];
}
} else {
$cellData = array( );
$j = 0;
foreach ($ui_griddata_columns as $dbValue) {
if ($dbValue != $primary_table_mainid) {
if ($row[$dbValue] == null) {
$row[$dbValue] = '';
}
$cellData[$j] = $row[$dbValue];
++$j;
continue;
}
}
$responce->rows[$i]['cell'] = $cellData;
}
++$i;
if (( $in_demo_mode == true && 20 <= $i )) {
break;
continue;
}
}
echo json_encode( $responce );
exit( );
}
require_once( '../../config.php' );
require_once( 'base.php' );
$jsonGridDataHasNames = true;
$in_demo_mode = false;
if (function_exists( 'mcrypt_get_iv_size' )) {
$thekey = 'ATLANTIS';
$iv_size = mcrypt_get_iv_size( MCRYPT_BLOWFISH, MCRYPT_MODE_ECB );
$iv = mcrypt_create_iv( $iv_size, MCRYPT_RAND );
$encrypted_date = hex2bin( '0D2BFE1DC280E528DC21E121BAEE009B' );
if (isset( $license_key_code )) {
if ($license_key_code != '') {
$encrypted_date = hex2bin( $license_key_code );
}
}
define( 'EXPIRY_DAYS', '30' );
$decrypted_date = mcrypt_decrypt( MCRYPT_BLOWFISH, $thekey, $encrypted_date, MCRYPT_MODE_ECB, $iv );
$decrypted_date = trim( $decrypted_date );
$date_parts = explode( '-', $decrypted_date );
if (count( $date_parts ) == 3) {
$install_date = mktime( 0, 0, 0, $date_parts[1], $date_parts[2], $date_parts[0] );
$expiry_date = mktime( 0, 0, 0, $date_parts[1], $date_parts[2] + EXPIRY_DAYS, $date_parts[0] );
if ($expiry_date < time( )) {
$in_demo_mode = true;
}
}
} else {
$expiry_date = mktime( 0, 0, 0, 2, 28, 2011 );
if ($expiry_date < time( )) {
$in_demo_mode = true;
}
}
...............
....
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.