0
Welcome Guest! Login
0 items Join Now

Deprecated: preg_replace(): The /e modifier is deprecated

  • Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • Hi, I upgraded my website and now I get the following error within my admin.

      Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/web343/public_html/libraries/rokcommon/RokCommon/Service/ContainerImpl.php on line 464

      The section of code on that line looks like this:

      /**
      * @static
      *
      * @param $id
      *
      * @return mixed
      */
      static public function camelize($id)
      {
      return preg_replace(array(
      '/(^|_|-)+(.)/e', '/\.(.)/e'
      ), array(
      "strtoupper('\\2')", "'_'.strtoupper('\\1')"
      ), $id);
      }

      I am using Joomla! 3.4.5 on a Linux server running PHP 5.5.30

      Template being used is the rt_ximenia
    • DanG's Avatar
    • DanG
    • Preeminent Rocketeer
    • Posts: 36750
    • Thanks: 3229
    • Custom work done

    Re: Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • This is because your using such a new version of PHP -> http://www.php.net/manual/en/migration55.deprecated.php . You can have your hoster set it back to PHP 5.4.x or DISABLE all error reporting.

      Admin -> Site -> Global Configuration -> Server -> Error Reporting -> set to MAXIMUM

      Create or find PHP.ini and set error_reporting as:
      error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED

      Also make sure your running:

      - Joomla 3.4.5
      - Ximenia 1.8
      - RokSprocket 2.1.9
  • Re: Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • Why would you say disable all error reporting then set to Maximum above?
  • Re: Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • I've been using this template for many years now, so there have been many changes done to it. I can't upgrade it. But I guess I will just have to live with the error. Thanks
    • DanG's Avatar
    • DanG
    • Preeminent Rocketeer
    • Posts: 36750
    • Thanks: 3229
    • Custom work done

    Re: Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • Deep Thought wrote:
      Why would you say disable all error reporting then set to Maximum above?

      Error reporting is to help spot something that may be eliminated as a root cause of the warning. Failing that shutting off the error_reporting removes the symptoms. Again its only a warning and NOT a Fatal Error.
    • DanG's Avatar
    • DanG
    • Preeminent Rocketeer
    • Posts: 36750
    • Thanks: 3229
    • Custom work done

    Re: Deprecated: preg_replace(): The /e modifier is deprecated

    Posted 9 years 4 months ago
    • webman08 wrote:
      I've been using this template for many years now, so there have been many changes done to it. I can't upgrade it. But I guess I will just have to live with the error. Thanks

      My local Ximenia runs on PHP Version - 5.6.8 with no such admin error. Can you try uninstalling RokSprocket and then downloading a fresh copy and then reinstall it.

Time to create page: 0.039 seconds