- 浏览: 30567 次
- 性别:
- 来自: 北京
最新评论
-
Yinner:
让我说你什么好呢,真是太感谢啦!
rubymine 3.0 4.0 注册码 序列号 破解
文章列表
我使用的rails版本是 3.0.5 的 ,然后使用的是 cookie_session ,现在遇到一个问题:
当我使用admin admin 登录之后,打开其他页面访问session的时候都没有问题,可以访问的到
http://localhost:3000/users/1/roles 这种url也可以访问的到session
但是当我访问以下url的时候
http://localhost:3000/users/1/roles/1
session 就清空了,我访问不到session中的值了,session中,原来就存了一个session[:user], 不知道是怎么回事
我的路由设置是
r ...
a标签 希望进入矩形区域的时候就触发,而不是只有在鼠标指针经过文字时才触发鼠标经过的效果,这是就需要设置了
a{display:block; height: 1em;}
ubuntu mysql 安装
sudo apt-get install mysql-server
sudo apt-get install libmysqlclient-dev
ubuntu postgresql 安装
sudo apt-get install postgresql
sudo apt-get install libpq-dev build-essential
最后
bundle install
Linecache19 fails to compile with 1.9.3-head
解决办法
sudo gem install linecache19 -- --with-ruby-include=/home/qiwenlong/software/ruby-1.9.3-p194
sudo gem install ruby-debug19 -- --with-ruby-include=/home/qiwenlong/software/ruby-1.9.3-p194
ubuntu 安装 sqlite3 gem包时报错
Building native extensions. This could take a while..
是因为没有按转sqlite3数据库以及sqlite3-dev
通过
sudo apt-get install sqlite3
sudo apt-get install libsqlite3-ruby1.9.1
sudo apt-get install libsqlite3-dev
rmagick 2.12.0 gem包 兼容windows xp 7
之前这个版本的rmagick只是支持在xp下使用,不支持windows7,修改后的gem包见附件
唉,文件太大刚好比10M多一点,上传不上来,有需要的留下邮箱,我发吧
ActionMailer: Hostname not match server certificate 错误的解决办法
解决办法:
development.rb
require 'tlsmail'
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => '',
:port => 25,
:domain => '',
:authentication => :login,
:u ...
Net::SMTPAuthenticationError (530 5.7.0 Must issue a STARTTLS command first. 23s
- 博客分类:
- ruby on rails
在配置发送邮件设置的时候
ActionMailer::Base.smtp_settings = {
:address => 'smtp.gmail.com',
:port => 587,
:domain => 'gmail.com',
:authentication => :plain,
:user_name => '***帐号不带@gmail.com****', #例如abc@gmail.com 只写abc
:password => '***密码***',
:enable ...
改变windows背景颜色保护眼睛
眼科专家指出: 将Window 底色转做”豆沙绿色”可保护眼睛。
桌面->右键->属性->外观->高级->项目选择(窗口)、颜色1(L)选择(其它)
将色调改为:85。饱和度:123。亮度:205->添加到自定义颜色
->在自定义颜色选定确定->确定
在win7 下是 控制面板\外观和个性化\个性化\窗口颜色和外观 高级
其中如果是RGB 的话 分别为 199 237 204
Then 所有文档都 再不是刺眼 白底黑字,而是非常柔和 豆沙绿色,
这色调是眼科专家配置 ,长时间使用会很有效 舒缓眼睛疲劳,保护眼 ...
Ext.Calendar 的 phantom的问题
a great component, but seem there is problem when loading data from remote httpProxy.
The record are marked as 'Phantom=true'.
The records Should be marked with a Phantom as 'false' as it is real 'record'.
The consequence is, when you drag the 'event' in the cale ...
rake aborted! Mysql::Error: query: not connected: CREATE TABLE `schema_migration
- 博客分类:
- ruby on rails
rake aborted! Mysql::Error: query: not connected: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
解决方式: 拷贝旧版的libmySQL.dll到ruby\bin下
rails3 ActionController::RoutingError (uninitialized constant ApplicationControl
- 博客分类:
- ruby on rails
rails3 ActionController::RoutingError (uninitialized constant ApplicationController::LoginSystem)
碰到了这个问题,是因为rails3 不进行自动加载lib目录下的自定义module 了
需要在config/application.rb文件中
# Custom directories with classes and modules you want to be autoloadable.
# config.autoload_paths +=%W(#{config.root}/extras)
这两 ...
ERROR NoMethodError: private method `gsub' called for ****:Date
这个错误可能除了可能是webrick的问题,也可能是你使用gsub的时候,因为你使用的是
日期类型的变量.gsub
例如:
irb(main):001:0> Time.now.gsub('-', '')
NoMethodError: private method `gsub' called for Fri Jan 21 11:21:52 +0800 2011:T
ime
from (irb):1
from ...
pycharm v1.0 注册 破解
name:pycharm
===== LICENSE BEGIN =====
61667-12042010
0000285EqkWlIA2ky6BoNqCag!fvO3
j2ICltgk6kiG8IjRMEfE17TsxSr4EF
b60Y9vBcUyQ6y0XdSjYF!b"E7f09oD
===== LICENSE END =====
name:opensource
===== LICENSE BEGIN =====
96189-12042010
00001WEdnZrgimaRUrqqOQkDQFWots
XiLKPDX4S5k5Ssb ...
rails在gem install mysql/sqlite3的时候,如果报以下错误:
1、Installing sqlite3-ruby (1.3.1) with native extensions
/usr/local/lib/site_ruby/1.8/rubygems/installer.rb:483:in`build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)
/usr/bin/ruby1.8 extconf.rb extconf.rb:3 ...