เซียน Joomla คงรู้อยู่แล้ว แต่ส่วนตัวเพิ่งเจอปัญหานี้ เพราะปกติจะใช้ PHP 5
วิธีแก้ง่ายๆก็คือสร้าง function ที่หาไม่เจอซะ
Add this to the end of /libraries/joomla/utilities/compat/php50x.php
if (!function_exists( 'stripos' )) { function stripos( $haystack, $needle, $offset = 0 ) { return strpos( strtolower( $haystack ), strtolower( $needle ), $offset ); } }
Reference: