humboldtk
Forum Replies Created
-
Got it thank you!
Forum: Everything else WordPress
In reply to: SPAM!!! HELP!!!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 pricesMessage Body:
Прывітанне, я хацеў даведацца Ваш прайс.From: Roberthab xxxxxxxxxxx@gmail.com
Subject: Hi i write about the pricesMessage Body:
Ndewo, achọrọ m ịmara ọnụahịa gị.From: Roberthab xxxxxxxxxxx@gmail.com
Subject: Hello, write about pricesMessage Body:
Hi, kam dashur të di çmimin tuajFrom: Roberthab xxxxxx@gmail.com
Subject: Aloha, i wrote about the pricesMessage Body:
Hæ, ég vildi vita verð þitt.- This reply was modified 2 years, 3 months ago by Steven Stern (sterndata). Reason: removed email addresses
Forum: Plugins
In reply to: [Cloudflare] Need Fix | Deprecation Notices | PHP 8.2.7Hello! 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.phpand paste it just above the line where it hasprotected $wordPressWrapper;(was line 15 for me) .The second error
Creation of dynamic property CF\WordPress\Proxy::$pluginAPI is deprecatedis just as easy fix, go into/wp-content/plugins/cloudflare/src/WordPress/Proxy.phpand paste thisprotected $pluginAPI;right under the lineprotected $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.