Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter humboldtk

    (@humboldtk)

    Got it thank you!

    I have been getting these exact emails and was wondering what its about. Here are some of the emails I’ve gotten,

    From: Roberthab [email protected] Subject: Hi i am write about prices Message Body: ???, ??? ????? ????? ????? ??????????.

    From: [email protected]
    Subject: Hi, i am wrote about your the prices

    Message Body:
    Прыв?танне, я хаце? даведацца Ваш прайс.

    From: [email protected]
    Subject: Hi ?i write about ? the prices

    Message Body:
    Ndewo, ach?r? m ?mara ?n?ah?a g?.

    From: [email protected]
    Subject: Hello, ? write about ? ? prices

    Message Body:
    Hi, kam dashur t? di ?mimin tuaj

    From: [email protected]
    Subject: Aloha, i wrote about ? the prices

    Message Body:
    H?, ég vildi vita vere titt.

    Hello! To fix this we need to declare it in the class definition. The first error message "Creation of dynamic property CF\WordPress\DataStore::$logger is deprecated" you just need to copy this:

        /**
         * @var DefaultLogger
         */
        protected $logger;

    go into /wp-content/plugins/cloudflare/src/WordPress/DataStore.php and paste it just above the line where it has protected $wordPressWrapper; (was line 15 for me) .

    The second error Creation of dynamic property CF\WordPress\Proxy::$pluginAPI is deprecated is just as easy fix, go into /wp-content/plugins/cloudflare/src/WordPress/Proxy.php and paste this protected $pluginAPI; right under the line protected $requestRouter; .. So the section should look like this:

        protected $config;
        protected $dataStore;
        protected $logger;
        protected $wordpressAPI;
        protected $wordpressClientAPI;
        protected $wordpressIntegration;
        protected $requestRouter;
        protected $pluginAPI;

    Both errors are now fixed!

    • This reply was modified 1 year, 8 months ago by humboldtk.
Viewing 3 replies - 1 through 3 (of 3 total)