AntiWPA Forum

Full Version: What is missing in my decoded file?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I got the ic7 decoded two week ago. My decoded code can not work fine.
I don't know what is missing, Please see my decoded code and encoded file as below. $layout_name is the name of non-php encoded layout file.
I think some variable is missing, anyone can help me.

public function get_layout_template( $layout_name )
{
$encrypted = "";
$copyright_license = "{Copyright License for website}";
$filename = "templates/".$layout_name;
if ( file_exists( $filename ) && function_exists( "ioncube_read_file" ) )
{
}
if ( !$encrypted )
{
$filecontent = "<center><br><b>Alert";
$filecontent .= " Invalid Layout</b></center>";
echo $filecontent;
}
if ( $line == $copyright_license )
{
$content[0] = "";
$filecontent = $encrypted;
return $filecontent;
}
$filecontent = "";
return $filecontent;
}
Anyone can help?
no php help here IDIOT
So sad - -"
(11-24-2012 05:54 PM)keyshort Wrote: [ -> ]I got the ic7 decoded two week ago. My decoded code can not work fine.
I don't know what is missing, Please see my decoded code and encoded file as below. $layout_name is the name of non-php encoded layout file.
I think some variable is missing, anyone can help me.

public function get_layout_template( $layout_name )
{
$encrypted = "";
$copyright_license = "{Copyright License for website}";
$filename = "templates/".$layout_name;
if ( file_exists( $filename ) && function_exists( "ioncube_read_file" ) )
{
}
if ( !$encrypted )
{
$filecontent = "<center><br><b>Alert";
$filecontent .= " Invalid Layout</b></center>";
echo $filecontent;
}
if ( $line == $copyright_license )
{
$content[0] = "";
$filecontent = $encrypted;
return $filecontent;
}
$filecontent = "";
return $filecontent;
}

Your decoded code and your encoded file are two different files.
The following documentation is decoded from your encoded file.Angel
Reference URL's