SSH into Root
$ ssh root@123.123.123.123
Change Root Password
SSH into Root
$ ssh root@123.123.123.123
Change Root Password
| * Downloaded or downloading | |
| ============================= | |
| **http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html | |
| **http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html | |
| **http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html | |
| **http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html | |
| **http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html | |
| *http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html | |
| *http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html |
| # ====================================================================== | |
| # admin/file_managers.js.coffee | |
| # | |
| # Description: | |
| # contains snippets & functions for handling file-manager-related operation. | |
| # ====================================================================== | |
| root = exports ? this | |
| $ -> |
| <?php | |
| class fileManagerFacade { | |
| private $fileSync = null; | |
| private $elFinder = null; | |
| private $connector = null; | |
| private $rootDirName = 'files-manager'; | |
| private $visibleFileTypes = []; |
| <? | |
| class leafFile extends leafBaseObject | |
| { | |
| const tableName = 'leafFiles'; | |
| const defaultFolderMode = 0775; // rwx rwx r-x | |
| const defaultFileMode = 0666; // rw- rw- rw- | |
| const inputFieldSuffix = '_hash'; |
| <?php | |
| class leafFileSync{ | |
| private $enableLog = false; | |
| public function __construct($logSynchronization = false){ | |
| $this->enableLog = $logSynchronization; | |
| } | |
| public function sync($cmd, $result, $args, elFinder $elFinder, elFinderVolumeDriver $volume){ |
| # Run locally | |
| $ SPROCKETS_NON_DIGEST=true RAILS_ENV=production rake assets:precompile | |
| # Heroku setup | |
| $ heroku labs:enable user-env-compile | |
| $ heroku config:add SPROCKETS_NON_DIGEST=true |
| # encoding: UTF-8 | |
| # Place in config/deploy.rb | |
| namespace :rails do | |
| desc "Open the rails console on each of the remote servers" | |
| task :console do | |
| on roles(:app) do |host| #does it for each host, bad. | |
| rails_env = fetch(:stage) | |
| execute_interactively "ruby #{current_path}/script/rails console #{rails_env}" |
| require 'capistrano/rvm' |