Pear for 1.4, mage for 1.5. File downloaded into /downloader/.cache/community/
./pear download magento-community/Shipping_Agent
./mage download community Shipping_Agent
| The MIT License (MIT) | |
| Copyright (c) 2013 wackoen | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| the Software, and to permit persons to whom the Software is furnished to do so, | |
| subject to the following conditions: |
| ### Install DMitry pacakge before use | |
| ### sudo apt-get install dmitry | |
| ### | |
| import sys, subprocess | |
| if __name__ == "__main__": | |
| if len(sys.argv) != 2: | |
| print "usage: %s <file with IP list>" % sys.argv[0] | |
| sys.exit(1) | |
| #!/bin/bash | |
| # Make sure you are up to date | |
| yum -y update && yum -y install wget | |
| # Install EPEL repository | |
| rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
| # Get us a clean working directory | |
| mkdir /php |
| <body> | |
| <form method="post"> | |
| <input name="url"size="50" /> | |
| <input name="submit" type="submit" /> | |
| </form> | |
| <?php | |
| set_time_limit (24 * 60 * 60); | |
| if (!isset($_POST['submit'])) die(); | |
| // $destination_folder = 'download/'; | |
| $url = $_POST['url']; |
| ############################################# | |
| ### Proxmox V & Docker-CE + Portainer # | |
| ############################################# | |
| ## Rescue System | |
| # Erase other disks | |
| dd if=/dev/zero of=/dev/sda bs=1M count=100 | |
| dd if=/dev/zero of=/dev/sdb bs=1M count=100 | |
| # You can install debian 10 via the guide: |
Author: Michael van Rooijen (@mrrooijen)
DISCLAIMER: I am a programmer, not a sysadmin in my day-to-day life. I provide this guide simply as a self-reference, and as a way to contribute to the community of developers. The main motivation for writing this guide is because of the lack of properly written guides/tutorials. They were either out-dated, inaccurate, in a non-English language or simply too vague to understand (at least for me, as a programmer and not a sysadmin).
I hope this guide helps getting you up and running with your own collection of VPS's on your own Dedicated Server over at Hetzner.de.
Requirements:
| <?php | |
| echo '<pre>'; | |
| echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL; | |
| // Download file | |
| file_put_contents('wp.zip', file_get_contents('https://wordpress.org/latest.zip')); | |
| $zip = new ZipArchive(); | |
| $res = $zip->open('wp.zip'); | |
| if ($res === TRUE) { |
| server { | |
| listen 80 default_server; | |
| server_name readydedis.com www.readydedis.com; | |
| return 301 https://readydedis.com$request_uri; | |
| } | |
| # HTTPS server | |
| # | |
| server { | |
| listen 443; |