Twitter Updates
Error: Twitter did not respond. Please wait a few minutes and refresh this page.
Recomendations
Tags
7z apache broswer browser cakephp chamilo chrome comic compression css design Dokeos eclipse eclipse php e learning elearning extensions fckeditor firefox free ganymede google humor internet linux lucid mozilla navegador open source opera php php5 phpeclipse python rar search engine style subversion Tecnologia template toolbar ubuntu webdesign youtube zipMis favoritos en flickr








More Photos
My latest commits- An error has occurred; the feed is probably down. Try again later.
My BeezNest posts- An error has occurred; the feed is probably down. Try again later.
Chamilo with Prestashop
Want to link your Chamilo with Prestashop? Follow the indications that you will seen on this webpage
The –deployment flag requires a Gemfile.lock – Capistrano – RVM – Bundler
In your server:
$ which bundle
/usr/local/rvm/gems/ruby-1.9.3-p125/bin/bundle
Add this in your deploy.rb
set :bundle_cmd, ”/usr/local/rvm/gems/ruby-1.9.3-p125/bin/bundle”
If you have your repo in a subdirectory:
http://stackoverflow.com/questions/29168/deploying-a-git-subdirectory-in-capistrano
Posted in Uncategorized
Install Apache2 PHP + RVM/Passenger Ruby in Ubuntu 12.04 (Linode)
Read this in order to start well
http://library.linode.com/getting-started
Install Apache + PHP
http://library.linode.com/hosting-website#sph_installing-apache
Install nginx stuff as root
apt-get update
apt-get install curl git-core python-software-properties
add-apt-repository ppa:nginx/stable
apt-get install update
sudo apt-get install build-essential git-core curl libmysqlclient16-dev nodejs
To install Apache (with PHP if you want to)
Create a deployer user and add a group admin (sudoers)
addgroup admin
Add user as a deployer:
adduser deployer
adduser deployer admin
su deployer
Install mercurial (if needed)
apt-get install mercurial
Install mysql
apt-get install mysql-server mysql_secure_installation
Install RVM
sudo bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
reload config
source /etc/profile.d/rvm.sh
Check requirements and install missing packages
rvm requirements
Install RVM
rvm install 1.9.3
rvm –default use 1.9.3source /usr/local/rvm/scripts/rvm rvm –default use 1.9.3
ruby -v
Install Rails
gem install rails
gem install mysql
Before installing passenger:
sudo apt-get install libcurl4-openssl-dev apache2-prefork-dev libapr1-dev libaprutil1-dev
Install passenger:
gem install passenger
passenger-install-apache2-module — (follow instructions)
sudo adduser deployer rvm
Deploy with capistrano
cap deploy:check
cap deploy:setup — (first time)
cap deploy:cold — (to install the DB)
cap deploy:migrate –(installs migrations)
cap deploy — normal behaviour
http://library.linode.com/frameworks/ruby-on-rails-nginx/ubuntu-10.10-maverick
Posted in Uncategorized




