







This is how I’v solved this issue, in a loop….
$this->load->library('image_lib', $resize_config);
if ( ! $this->image_lib->resize() )
{
echo $this->image_lib->display_errors();
exit();
}
$this->image_lib->clear();
$this->load->library('image_lib');
$this->image_lib->initialize($resize_config);
if ( ! $this->image_lib->resize() )
{
echo $this->image_lib->display_errors();
exit();
}
$this->image_lib->clear();
As heard on dekmantel Dekmantel Podcast 160 – Job Sifre
YET!, another awesome free theme for wordpress!!
Take a look!

https://demo.rarathemes.com/elegant-portfolio/
https://docs.rarathemes.com/docs/elegant-portfolio/
Just found a smooth free worpdress theme that I might use for something …..

$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$secret."&response=".$response);
$response = json_decode($response, true);
if($response["success"] === true){
// actions if successful
}else{
// actions if failed
}