I get an :
Fatal error: Call to undefined function: stripos() in /home/xatzimix/public_html/sites/all/modules/navigate/navigate_search/navigate_search.module on line 297
when I use the search widget. Feels like it depends on a later version of PHP...?
I'm running:
Drupal 6.9
Access to update.php Protected
Configuration file Protected
Cron maintenance tasks Last run 1 sec ago
You can run cron manually.
Database updates Up to date
Drupal core update status Up to date
File system Writable (public download method)
GD library bundled (2.0.28 compatible)
Module and theme update status Up to date
MySQL database 4.1.22
PHP 4.4.8
PHP memory limit
PHP register globals Disabled
Unicode library PHP Mbstring Extension
Update notifications Enabled
Web server Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Comments
Comment #1
chrisshattuck commentedThis is a PHP5 only function. I should get this fixed, but until I do, you can use the following to define the stripos function:
function stripos($haystack, $needle){
return strpos($haystack, stristr( $haystack, $needle ));
}
Comment #2
chrisshattuck commentedI have gone ahead and added a definition for this in Beta5, so no more errors! Woot!