when i successed install this module .. i got this error
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 204
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 208
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 208
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 208
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 208
Deprecated: Function eregi() is deprecated in /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php on line 208
Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204) in /home/xxxxx/public_html/includes/bootstrap.inc on line 641
Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204) in /home/xxxxx/public_html/includes/bootstrap.inc on line 642
Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204) in /home/xxxxx/public_html/includes/bootstrap.inc on line 643
Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204) in /home/xxxxx/public_html/includes/bootstrap.inc on line 644
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1007: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1007: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1007: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/sites/all/modules/osmobiclient/osmobiLib/OsmobiLib.php:204)
and my website cannot be access..its full with this error..would u help me please??
thanks
Comments
Comment #1
kakajoe commentedanyone ??
Comment #2
kakajoe commentedanyone ??
Comment #3
jellicle_it commentedI'm having the same issue in my test server after upgrading php to version 5.3.
Function eregi() is deprecated in php 5.3.x, I hope someone at Osmobi is working on it.
Comment #4
twom commentedHi,
You are probably using strict error reporting for your site with PHP5.3.
We will fix this problem (by using perg_match), but in meantime it can be good to but a less strict error reporting level on your production site. In your php.ini file you will find something like this:
error_reporting = E_ALL
You can change this to:
error_reporting = E_ALL ^E_DEPRECATED (now this error message will disappear)
For a next release we will the OsmobiLib code.
Comment #5
jellicle_it commentedI have applied changes to php.ini and error messages went away, thank you!