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 | |
| # Shell script to backup MySQL database | |
| # Set these variables | |
| MyUSER="" # DB_USERNAME | |
| MyPASS="" # DB_PASSWORD | |
| MyHOST="" # DB_HOSTNAME | |
| # Backup Dest directory | |
| DEST="" # /home/username/backups/DB |
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
| /* | |
| * HTMLParser for Greasemonkey by snaka(http://d.hatena.ne.jp/snaka72/) | |
| * | |
| * Original coode written by swdyh(http://d.hatena.ne.jp/swdyh/) | |
| * This code includes part of AutoPagerize(http://userscripts.org/scripts/show/8551) | |
| * | |
| * Released under the GPL license | |
| * http://www.gnu.org/copyleft/gpl.html | |
| */ |
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
| <?php | |
| /********************** | |
| * | |
| * Errors / Dev | |
| * | |
| **********************/ | |
| // | |
| //Force enviroment to Dev ** REMOVE FOR LIVE SITES ** | |
| Director::set_environment_type("dev"); | |
| // |
NewerOlder