Welcome Guest, Not a member yet? Register   Sign In
Captcha image not showing?
#11

[eluser]PAstorKill[/eluser]
The code of captcha_lib:



<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Captcha_lib
{
public function captcha_actions()

{
$CI = & get_instance();

$CI->load->plugin('captcha_pi');

$CI->load->helper('string');
$rnd_str = random_string('numeric',5);

$ses_data= array();
$ses_data['rnd_captcha'] = $rnd_str;
$CI->session->set_userdata($ses_data);


$settings = array ('word' => $rnd_str,
'img_path' => './img/captcha/',
'img_url' => base_url().'/img/captcha',
'font_path' => './system/fonts/LucidaBrightDemiBold.ttf',
'img_width' => 120,
'img_height' => 30,
'expiration' => 10);

$captcha = create_captcha($settings);


$imgcode = $captcha['image'];
return $imgcode;
}

}



?>


Why browser says that - Call to undefined method CI_Loader::plugin() ??????????


Messages In This Thread
Captcha image not showing? - by El Forum - 12-13-2010, 03:13 AM
Captcha image not showing? - by El Forum - 12-13-2010, 03:26 AM
Captcha image not showing? - by El Forum - 12-13-2010, 08:48 AM
Captcha image not showing? - by El Forum - 12-13-2010, 08:57 AM
Captcha image not showing? - by El Forum - 12-13-2010, 09:05 AM
Captcha image not showing? - by El Forum - 12-13-2010, 09:15 AM
Captcha image not showing? - by El Forum - 12-13-2010, 09:21 AM
Captcha image not showing? - by El Forum - 01-24-2011, 03:51 AM
Captcha image not showing? - by El Forum - 05-03-2011, 02:52 AM
Captcha image not showing? - by El Forum - 05-17-2011, 04:17 AM
Captcha image not showing? - by El Forum - 05-17-2011, 05:17 AM
Captcha image not showing? - by El Forum - 07-21-2011, 03:47 AM
Captcha image not showing? - by El Forum - 11-03-2012, 02:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB