IT Corporate Template For Joomla 2.5
The IT Corporate template is built with a precise purpose in mind: Convey the professionalism of your business to your website visitors. This approach is accomplished carefully by choosing the color scheme (6 pre-made color schemes are available for you), by making sure that even the tiniest details get their importance on the design and of course, by taking the time to think and put all the elements of the website on their natural place.
Demo:
http://demo.icetheme.com/?template=it_corporateDownload:
http://pan.baidu.com/netdisk/singlepublic?fid=574616_2955424263http://www.mirrorcreator.com/files/ZKIDPJMD/IT_Corporate_j2.5.7z_links

Comments
Anonymous
open helper.php and delete all.. paste this code below and save. enjoy :) <?php //License Key Validation by IceTheme. // The php code below is encoded. It absolutely dont affect anypart of the template that you may need to change or edit // The code below contains only the php codefor the License Key that you may need to enter on the template paramters. // Please contact us ifyou have any questions // http://www.icetheme.com/About/Contact.html // Nodirect access. defined('_JEXEC') or die; $SECURITY_CODE ="icetheme"; define("CHECK_DAY", 86400); define("DEBUG_MODE",false); define("SERVER_URL", "http://www.icetheme.com/index.php"); if(DEBUG_MODE){ define("NUM_DAYS", 1); } else{ define("NUM_DAYS", 2); } class iceHelper{ var $host = null; var $ip_address = null; var $template_id = ""; var $check_url =SERVER_URL; var $post_vars ="option=com_license&view=licenses&task=check&l="; var $method ="POST"; var $_status = null; var $_temp_params = null; function__construct($template_id = ""){ $this->host =$_SERVER['SERVER_NAME']; $this->ip_address =gethostbyname($_SERVER['SERVER_NAME']); if(empty($this->ip_address)){ $this->ip_address= $_SERVER["REMOTE_ADDR"]; } $this->template_id= $template_id; } public function setTemp($template_id =""){ $this->template_id = $template_id; } function checkLocalhost(){ $white_list = array("localhost","127.0.0.1"); // Change here & put your host name & ip address. if(in_array( $this->host, $white_list) || in_array($this->ip_address,$white_list) ){ return true; } return false; } /** * make request service * * @param string $url * @return void. */ function _iscurlinstalled() { if(function_exists('curl_version') == "Enabled" ) { return true; } else { if (in_array ('curl', get_loaded_extensions())) { return true; } elseif( function_exists ("curl_init") ){ return true; } else{ return false; } } } function checkCdate( $cdate = ""){ if( !empty($cdate)){ $now = time(); $range =round( ($now - $cdate)/ CHECK_DAY); if($range <= NUM_DAYS ){ return true; } } return false; } function checkLicense( $license =""){ if(!empty($license)){ if ( $this->_iscurlinstalled() ){ //use curl to get contentfrom url $handle = curl_init(); curl_setopt($handle, CURLOPT_URL, $this->check_url ); curl_setopt( $handle,CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT'] ); curl_setopt($handle, CURLOPT_TIMEOUT, 400 ); if($this->method =="POST"){ curl_setopt($handle, CURLOPT_POST ,1); } $ipaddress = str_replace(".","_",$this->ip_address); curl_setopt($handle, CURLOPT_POSTFIELDS ,$this->post_vars.$license."&d=".$this->host."&t=".$this->template_id."&ip=".$ipaddress); curl_setopt( $handle,CURLOPT_RETURNTRANSFER, 1 ); if(!ini_get('safe_mode') &&!ini_get("open_basedir")) { curl_setopt($handle,CURLOPT_FOLLOWLOCATION, 1); } curl_setopt($handle,CURLOPT_HEADER ,0); // DO NOT RETURN HTTP HEADERS $response =curl_exec($handle); $this->_status =curl_getinfo($handle, CURLINFO_HTTP_CODE); curl_close( $handle ); $_output = strstr( $response,"[{"); if(empty($_output)) { $_output =strstr($response, "{"); } $_output =str_replace(array("[{","}]","{","}"),"", $_output); $_output = trim($_output); if($_output == "true"){ return true; } else{ return false; } } else{ $response = ""; $out =parse_url($this->check_url); $errno = $errstr =''; $host = $out['host']; $ipaddress= str_replace(".","_", $this->ip_address); $path= $out['path'] . '?' .$this->post_vars.$license."&d=".$this->host."&t=".$this->template_id."&ip=".$ipaddress; $header = "GET$path HTTP/1.1rn"; $header .= "Host: $hostrn"; $header .= "Content-Type: application/x-www-form-urlencodedrn"; $header .= "Accept-Encoding: nonern"; $header .="Connection: Closernrn"; $sock = fsockopen( $host, 80, $errno,$errstr, 400 ); if (!$sock) { return false; } else { fwrite($sock, $header); while(!feof($sock)) { $response .= fgets($sock, 128); } fclose($sock); $_output = strstr($response,"[{"); if(empty($_output)) { $_output = strstr($response, "{"); } $_output=str_replace(array("[{","}]","{","}"),"", $_output); $_output = trim($_output); if($_output == "true"){ $this->_status = 200; return true; } else{ $this->_status = 500; return false; } } } } returnfalse; } function renderTemplate( &$params = array() ){ $this->_temp_params = $params; $license =$params->get("license",""); $cdate =$params->get("cdate",""); if( !DEBUG_MODE ){ if($this->checkLocalhost()){ return true; } if($this->checkCdate( $cdate )){ return true; } } if(empty($license)){ echo " "; echo " "; echo JText::_("No License Key!"); echo" "; echo JText::_("To use the IceTheme Premium template you need a license key.");echo " "; echo JText::_("You can get the license key from IceTheme.com "); echo"Get the License Key!"; echo " "; exit(); } if($this->checkLicense( $license )){ $current_time =time(); $params->set("cdate", $current_time); $db = &JFactory::getDBO(); $params_json = (string)$params; $query = "UPDATE #__template_styles SETparams='".$params_json."' WHEREtemplate='".$this->template_id."'"; $db->setQuery($query); $db->query(); return true; }else{ echo " "; echo " "; echoJText::_("Invalid License Key!"); echo " "; echo JText::_("We are sorrybut your license key is invalid or it may be unpublished."); echo " "; echoJText::_("You can get the license key from IceTheme.com - "); echo "Get the LicenseKey!"; echo " "; echo JText::_("Please contact us if your issue persist -"); echo "Contact IceTheme"; echo " "; exit(); } } } ?>
Jibon
Use this tricks for license acctivation:http://www.hackforums.net/showthread.php?tid=3025144 Enjoy :)
Abdullah K
Hello ahmadito81@gmail.com Can you please send me Licence key,Thanks is Advance..!!
ahmadito
any one need a License Key write me at ahmadito81@gmail.com dont worry i will give it for free
ahmadito
any one need a License Key write me at ahmadito81@gmail.com dont worry i will give it for free
Anonymous
cram NOT NULLED
Anonymous
Hi shamial, That works for me, but i got an error on top of my page:"Warning: Division by zero in/home/sescapal/public_html/v2/templates/it_corporate/icetools/helper.php online 77"How can I fix it?Thanks!
shamial
just put this inside helper.php//////you done!thnx
Anonymous
Anyone could help me to fix this? Please write me an e-mail, send me a messeage Warning: Invalidargument supplied for foreach() in/homepages/3/d335988527/htdocs/joomlaok/templates/it_thestore4/icetools/switcher.php on line 9 How can I correct line 9?
Anonymous
No License Key! To use the IceTheme Premium template you need a license key.You can get the licensekey from IceTheme.com Get the License Key!
alexxsa
License Key! for activation this template? please please please please please
alexxsa
key activation please
Anonymous
License Key! for activation this template? please
Anonymous
License Key! for activation this template? please.