For use after an upgrade to verify the correct working of Magento
- Activate all logs on the server (PHP, MySQL, Magento, mail, etc)
- Check meta tags in HTML
| # Original blog post: <https://mnx.io/blog/a-proper-server-naming-scheme/> | |
| # Original word list: <http://web.archive.org/web/20091003023412/http://tothink.com/mnemonic/wordlist.txt> | |
| # Sample usage: `curl <gist> | tail --lines +4 | shuf | head --lines 1` | |
| acrobat | |
| africa | |
| alaska | |
| albert | |
| albino | |
| album | |
| alcohol |
| #!/bin/bash | |
| # This script checks if there is enough diskspace available on your hypernode | |
| # to create a basic staging environment as explained in | |
| # - https://support.hypernode.com/knowledgebase/using-a-basic-staging-environment-magento1/ | |
| # and | |
| # - https://support.hypernode.com/knowledgebase/using-a-basic-staging-environment-magento2/ | |
| # To use it, download or copy the script and make it executable. | |
| # is there enough space? | |
| DBNAME=$(magerun --root-dir=~/public db:info dbname) |