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 | |
| /* | |
| * Test PHP IN CHROOT | |
| */ | |
| $remoteUrl = "http://www.cyberciti.biz/files/lighttpd/l2chroot.txt"; | |
| $testMail = "[email protected]"; | |
| $testHostname = "google.com"; | |
| ini_set("display_errors", 1); |
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 | |
| # Use this script to copy shared (libs) files to Apache/Lighttpd chrooted | |
| # jail server. | |
| # ---------------------------------------------------------------------------- | |
| # Written by nixCraft <http://www.cyberciti.biz/tips/> | |
| # (c) 2006 nixCraft under GNU GPL v2.0+ | |
| # + Added ld-linux support | |
| # + Added error checking support | |
| # ------------------------------------------------------------------------------ | |
| # See url for usage: |
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
| namespace Fmdb\CoreBundle\Composer; | |
| use Sensio\Bundle\DistributionBundle\Composer\ScriptHandler as BaseScriptHandler; | |
| use Symfony\Component\ClassLoader\ClassCollectionLoader; | |
| use Symfony\Component\Process\Process; | |
| class ScriptHandler extends BaseScriptHandler | |
| { | |
| public static function installBowerAssets($event) | |
| { |
NewerOlder