Welcome Guest, Not a member yet? Register   Sign In
captcha helper issue on live server
#1

Hi,
Captcha Helper "font_path" not working on live server. In line number 195 at captcha_helper.php file_exists($font_path) used in if condition.

This function always returning "FALSE" on live server. Locally working nicely.

Server:
CentOS

Following are tested still not working:

PHP Code:
$vals = array(
    
'img_path' => './captcha/',
    
'img_url' => base_url('captcha'),
    
'font_path' => $_SERVER['DOCUMENT_ROOT'].'/assets/fonts/ALGER.ttf',
.... 

and

PHP Code:
$vals = array(
    
'img_path' => './captcha/',
    
'img_url' => base_url('captcha'),
    
'font_path' => './assets/fonts/ALGER.ttf',
.... 

and

PHP Code:
$vals = array(
    
'img_path' => './captcha/',
    
'img_url' => base_url('captcha'),
    
'font_path' => FCPATH.'assets/fonts/ALGER.ttf',
.... 

and

PHP Code:
$vals = array(
    
'img_path' => './captcha/',
    
'img_url' => base_url('captcha'),
    
'font_path' => getcwd().'assets/fonts/ALGER.ttf',
.... 

and finally

PHP Code:
$vals = array(
    
'img_path' => './captcha/',
    
'img_url' => base_url('captcha'),
    
'font_path' => base_url('assets/fonts/ALGER.ttf'),
.... 

Now any idea?
The largest Bengali tutorial site on Web Development in this planet
Reply


Messages In This Thread
captcha helper issue on live server - by rejoan - 05-20-2015, 03:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB