- Direct download Magento extensions: http://freegento.com/ddl-magento-extension.php
- Delete all orders from database: http://www.codelogbook.com/remove-all-orders-from-magento-database/
- Magereverse http://www.magereverse.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- gentoo.igz/init.orig 2013-07-29 16:56:59.274531548 +0200 | |
| +++ gentoo.igz/init 2013-07-29 16:53:28.636472431 +0200 | |
| @@ -254,6 +254,11 @@ | |
| nounionfs) | |
| USE_UNIONFS_NORMAL=0 | |
| ;; | |
| + autoinstall) | |
| + AUTO_INSTALL_URL=${x#*=} | |
| + export AUTO_INSTALL_URL | |
| + good_msg "Autoconfiguration from ${AUTO_INSTALL_URL}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################### | |
| # The MIT License | |
| # | |
| # Copyright 2012-2014 Jakub Jirutka <[email protected]>. | |
| # | |
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| IPTABLES="/sbin/iptables" | |
| GW_IP="X.X.X.X" | |
| SERVER_IP="10.0.2.15" | |
| GW_PORT=7080 | |
| S_PORT=8080 | |
| $IPTABLES -t nat -A PREROUTING -p tcp --dst $GW_IP --dport $GW_PORT -j DNAT --to-destination $SERVER_IP:$S_PORT | |
| $IPTABLES -t nat -I POSTROUTING -p tcp --dst $SERVER_IP --dport $S_PORT -j SNAT --to $GW_IP | |
| echo 1 > /proc/sys/net/ipv4/ip_forward |
NewerOlder