Julio Montoya
PHP developer at Chamilo
Updates
-
RT @newsycombinator: Gnome 3.7 removes terminal transparency; closing bug with simply "No." http://t.co/CZTHd21I4D
-
RT @phpizer: Boris — небольшой, но надежный REPL для php / Хабрахабр http://t.co/P0ImkJ9foC
-
@pjedrzejewski there you go https://t.co/Bg8FYZTdKz3 weeks ago from web | Reply, Retweet, Favorite
-
@jkbockstael yeap, you just click fork start editing and send a pull request!
-
I just updated the Chamilo logos what to check the diffs? https://t.co/xffwcprS7h4 weeks ago from web | Reply, Retweet, Favorite
-
RT @ChamiloSpain: La maratón de corrección de Chamilo ha comenzado, te esperamos!: http://t.co/KnF9mkwl1a4 weeks ago from web | Reply, Retweet, Favorite
-
Ready for a bug fix marathon?? #chamilo4 weeks ago from web | Reply, Retweet, Favorite
-
4 weeks ago from web | Reply, Retweet, Favorite
-
RT @newsycombinator: Don't Copy-Paste from Website to Terminal http://t.co/2tesmmtzjN
-
RT @phpizer: You got Symfony in my Drupal 8! | CrossFunctional http://t.co/O4yKGeTDln
-
RT @phpizer: SilexServiceProvider/doc/snappy.md at master · GromNaN/SilexServiceProvider · GitHub http://t.co/Z80BIV9YYe
-
RT @pminnieur: #Silex should be renamed Pimpfony.
-
Zend Framework is also migrating to github, they will also use issues! http://t.co/jezBk7O9wi
-
I was working in the new version of Chamilo chash, you can backup your Chamilo db, imp/exp langs, clean temp files from the command line!
-
RT @derickr: Oh my god. If you think development on Windows couldn't get worse you should try to do something with MS VS 2012 on Win 8...
-
RT @martinvars: Love those Amazon reviewers that trash the product but still give it a lot of stars. They should hire them as high schoo ...
-
RT @mdo: Bootstrap has passed 47,000 stars on GitHub. We should probably start planning for that 50k party ;).
-
intro.js http://t.co/GAoPfCfTZS2 months ago from web | Reply, Retweet, Favorite
Posts
Want to link your Chamilo with Prestashop? Follow the indications that you will seen on this webpage
http://code.google.com/p/prestashop-chamilo/
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
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
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”