After installing the module , when trying to enter the administer section , php sends fatal error :
Fatal error: Call to undefined function ctype_alnum() in /home/httpd/picktheband.com/modules/video_upload/Zend/Uri.php on line 96
After installing the module , when trying to enter the administer section , php sends fatal error :
Fatal error: Call to undefined function ctype_alnum() in /home/httpd/picktheband.com/modules/video_upload/Zend/Uri.php on line 96
Comments
Comment #1
bubastix0 commentedcurrently , it happens after enabling the module.
Hope it helps!
Comment #2
jhedstromHey bubastix0,
What version of php are you running? Since the Zend libraries depend on php >= 5.1.4, this module does too...
-Jonathan
Comment #3
bubastix0 commentedactually , im developing on Version 5.2.2-pl1-gentoo , its any other thing that should i check on?
Comment #4
jhedstromThat's odd. The ctype_alnum() function is one of the character type functions:
http://us3.php.net/manual/en/ref.ctype.php
From what I can tell, it's part of core php, not an addition, so I don't know why your version wouldn't have that...
Comment #5
bubastix0 commentedyes , you are right , it is a module missing from apache , actually : php5-ctype
:) thanks for the quick response !
Comment #6
jhedstromYeah no problem.
Closing.
Comment #7
jhedstrom