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 lucido.leinteract@gmail.com Subject: Hi i am write about prices Message Body: হাই, আমি আপনার মূল্য জানতে চেয়েছিলাম.

    From: Roberthab xxxxxxxxx@gmail.com
    Subject: Hi, i am wrote about your the prices

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

    From: Roberthab xxxxxxxxxxx@gmail.com
    Subject: Hi  i write about   the prices

    Message Body:
    Ndewo, achọrọ m ịmara ọnụahịa gị.

    From: Roberthab xxxxxxxxxxx@gmail.com
    Subject: Hello,   write about     prices

    Message Body:
    Hi, kam dashur të di çmimin tuaj

    From: Roberthab xxxxxx@gmail.com
    Subject: Aloha, i wrote about   the prices

    Message Body:
    Hæ, ég vildi vita verð þitt.

    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 2 years, 10 months ago by humboldtk.
Viewing 3 replies - 1 through 3 (of 3 total)