Deprecated: Function eregi() is deprecated

HomeSupportImage StoreDeprecated: Function eregi() is deprecated

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #52731
    franklin82
    Participant

    Upon a purchase I’m getting the following error message at the top of my site

    Deprecated: Function eregi() is deprecated in /public_html/wp-content/plugins/image-store/_inc/gateways/paypal.php on line 81

    Not sure if this is plug-in related or if this is PHP related

    Thanks!

    #52784
    Xpark Media
    Keymaster

    @franklin82,

    is related to both, looks like you are using php 5.3 and the function has been deprecated, I will make the change on on the next release.

    If you need to make the change change the line

    if ( !eregi( 'VERIFIED', $info ) ) {

    for

    if ( !preg_match( '/VERIFIED/', $info ) ) {
    #52831
    franklin82
    Participant

    Thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.