i uploaded my project wordpress hosting domain , and updated my php version to 8.0 but
Class "PDO" not found error . its working in another domain perfectly . how to solve this
@Neethu Ah If you don't see any PDO related information with phpinfo() the extensions are not enabled for your php-fpm process.
If you inspect the table, you will find Loaded Configuration File. Edit this file, search for the list of extensions (extension=) and add at least the following to the configuration:
extension=mysqli
extension=pdo_mysql
Don't forget to restart your php.
Depending on your environment, you can find some more documentation here.