suitenowbot

Install Clockingit En Windows

Install Clockingit En Windows Rating: 5,5/10 8792 reviews

Hoping help anyone who has problem in installing of clockingit.1. Install Ubuntu desktop v10.04.2. Get update database of Ubuntu.sudo apt-get update3. Upgrade your Ubuntu S.O.sudo apt-get upgrade4. Get mysql, ruby, rubygems libraries.

Install Clockingit En Windows

Someone says ruby v1.9 is much faster than v1.8. I try to install v1.9 before, but the system reports is missing files.sudo aptitude install apache2 mysql-client mysql-server imagemagick libmagick9-dev ruby-full rubygems git-core libmysqlclient16-dev build-essential rails libmysql-ruby1.85. Use gem to install rails v2.3.8.sudo gem install rails -v=2.3.86. Install mysql2.sudo gem install mysql27. Install erubis.sudo gem install erubis8. Create user in mysql.

I use the user name: cit.echo “ CREATE USER ’cit’@’localhost’ IDENTIFIED BY ‘cit’;” mysql -u root -p mysql9. Create database in mysql. I use the database name: cit.echo “ CREATE DATABASE cit DEFAULT CHARACTER SET utf8 COLLATE utf8generalci; GRANT ALL ON cit. TO ’cit’@’localhost’ IDENTIFIED BY ‘cit’; FLUSH PRIVILEGES;” mysql -u root -p10. Choose the installation directory for clockingit. I use folder: /optcd /opt11. Get the source of clockingit.git clone git://github.com/ari/clockingit.git12.

Modify the environment.rb file line 70 under /opt/clockingit/config folder. I don’t know is it correct or not. If you don’t modify it, it will cause error 'undefined method `’ for:version:Symbol.sudo nano /opt/clockingit/config/environment.rbfrom: config.gem ‘fastercsv’,:version ‘1.5.0’to: config.gem ‘fastercsv’,:version = ‘1.5.0’13. Run ruby setup.rb and enter all necessary information.cd /opt/clockingitruby setup.rb14.

You will get errors and need to install of missing gems.sudo rake gems:install15. Re-run ruby setup.rb. Please accept to load the DB schema when asked.ruby setup.rb16. Once you see tables created in mysql database, you are almost successful. Otherwise, please check if something goes wrong.17. Install passenger.gem install passenger18.

Install related libraries for passenger apache2 module.apt-get install apache2-prefork-dev libapr1-dev libaprutil1-dev19. Run passenger-install-apache2-module.sudo /var/lib/gems/1.8/bin/passenger-install-apache2-module20. Create mod file for passenger and paste the following content. Modify the path and version number if you are not same with me.sudo nano /etc/apache2/mods-available/passenger.loadLoadModule passengermodule /var/lib/gems/1.8/gems/passenger-2.2.15/ext/apache2/modpassenger.soPassengerRoot /var/lib/gems/1.8/gems/passenger-2.2.15PassengerRuby /usr/bin/ruby1.820. Create site file for apache and paste the following content.

Modify the server name and folder pathif you are not same with me.sudo nano /etc/apache2/sites-available/clockingitServerName projects.example.comDocumentRoot /opt/clockingit/publicAllowOverride allOptions -MultiViews21. Enable mod file.cd /etc/apache2/mods-enabled/sudo ln -s./mods-available/passenger.load passenger.load22. Enable site file and disable default apache site file.sudo a2ensite clockingitsudo a2dissite default23. Reload and restart apache.sudo /etc/init.d/apache2 reloadsudo /etc/init.d/apache2 restart24. Change the permission of clockingit folder.25. Check the clockingit web at:Thank you the guides from aaronperkins and ludolphn, as they help me a lot.this version of the post, you can install clockingit on alot of VMs. You can run the clockingit on the Virtualbox with ubuntu easy.dont forget of the implements sendmail or you will get error on create new tasks.

Erro like connection refused. Have two corrections for this error. Implement the sendmail or uncheck the options in the preferences of clockingIt.

Install clockingit en windows 10

Installing jobsworth on your server Step 1: Getting the sourceThe source is released under the MIT/X Consortium License.The easiest way to get the source and easily update it from time to time iswith git. You'll need to install that on your machine and then run: git clone git://github.com/ari/clockingit.gitYou will want to put the source somewhere sensible depending on youroperating system.

Install Clockingit En Windows 10

On OSX that might be /Sites/jobsworth and on FreeBSD/usr/local/www/jobsworth. We'll use the FreeBSD path in theseinstructions. Step 2: PrerequsitesYou need to be running some type of Unix: OSX, Linux, Solaris, BSD. Windowswill probably not work. You will also need a database. MySQL has beenheavily tested, and some people are running postgresql.Install the following packages:.ruby gems.ruby mysql driver (you could also choose postgresql).rake.ImageMagickHow to install these will differ on each platform. Some possibilities: FreeBSD portinstall ruby-iconv ruby18-gems ruby18-mysql rubygem-rake ImageMagick OSXFirst install the Macports system from.

Then: sudo port install rb-rubygems rb-mysql rb-rake ImageMagick libxml2 libxslt Linux, etcUnder other operating systems use your favourite package manager to ensureyou have Ruby 1.8.x, rubygems, Imagemagick, Rake and the Ruby mysql driverinstalled. Something like: yum install libxml2 libxslt ImageMagick ruby Step 3: Phusion PassengerInstall Phusion Passenger. You can instead use Mongrel, but it tends to bea little easier to set up with Phusion. Gem install passengerpassenger-install-apache2-moduleAnd follow the instructions you'll be given about how to install therelevant config for Apache httpd.Your Apache httpd virtual host DocumentRoot should point to the publicdirectory in the installation directory. ServerName jobsworth.example.com.auRailsEnv productionPassengerHighPerformance onDocumentRoot /usr/local/www/jobsworth/publicCustomLog /var/log/www/myserver.example.com.au-accesslog combinedErrorLog /var/log/www/myserver.example.com.au-accesslogNaturally adjust the paths to suit your own environment.

Install clockingit en windows vista

Install Clockingit En Windows Xp

Step 4: Setup configuration and database cd /usr/local/www/jobsworthruby setup.rb Step 5: Ruby gemsThere are a few Ruby gems which are needed for running CIT. Changedirectory into the top of your CIT installation, then type: rake gems:installThat will install the gems you need.If you have trouble on OSX with the mysql gem (this seems to be an issue on10.5), then try this sudo env ARCHFLAGS='-arch i386' gem install mysql - -with-mysql-include=/opt/local/include/mysql5 -with-mysql-lib=/opt/local/lib/mysql5 -with-mysql-config=/opt/local/lib/mysql5/bin/mysqlconfig Upgrading to a newer revision git checkout db/schema.rbgit pullCheck that there aren't any updated gems or new gems to install. Ifthere are, just follow the instructions you will be given on screen.