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