Julio Montoya
PHP developer at Chamilo
Updates
-
thanks to the community and the #chamilo association for this code sprint4 days ago from web | Reply, Retweet, Favorite
-
En el sprint code de #chamilo 1.95 days ago from web | Reply, Retweet, Favorite
-
2 weeks ago from web | Reply, Retweet, Favorite
-
Updating the BigBlueButton plugin in Chamilo LMS2 weeks ago from web | Reply, Retweet, Favorite
-
New #chamilo CSS based in this https://t.co/5UBRw9s8 great!4 weeks ago from web | Reply, Retweet, Favorite
-
If you want to be a member follow these easy steps: http://t.co/mFWjnqRc4 weeks ago from web | Reply, Retweet, Favorite
-
I'm a new member of the Chamilo Association it was about time!!4 weeks ago from web | Reply, Retweet, Favorite
-
Improving the Chamilo Big Blue Button plugin ...4 weeks ago from web | Reply, Retweet, Favorite
-
Downloading #chamilo translations from http://t.co/DFsr632l4 weeks ago from web | Reply, Retweet, Favorite
-
Preparing Chamilo LMS Alpha 34 weeks ago from web | Reply, Retweet, Favorite
-
More than 140 changes to 93 files between Chamilo Alpha2 and Chamilo Alpha 3 ...4 weeks ago from web | Reply, Retweet, Favorite
-
Chamilo LMS 1.9 Alpha 3 will be released today.4 weeks ago from web | Reply, Retweet, Favorite
-
You want to sell your Chamilo courses? Just use the Chamilo-Prestashop plugin to configure your chamilo portal.5 weeks ago from web | Reply, Retweet, Favorite
-
Chamilo LMS a *true* e-learning open source project5 weeks ago from web | Reply, Retweet, Favorite
-
I just noticed that we have 26 different #chamilo themes ready to use!5 weeks ago from web | Reply, Retweet, Favorite
Posts
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
Install basic stuff as root
apt-get install 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 Create a deployer user
Add group admin (sudoers)
addgroup admin
Add user as a deployer:
adduser deployer –in group admin
su deployer
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:
rvm requirements
Install RVM
rvm install 1.9.3 source /usr/local/rvm/scripts/rvm rvm –default use 1.9.3 ruby -v
Install passenger First you need to install this:
sudo apt-get install libcurl4-openssl-dev sudo apt-get install libcurl4-openssl-dev apache2-prefork-dev libapr1-dev libaprutil1-dev gem install passenger passenger-install-nginx-module
rvmsudo passenger-install-nginx-module
sudo adduser deployer rvm
Start/stop nginx http://library.linode.com/frameworks/ruby-on-rails-nginx/ubuntu-10.10-maverick
I had the same issue using Ubuntu and I resolved it this way:
Edit your netbeans.conf and add this line in your “netbeans_default_options” string
-laf Nimbus -J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd”
so you finally have something like:
> netbeans_default_options=”-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true –laf Nimbus -J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd”