Tuesday, June 22, 2021

Zip Extension for PHP 7.2 on CentOS 8

 yum install php-pecl-zip

apachectl restart

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...