This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########### PHP5 install ###################### | |
https://www.digitalocean.com/community/articles/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu | |
#apache | |
sudo apt-get update | |
sudo apt-get install apache2 | |
#mysql | |
sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started GET "/" for 91.64.81.67 at 2013-07-10 14:48:02 +0200 | |
Processing by DashboardsController#show as HTML | |
Account Load (0.4ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' AND (accounts.deleted_at IS NULL) LIMIT 1 | |
CACHE (0.0ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' AND (accounts.deleted_at IS NULL) LIMIT 1 | |
User Load (0.7ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 20 AND (users.deleted_at IS NULL) LIMIT 1 | |
(0.2ms) BEGIN | |
(0.4ms) UPDATE `users` SET `last_request_at` = '2013-07-10 12:48:02', `perishable_token` = 'f7vPLApn7tP8UlUqYjOd', `updated_at` = '2013-07-10 12:48:02' WHERE `users`.`id` = 20 | |
(1.6ms) COMMIT | |
IdeationProcess Load (0.4ms) SELECT `ideation_processes`.* FROM `ideation_processes` INNER JOIN `invitations` ON `ideation_processes`.`id` = `invitations`.`ideation_process_id` WHERE `invitations`.`user_id` = 20 AND (ideation_processes.deleted_at IS NULL) AND (invitations.deleted_at IS NULL) AND (invi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started GET "/admin_users/sign_in" for 91.64.81.67 at 2013-07-10 14:48:34 +0200 | |
Processing by Devise::SessionsController#new as HTML | |
Account Load (0.7ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' AND (accounts.deleted_at IS NULL) LIMIT 1 | |
CACHE (0.0ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' AND (accounts.deleted_at IS NULL) LIMIT 1 | |
Rendered /home/user17/.bundle/ruby/1.9.1/gems/devise-2.2.3/app/views/devise/shared/_links.erb (1.2ms) | |
Rendered /home/user17/.bundle/ruby/1.9.1/gems/devise-2.2.3/app/views/devise/sessions/new.html.erb within layouts/yutongo (6.8ms) | |
User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 20 AND (users.deleted_at IS NULL) LIMIT 1 | |
(0.2ms) BEGIN | |
(0.5ms) UPDATE `users` SET `last_request_at` = '2013-07-10 12:48:35', `perishable_token` = 'D2OEgm7Hy68qNeFOCf', `updated_at` = '2013-07-10 12:48:35' WHERE `users`.`id` = 20 | |
(9.4ms) COMMIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started PUT "/projects/2" for 178.197.226.20 at 2013-06-19 07:26:50 +0200 | |
Processing by ProjectsController#update as HTML | |
Parameters: {"utf8"=>"✓", "authenticity_token"=>"4SmMGCDu8jwZ06bZw52oQ1N1+R8D9t6jZPTGPlYbSsw=", "project"=>{"ideation_processes_attributes"=>{"0"=>{"name"=>"idea creation", "start_date"=>"22-02-2013", "start_time"=>"03:00", "end_date"=>"21-06-2013", "end_time"=>"10:00", "status"=>"1", "ideation_tasks_attributes"=>{"0"=>{"position"=>"1", "id"=>"147", "tool_id"=>"1", "question_id"=>"8", "time"=>"120"}, "2"=>{"position"=>"3", "id"=>"187", "tool_id"=>"4", "question_id"=>"86", "time"=>""}, "1"=>{"position"=>"2", "id"=>"185", "tool_id"=>"4", "question_id"=>"8", "time"=>""}, "3"=>{"position"=>"4", "id"=>"186", "tool_id"=>"8", "question_id"=>"9", "time"=>""}, "4"=>{"position"=>"5", "id"=>"188", "tool_id"=>"4", "question_id"=>"87", "time"=>""}, "5"=>{"position"=>"6", "id"=>"189", "tool_id"=>"4", "question_id"=>"88", "time"=>""}, "6"=>{"position"=>"7", "id"=>"190", "tool_id"=>"4", "question_id"= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
krishna@ubuntu:~/oDesk/yutongo$ rake db:setup | |
rake/gempackagetask is deprecated. Use rubygems/package_task instead | |
WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc 2.4.2+)' instead. | |
at /home/krishna/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:240:in `require' | |
/home/krishna/.rvm/gems/ruby-1.9.3-p194/gems/hoe-1.1.7/lib/hoe.rb:95: Use RbConfig instead of obsolete and deprecated Config. | |
yutongo_test already exists | |
[RailsAdmin] RailsAdmin initialization disabled by default. Pass SKIP_RAILS_ADMIN_INITIALIZER=false if you need it. | |
-- create_table("accounts", {:force=>true}) | |
-> 0.2307s | |
-- add_index("accounts", ["subdomain"], {:name=>"index_accounts_on_subdomain", :unique=>true}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started GET "/dashboard" for 178.197.234.53 at 2013-01-23 17:47:25 +0100 | |
Processing by DashboardsController#show as HTML | |
Account Load (0.4ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' LIMIT 1 | |
CACHE (0.0ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`subdomain` = 'staging' LIMIT 1 | |
User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 4 LIMIT 1 | |
(0.2ms) BEGIN | |
(0.3ms) UPDATE `users` SET `last_request_at` = '2013-01-23 16:47:25', `perishable_token` = 'JFEnM9DZym6m2bseqjU', `updated_at` = '2013-01-23 16:47:25' WHERE `users`.`id` = 4 | |
(2.0ms) COMMIT | |
Image Load (0.3ms) SELECT `images`.* FROM `images` WHERE `images`.`imageable_id` = 4 AND `images`.`imageable_type` = 'User' LIMIT 1 | |
Idea Load (1.3ms) SELECT `ideas`.* FROM `ideas` WHERE `ideas`.`user_id` = 4 AND `ideas`.`idea_type` = 'fragment' ORDER BY created_at DESC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rendered projects/_expand_ideation_processes_list.html.haml (15.7ms) | |
Rendered projects/_project.html.haml (159.9ms) | |
Rendered projects/_projects.html.haml (167.7ms) | |
Rendered accounts/public.html.haml within layouts/yutongo (170.0ms) | |
Completed 500 Internal Server Error in 174ms | |
ActionView::Template::Error (undefined method `html_safe' for nil:NilClass): | |
46: %a.toggle-play-process.btn.red-button.shadow-btn{:href => play_ideation_process_path(ideation_process)}= t(".play", :default => "Play") | |
47: - else | |
48: = show_invite_button(ideation_process, :class => "btn red-button shadow-btn", :start_label => "Start").html_safe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
krishna@krishna-desktop:~/oDesk/Rabble$ rake --trace db:migrate | |
Sass is in the process of being separated from Haml, | |
and will no longer be bundled at all in Haml 3.2.0. | |
Please install the 'sass' gem if you want to use Sass. | |
** Invoke db:migrate (first_time) | |
** Invoke environment (first_time) | |
** Execute environment | |
rake aborted! | |
PG::Error: ERROR: relation "events" does not exist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Encoding::CompatibilityError in Users#new | |
Showing /home/krishna/oDesk/yutongo/app/views/users/new.html.haml where line # raised: | |
incompatible character encodings: UTF-8 and ASCII-8BIT | |
Extracted source (around line #): | |
Rails.root: /home/krishna/oDesk/yutongo | |
Application Trace | Framework Trace | Full Trace |
NewerOlder