Friday, May 6, 2022

Remove PHP version from Ubuntu 20.04

 $ sudo apt-get purge php7.*

$ sudo apt-get autoclean

$ sudo apt-get autoremove

No comments:

Post a Comment

SQL to delete all WooCommerce products except those with "draft" status

 -- Disable foreign key checks (important for InnoDB) SET     FOREIGN_KEY_CHECKS = 0;     -- Delete product meta DELETE     pm FROM     wp_p...