"Fatal error: Call to undefined function: stripos()" ใน Joomla! 1.5.7 เมื่อใช้ PHP 4

เซียน 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:

http://docs.joomla.org/Category:Version_1.5.7_FAQ

Leave a Reply

Your email address will not be published. Required fields are marked *