Beyaz.Net İpucu

KATEGORİLER

Delphi
PHP
Dotnet
FileMaker

Codeigniter captcha ekleme

Öncelikle oluşturduğumuz resimleri atmak için,

Root da captcha adında bir klasor oluşturup, chmod özelliğini 777 yapıyoruz.

ht access dosyamızda Re write Cond satırını ekliyoruz ki resimlerimiz görünsün.

Rewrite Cond $1 !^(index\.php|captcha|Scripts|images|robots\.txt|favicon\.ico)  


Sonra class yapımızın bulunduğu controllers klasorundeki sayfaya


$vals = '';

$this->session->keep_flashdata('msg');  
        
$this->load->plugin('captcha');    
 

$vals = array(
          'img_path'  => './captcha/',
           'img_url'  => 'http://trtbosanski.com/captcha/',
           'font_path'  => './system/fonts/texb.ttf',
           'img_width'  => '100',
           'img_height' => 25,
           'expiration' => 7200
           
           
             );


$this->lo ad->plugin('captcha');    
 

$vals = array(
          'img_path'  => './captcha/',
           'img_url'  => 'http://trtbosanski.com/captcha/',
           'font_path'  => './system/fonts/texb.ttf',
           'img_width'  => '100',
           'img_height' => 25,
           'expiration' => 7200
           
           
             );


$this->data['cap'] = cre ate  _ captcha($vals);
i    f   (   !   (   $this->in put->po  st ('captcha')))    $this->ses sion->set _ user data('captcha_word',$this->data['cap']['word']);

Kontrolu için

$captcha = $this->input->post('captcha');
 
if(str to lower($captcha) != str to lower($this->ses sion->user data('captcha_word')))
    $hata = "'Güvenlik kodu hatalı";



Son olarak forma Güvenlik Kodunun gösterimini eklemek için, mesala view_uyegiris.php sayfamıza


<label for="edcaptcha" style="float:left;width:150px;text-align:right;margin-top:-10px;padding-top:8px;"><?=$cap['image'];?></label>
<label for="edcaptcha" style="float:left;width:450px;text-align:left;margin-top:10px;padding-left:5px;"><input type="text" name="captcha" id="captcha" size="35" value="" style="float:left;"/></label>

satırlarını ekliyoruz.



Çalışan sayfa : http://www.trtbosanski.com/bs/main/izjasnitese

Kategorideki Güncel Makaleler