• Hi. I trying to migrate to PHP 8.0. I get a warning:

    Warning: The magic method Post_Views_Counter::__wakeup() must have public visibility in wp-content\plugins\post-views-counter\post-views-counter.php on line 98

    • This topic was modified 3 years, 4 months ago by bunito.
Viewing 1 replies (of 1 total)
  • To solve the problem just change private into public.

    	private function __wakeup() {
    	}
    
    	public function __wakeup() {
    	}
    
Viewing 1 replies (of 1 total)
  • The topic ‘PHP 8.0 Warning: __wakeup() must have public visibility’ is closed to new replies.