📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
catalog
/
controller
/
extension
/
captcha
📝
google.php
← Geri Dön
<?php class ControllerExtensionCaptchaGoogle extends Controller { public function index($error = array()) { $this->load->language('extension/captcha/google'); if (isset($error['captcha'])) { $data['error_captcha'] = $error['captcha']; } else { $data['error_captcha'] = ''; } $data['site_key'] = $this->config->get('captcha_google_key'); $data['route'] = $this->request->get['route']; return $this->load->view('extension/captcha/google', $data); } public function validate() { if (empty($this->session->data['gcapcha'])) { $this->load->language('extension/captcha/google'); if (!isset($this->request->post['g-recaptcha-response'])) { return $this->language->get('error_captcha'); } $recaptcha = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret=' . urlencode($this->config->get('captcha_google_secret')) . '&response=' . $this->request->post['g-recaptcha-response'] . '&remoteip=' . $this->request->server['REMOTE_ADDR']); $recaptcha = json_decode($recaptcha, true); if ($recaptcha['success']) { $this->session->data['gcapcha'] = true; } else { return $this->language->get('error_captcha'); } } } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula