I hereby claim:
- I am ashsmith on github.
- I am ashsmithco (https://keybase.io/ashsmithco) on keybase.
- I have a public key ASD-2LpasgMgAYQtopgcqsXXfxiWb1RulBqaQqehaHeZMAo
To claim this, I am signing this object:
| <type name="Magento\Cms\Model\Wysiwyg\Images\Storage"> | |
| <arguments> | |
| <argument name="extensions" xsi:type="array"> | |
| <item name="image_allowed" xsi:type="array"> | |
| <item name="svg" xsi:type="string">image/svg+xml</item> | |
| </item> | |
| </argument> | |
| </arguments> | |
| </type> |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| namespace Ashsmith\Blog\Controller\Adminhtml\Post; | |
| use Magento\Backend\App\Action; | |
| class Edit extends \Magento\Backend\App\Action | |
| { | |
| /** | |
| * Core registry | |
| * |
| #!/bin/sh | |
| # enable "ps [-p] PID" for /bin/ps from busybox (like Alpine) | |
| # copy this script as /usr/local/bin/ps or /usr/bin/ps, and chmod 755 it. | |
| if [ $# == 1 ]; then | |
| echo $1 | grep -q -E '^[0-9]+$' # number only argument | |
| if [ $? == 0 ]; then | |
| OPT_P=1 | |
| ARG_P=$1 | |
| fi |
| curl -A "'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)')" http://MYDOMAIN.COM/ --head |
| var disqus_config = function() { | |
| this.callbacks.onNewComment.push(function() { | |
| ga('send', { | |
| 'hitType': 'event', // Required. | |
| 'eventCategory': 'comments', // Required. | |
| 'eventAction': 'comment', // Required. | |
| 'eventLabel': 'New Comment' | |
| }); | |
| }); | |
| }; |
| /Applications/MAMP/Library/bin/mysql -u [username] -p databasename < file.sql | |
| #You will be prompted for the users password after |
| cd /to/magento/root/ | |
| modman init | |
| modman clone https://github.com/meanbee/gmailactions.git |
| # This configuration is what is provided by PageCache by Varnish for Magento module: | |
| # http://www.magentocommerce.com/magento-connect/pagecache-powered-by-varnish.html | |
| # default backend definition. Set this to point to your content server. | |
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "80"; | |
| } | |
| # admin backend with longer timeout values. Set this to the same IP & port as your default server. |
| -- Update Order increment id to start at 123456789 | |
| UPDATE `eav_entity_store` SET `increment_last_id` = '123456789' WHERE `entity_type_id` = '5';` | |
| -- Update Invoice increment id to start at 123456789 | |
| UPDATE `eav_entity_store` SET `increment_last_id` = '123456789' WHERE `entity_type_id` = '6'; | |
| -- Update Credit Memo increment id to start at 123456789 | |
| UPDATE `eav_entity_store` SET `increment_last_id` = '123456789' WHERE `entity_type_id` = '7'; | |
| -- Update Shipment increment id to start at 123456789 |