Guest N402KC Posted March 18, 2010 Report Share Posted March 18, 2010 Hi, After filing a Manual Pirep, I am receiving the following error; Deprecated: Function split() is deprecated in /home/brian/public_html/core/lib/phpmailer/class.phpmailer.php on line 477 Any Fixes? Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted March 18, 2010 Administrators Report Share Posted March 18, 2010 Looks like you must be running php 5.3.x on your server, the split command was deprecated in the new version. You can turn off error reporting so it doesnt show up, I am pretty sure it will not hurt the app any. I run php5.3 on my local development box and had to turn off php error reporting, i was too lazy to rewrite it. Quote Link to comment Share on other sites More sharing options...
Guest N402KC Posted March 19, 2010 Report Share Posted March 19, 2010 Looks like you must be running php 5.3.x on your server, the split command was deprecated in the new version. You can turn off error reporting so it doesnt show up, I am pretty sure it will not hurt the app any. I run php5.3 on my local development box and had to turn off php error reporting, i was too lazy to rewrite it. how do i go about turning it off? Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted March 19, 2010 Administrators Report Share Posted March 19, 2010 in your php.ini find error_reporting = and change it to error_reporting = E_ALL & ~E_NOTICE reboot the server I think there may be a command in the phpvms local config as well..... not sure right off hand.... Quote Link to comment Share on other sites More sharing options...
Guest N402KC Posted March 19, 2010 Report Share Posted March 19, 2010 ok i did that, still getting all errors Quote Link to comment Share on other sites More sharing options...
Guest N402KC Posted March 19, 2010 Report Share Posted March 19, 2010 Its ok thought. Im recompiling apache to 5.2.13 V of PHP. Hopefully it will run fine Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted March 19, 2010 Administrators Report Share Posted March 19, 2010 Its ok thought. Im recompiling apache to 5.2.13 V of PHP. Hopefully it will run fine Did you change the php.ini file both in the apache config and the php config. Depending on the setup of your server it may be relying on one or the other. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 19, 2010 Administrators Report Share Posted March 19, 2010 I think you have to add ~ E_DEPRECATED as well. I'll see if there's an update for 5.3 for mailer Edit It's already at the latest version, which has the split() taken out. So maybe you're on an older version yourself. I don't remember if I updated this post 2.0, or if it was for 2.0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.