Peter Frank
Peter Frank
Original line 526: `if ( ! ctype_digit($this->cur_page) OR ($this->use_page_numbers && (int) $this->cur_page === 0))` Possible fix for PHP 8.1: `if ( ! ctype_digit((string)$this->cur_page) OR ($this->use_page_numbers && (int) $this->cur_page === 0))`
Default install location: C:\Program Files\TablePlus\
I tested on a Laravel project using sqlite and on a Laravel project using mysql db connection. Additional info: I am using DBngin (https://dbngin.com/) for mysql and redis. If I...