Delete All Customer and Products in Magento

Delete All Customer and Products in Magento It can be pain spanking task to delete all products and customers in magento when there are thousands of them. We can use the sql to delete all customer and products in magento To delete all customers SET FOREIGN_KEY_CHECKS=0; — reset customers TRUNCATE customer_address_entity; TRUNCATE customer_address_entity_datetime; TRUNCATE customer_address_entity_decimal; […]

Set up virtual host and integrate git with auto pull

Git With Auto Pull This script will help to create a git repo and also a virtual host on your system. You can clone and commit to the repo, all the changes will be directly applied to the production server, i.e git with auto pull feature. This assumes that you have a user called git […]