beast rev 2066
[beast-modified.git] / log / development.log
blobe3bbb9e836603c67344e43e409b225bee2a59379
1 # Logfile created on Fri Oct 26 13:48:50 +0800 2007  \e[4;36;1mSQL (0.000123)\e[0m   \e[0;1mSET SQL_AUTO_IS_NULL=0\e[0m
2   \e[4;35;1mSQL (0.007849)\e[0m   \e[0mCREATE TABLE schema_info (version int(11))\e[0m
3   \e[4;36;1mSQL (0.000224)\e[0m   \e[0;1mINSERT INTO schema_info (version) VALUES(0)\e[0m
4   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Table 'schema_info' already exists: CREATE TABLE schema_info (version int(11))\e[0m
5   \e[4;36;1mSQL (0.000275)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
6 Migrating to CreateUsers (1)
7   \e[4;35;1mSQL (0.003910)\e[0m   \e[0mCREATE TABLE users (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `last_login_at` datetime DEFAULT NULL, `admin` tinyint(1) DEFAULT NULL, `posts_count` int(11) DEFAULT 0) ENGINE=InnoDB\e[0m
8   \e[4;36;1mSQL (0.000176)\e[0m   \e[0;1mUPDATE schema_info SET version = 1\e[0m
9   \e[4;35;1mSQL (0.000101)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
10 Migrating to CreateForums (2)
11   \e[4;36;1mSQL (0.004060)\e[0m   \e[0;1mCREATE TABLE forums (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB\e[0m
12   \e[4;35;1mSQL (0.000469)\e[0m   \e[0mUPDATE schema_info SET version = 2\e[0m
13   \e[4;36;1mSQL (0.000165)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
14 Migrating to CreatePosts (3)
15   \e[4;35;1mSQL (0.004000)\e[0m   \e[0mCREATE TABLE posts (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `post_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `body` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB\e[0m
16   \e[4;36;1mSQL (0.000109)\e[0m   \e[0;1mUPDATE schema_info SET version = 3\e[0m
17   \e[4;35;1mSQL (0.000093)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
18 Migrating to RenamePostToTopic (4)
19   \e[4;36;1mSQL (0.000476)\e[0m   \e[0;1mSHOW COLUMNS FROM posts LIKE 'post_id'\e[0m
20   \e[4;35;1mSQL (0.006753)\e[0m   \e[0mALTER TABLE posts CHANGE `post_id` `topic_id` int(11)\e[0m
21   \e[4;36;1mSQL (0.000138)\e[0m   \e[0;1mUPDATE schema_info SET version = 4\e[0m
22   \e[4;35;1mSQL (0.000294)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
23 Migrating to AddForumDesc (5)
24   \e[4;36;1mSQL (0.006107)\e[0m   \e[0;1mALTER TABLE forums ADD `description` varchar(255)\e[0m
25   \e[4;35;1mSQL (0.000145)\e[0m   \e[0mUPDATE schema_info SET version = 5\e[0m
26   \e[4;36;1mSQL (0.000195)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
27 Migrating to AddHits (6)
28   \e[4;35;1mSQL (0.007612)\e[0m   \e[0mALTER TABLE posts ADD `hits` int(11) DEFAULT 0\e[0m
29   \e[4;36;1mSQL (0.000125)\e[0m   \e[0;1mUPDATE schema_info SET version = 6\e[0m
30   \e[4;35;1mSQL (0.000108)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
31 Migrating to Sticky (7)
32   \e[4;36;1mSQL (0.006856)\e[0m   \e[0;1mALTER TABLE posts ADD `sticky` tinyint(1) DEFAULT 0\e[0m
33   \e[4;35;1mSQL (0.000116)\e[0m   \e[0mUPDATE schema_info SET version = 7\e[0m
34   \e[4;36;1mSQL (0.000107)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
35 Migrating to AddCounterCaches (8)
36   \e[4;35;1mSQL (0.006804)\e[0m   \e[0mALTER TABLE users ADD `topics_count` int(11) DEFAULT 0\e[0m
37   \e[4;36;1mSQL (0.008137)\e[0m   \e[0;1mALTER TABLE forums ADD `topics_count` int(11) DEFAULT 0\e[0m
38   \e[4;35;1mSQL (0.006873)\e[0m   \e[0mALTER TABLE forums ADD `posts_count` int(11) DEFAULT 0\e[0m
39   \e[4;36;1mSQL (0.006798)\e[0m   \e[0;1mALTER TABLE posts ADD `posts_count` int(11) DEFAULT 0\e[0m
40   \e[4;35;1mSQL (0.000130)\e[0m   \e[0mUPDATE schema_info SET version = 8\e[0m
41   \e[4;36;1mSQL (0.000117)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
42 Migrating to LastSeenAt (9)
43   \e[4;35;1mSQL (0.013980)\e[0m   \e[0mALTER TABLE users ADD `last_seen_at` datetime\e[0m
44   \e[4;36;1mSQL (0.000684)\e[0m   \e[0;1mUPDATE schema_info SET version = 9\e[0m
45   \e[4;35;1mSQL (0.000138)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
46 Migrating to AddSessions (10)
47   \e[4;36;1mSQL (0.005425)\e[0m   \e[0;1mCREATE TABLE sessions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `session_id` varchar(255) DEFAULT NULL, `data` text DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB\e[0m
48   \e[4;35;1mSQL (0.008474)\e[0m   \e[0mCREATE INDEX `index_sessions_on_session_id` ON sessions (`session_id`)\e[0m
49   \e[4;36;1mSQL (0.000148)\e[0m   \e[0;1mUPDATE schema_info SET version = 10\e[0m
50   \e[4;35;1mSQL (0.000129)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
51 Migrating to ResetCounterCache (11)
52   \e[4;36;1mSQL (0.000245)\e[0m   \e[0;1mSHOW TABLES\e[0m
53   \e[4;35;1mForum Columns (0.000541)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
54   \e[4;36;1mSQL (0.000313)\e[0m   \e[0;1mSHOW TABLES\e[0m
55   \e[4;35;1mUser Columns (0.000750)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
56   \e[4;36;1mSQL (0.000212)\e[0m   \e[0;1mSHOW TABLES\e[0m
57   \e[4;35;1mSQL (0.000247)\e[0m   \e[0mSHOW TABLES\e[0m
58   \e[4;36;1mForum Load (0.000254)\e[0m   \e[0;1mSELECT * FROM forums \e[0m
59   \e[4;35;1mPost Load (0.000243)\e[0m   \e[0mSELECT * FROM posts \e[0m
60   \e[4;36;1mUser Load (0.000128)\e[0m   \e[0;1mSELECT * FROM users \e[0m
61   \e[4;35;1mSQL (0.000153)\e[0m   \e[0mUPDATE schema_info SET version = 11\e[0m
62   \e[4;36;1mSQL (0.000114)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
63 Migrating to DisplayName (12)
64   \e[4;35;1mSQL (0.006802)\e[0m   \e[0mALTER TABLE users ADD `display_name` varchar(255)\e[0m
65   \e[4;36;1mSQL (0.000128)\e[0m   \e[0;1mUPDATE schema_info SET version = 12\e[0m
66   \e[4;35;1mSQL (0.000110)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
67 Migrating to UserUpdatedAt (13)
68   \e[4;36;1mSQL (0.006972)\e[0m   \e[0;1mALTER TABLE users ADD `updated_at` datetime\e[0m
69   \e[4;35;1mSQL (0.000143)\e[0m   \e[0mUPDATE schema_info SET version = 13\e[0m
70   \e[4;36;1mSQL (0.000127)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
71 Migrating to SetLastSeenAt (14)
72   \e[4;35;1mUser Load (0.000224)\e[0m   \e[0mSELECT * FROM users \e[0m
73   \e[4;36;1mSQL (0.000115)\e[0m   \e[0;1mUPDATE schema_info SET version = 14\e[0m
74   \e[4;35;1mSQL (0.000107)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
75 Migrating to AddTopicLastPostedAtDate (15)
76   \e[4;36;1mSQL (0.482363)\e[0m   \e[0;1mALTER TABLE posts ADD `replied_at` datetime\e[0m
77   \e[4;35;1mAddTopicLastPostedAtDate::Post Update (0.000432)\e[0m   \e[0mUPDATE posts SET replied_at = updated_at WHERE (topic_id = id) \e[0m
78   \e[4;36;1mSQL (0.000196)\e[0m   \e[0;1mUPDATE schema_info SET version = 15\e[0m
79   \e[4;35;1mSQL (0.000203)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
80 Migrating to EmpowerSessions (16)
81   \e[4;36;1mSQL (0.007642)\e[0m   \e[0;1mALTER TABLE sessions ADD `user_id` int(11)\e[0m
82   \e[4;35;1mSQL (0.000947)\e[0m   \e[0mUPDATE schema_info SET version = 16\e[0m
83   \e[4;36;1mSQL (0.000389)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
84 Migrating to UpdateUserPostCounts (17)
85   \e[4;35;1mSQL (0.010971)\e[0m   \e[0mALTER TABLE users DROP `topics_count`\e[0m
86   \e[4;36;1mUser Load (0.000387)\e[0m   \e[0;1mSELECT * FROM users \e[0m
87   \e[4;35;1mSQL (0.001420)\e[0m   \e[0mUPDATE schema_info SET version = 17\e[0m
88   \e[4;36;1mSQL (0.000197)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
89 Migrating to AddContactFields (18)
90   \e[4;35;1mSQL (0.008086)\e[0m   \e[0mALTER TABLE users ADD `aim` varchar(255)\e[0m
91   \e[4;36;1mSQL (0.007989)\e[0m   \e[0;1mALTER TABLE users ADD `yahoo` varchar(255)\e[0m
92   \e[4;35;1mSQL (0.008665)\e[0m   \e[0mALTER TABLE users ADD `google_talk` varchar(255)\e[0m
93   \e[4;36;1mSQL (0.006865)\e[0m   \e[0;1mALTER TABLE users ADD `msn` varchar(255)\e[0m
94   \e[4;35;1mSQL (0.006450)\e[0m   \e[0mALTER TABLE users ADD `website` varchar(255)\e[0m
95   \e[4;36;1mSQL (0.000125)\e[0m   \e[0;1mUPDATE schema_info SET version = 18\e[0m
96   \e[4;35;1mSQL (0.000113)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
97 Migrating to PositionForForums (19)
98   \e[4;36;1mSQL (0.007631)\e[0m   \e[0;1mALTER TABLE forums ADD `position` int(11)\e[0m
99   \e[4;35;1mSQL (0.000180)\e[0m   \e[0mUPDATE schema_info SET version = 19\e[0m
100   \e[4;36;1mSQL (0.000123)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
101 Migrating to FixRepliedAt (20)
102   \e[4;35;1mSQL (0.000165)\e[0m   \e[0mupdate posts set replied_at=created_at where replied_at is null and id=topic_id\e[0m
103   \e[4;36;1mSQL (0.000106)\e[0m   \e[0;1mUPDATE schema_info SET version = 20\e[0m
104   \e[4;35;1mSQL (0.000078)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
105 Migrating to LogEveryoneOut (21)
106   \e[4;36;1mCGI::Session::ActiveRecordStore::Session Delete all (0.000236)\e[0m   \e[0;1mDELETE FROM sessions \e[0m
107   \e[4;35;1mSQL (0.000106)\e[0m   \e[0mUPDATE schema_info SET version = 21\e[0m
108   \e[4;36;1mSQL (0.000099)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
109 Migrating to CreateTopics (22)
110   \e[4;35;1mSQL (0.004932)\e[0m   \e[0mCREATE TABLE topics (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `hits` int(11) DEFAULT 0, `sticky` tinyint(1) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `replied_at` datetime DEFAULT NULL) ENGINE=InnoDB\e[0m
111   \e[4;36;1mCreateTopics::Post Load (0.000183)\e[0m   \e[0;1mSELECT * FROM posts WHERE (id=topic_id) \e[0m
112   \e[4;35;1mSQL (0.000092)\e[0m   \e[0mUPDATE schema_info SET version = 22\e[0m
113   \e[4;36;1mSQL (0.000079)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
114 Migrating to CleanUpPostsTable (23)
115   \e[4;35;1mSQL (0.007455)\e[0m   \e[0mALTER TABLE posts DROP `title`\e[0m
116   \e[4;36;1mSQL (0.007808)\e[0m   \e[0;1mALTER TABLE posts DROP `hits`\e[0m
117   \e[4;35;1mSQL (0.006604)\e[0m   \e[0mALTER TABLE posts DROP `sticky`\e[0m
118   \e[4;36;1mSQL (0.005829)\e[0m   \e[0;1mALTER TABLE posts DROP `posts_count`\e[0m
119   \e[4;35;1mSQL (0.005777)\e[0m   \e[0mALTER TABLE posts DROP `replied_at`\e[0m
120   \e[4;36;1mSQL (0.000127)\e[0m   \e[0;1mUPDATE schema_info SET version = 23\e[0m
121   \e[4;35;1mSQL (0.000109)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
122 Migrating to LoginByKeyFields (24)
123   \e[4;36;1mSQL (0.008158)\e[0m   \e[0;1mALTER TABLE users ADD `login_key` varchar(255)\e[0m
124   \e[4;35;1mSQL (0.006111)\e[0m   \e[0mALTER TABLE users ADD `login_key_expires_at` datetime\e[0m
125   \e[4;36;1mSQL (0.000231)\e[0m   \e[0;1mUPDATE schema_info SET version = 24\e[0m
126   \e[4;35;1mSQL (0.000154)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
127 Migrating to RemoveUnnecessaryPostForumId (25)
128   \e[4;36;1mSQL (0.008168)\e[0m   \e[0;1mALTER TABLE posts DROP `forum_id`\e[0m
129   \e[4;35;1mSQL (0.000211)\e[0m   \e[0mUPDATE schema_info SET version = 25\e[0m
130   \e[4;36;1mSQL (0.000117)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
131 Migrating to ChangeStickyToInteger (26)
132   \e[4;35;1mChangeStickyToInteger::Topic Columns (0.000776)\e[0m   \e[0mSHOW FIELDS FROM topics\e[0m
133   \e[4;36;1mChangeStickyToInteger::Topic Load (0.000205)\e[0m   \e[0;1mSELECT * FROM topics WHERE (topics.`sticky` = 1) \e[0m
134   \e[4;35;1mSQL (0.007872)\e[0m   \e[0mALTER TABLE topics CHANGE `sticky` `sticky` int(11) DEFAULT 0\e[0m
135   \e[4;36;1mChangeStickyToInteger::Topic Update (0.000144)\e[0m   \e[0;1mUPDATE topics SET sticky=1 WHERE (id in (NULL)) \e[0m
136   \e[4;35;1mSQL (0.000090)\e[0m   \e[0mUPDATE schema_info SET version = 26\e[0m
137   \e[4;36;1mSQL (0.000090)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
138 Migrating to ReAddPostsForumId (27)
139   \e[4;35;1mSQL (0.006792)\e[0m   \e[0mALTER TABLE posts ADD `forum_id` int(11)\e[0m
140   \e[4;36;1mReAddPostsForumId::Topic Load (0.000149)\e[0m   \e[0;1mSELECT id, forum_id FROM topics \e[0m
141   \e[4;35;1mSQL (0.000102)\e[0m   \e[0mUPDATE schema_info SET version = 27\e[0m
142   \e[4;36;1mSQL (0.000116)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
143 Migrating to FixForumPostsCount (28)
144   \e[4;35;1mFixForumPostsCount::Post Columns (0.000754)\e[0m   \e[0mSHOW FIELDS FROM posts\e[0m
145   \e[4;36;1mSQL (0.000441)\e[0m   \e[0;1mSELECT count(id) AS count_id, forum_id AS forum_id FROM posts GROUP BY forum_id \e[0m
146   \e[4;35;1mSQL (0.000144)\e[0m   \e[0mUPDATE schema_info SET version = 28\e[0m
147   \e[4;36;1mSQL (0.000111)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
148 Migrating to CreateModeratorships (29)
149   \e[4;35;1mSQL (0.004523)\e[0m   \e[0mCREATE TABLE moderatorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB\e[0m
150   \e[4;36;1mSQL (0.000207)\e[0m   \e[0;1mUPDATE schema_info SET version = 29\e[0m
151   \e[4;35;1mSQL (0.000116)\e[0m   \e[0mSELECT version FROM schema_info\e[0m
152 Migrating to SetUserDisplayName (30)
153   \e[4;36;1mSetUserDisplayName::User Load (0.000203)\e[0m   \e[0;1mSELECT id, login, display_name FROM users \e[0m
154   \e[4;35;1mSQL (0.000087)\e[0m   \e[0mUPDATE schema_info SET version = 30\e[0m
155   \e[4;36;1mSQL (0.000085)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
156 Migrating to TopicLocked (31)
157   \e[4;35;1mSQL (0.006917)\e[0m   \e[0mALTER TABLE topics ADD `locked` tinyint(1) DEFAULT 0\e[0m
158   \e[4;36;1mTopic Update (0.000160)\e[0m   \e[0;1mUPDATE topics SET locked= 0 \e[0m
159   \e[4;35;1mSQL (0.000087)\e[0m   \e[0mUPDATE schema_info SET version = 31\e[0m
160   \e[4;36;1mSQL (0.000108)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
161 Migrating to AddActivatedBoolean (32)
162   \e[4;35;1mSQL (0.006905)\e[0m   \e[0mALTER TABLE users ADD `activated` tinyint(1) DEFAULT 0\e[0m
163   \e[4;36;1mAddActivatedBoolean::User Update (0.000161)\e[0m   \e[0;1mUPDATE users SET activated = 1 \e[0m
164   \e[4;35;1mSQL (0.000087)\e[0m   \e[0mUPDATE schema_info SET version = 32\e[0m
165   \e[4;36;1mSQL (0.000095)\e[0m   \e[0;1mSELECT version FROM schema_info\e[0m
166 Migrating to AddPasswordHash (33)
167   \e[4;36;1mSQL (0.000114)\e[0m   \e[0;1mSET SQL_AUTO_IS_NULL=0\e[0m
168   \e[4;35;1mSQL (0.018669)\e[0m   \e[0mDROP DATABASE IF EXISTS `rubyorgee_development`\e[0m
169   \e[4;36;1mSQL (0.000143)\e[0m   \e[0;1mSET SQL_AUTO_IS_NULL=0\e[0m
170   \e[4;35;1mSQL (0.000196)\e[0m   \e[0mCREATE DATABASE `rubyorgee_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci`\e[0m
171   \e[4;36;1mSQL (0.000146)\e[0m   \e[0;1mSET SQL_AUTO_IS_NULL=0\e[0m
172   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Unknown table 'forums': DROP TABLE forums\e[0m
173   \e[4;36;1mSQL (0.036944)\e[0m   \e[0;1mCREATE TABLE forums (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `topics_count` int(11) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `position` int(11) DEFAULT NULL, `description_html` text DEFAULT NULL) ENGINE=InnoDB\e[0m
174   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Unknown table 'logged_exceptions': DROP TABLE logged_exceptions\e[0m
175   \e[4;36;1mSQL (0.003570)\e[0m   \e[0;1mCREATE TABLE logged_exceptions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `exception_class` varchar(255) DEFAULT NULL, `controller_name` varchar(255) DEFAULT NULL, `action_name` varchar(255) DEFAULT NULL, `message` varchar(255) DEFAULT NULL, `backtrace` text DEFAULT NULL, `environment` text DEFAULT NULL, `request` text DEFAULT NULL, `created_at` datetime DEFAULT NULL) ENGINE=InnoDB\e[0m
176   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Unknown table 'moderatorships': DROP TABLE moderatorships\e[0m
177   \e[4;36;1mSQL (0.003164)\e[0m   \e[0;1mCREATE TABLE moderatorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB\e[0m
178   \e[4;35;1mSQL (0.007257)\e[0m   \e[0mCREATE INDEX `index_moderatorships_on_forum_id` ON moderatorships (`forum_id`)\e[0m
179   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'monitorships': DROP TABLE monitorships\e[0m
180   \e[4;35;1mSQL (0.003838)\e[0m   \e[0mCREATE TABLE monitorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `topic_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT 1) ENGINE=InnoDB\e[0m
181   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'open_id_authentication_associations': DROP TABLE open_id_authentication_associations\e[0m
182   \e[4;35;1mSQL (0.003165)\e[0m   \e[0mCREATE TABLE open_id_authentication_associations (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `server_url` blob DEFAULT NULL, `handle` varchar(255) DEFAULT NULL, `secret` blob DEFAULT NULL, `issued` int(11) DEFAULT NULL, `lifetime` int(11) DEFAULT NULL, `assoc_type` varchar(255) DEFAULT NULL) ENGINE=InnoDB\e[0m
183   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'open_id_authentication_nonces': DROP TABLE open_id_authentication_nonces\e[0m
184   \e[4;35;1mSQL (0.004499)\e[0m   \e[0mCREATE TABLE open_id_authentication_nonces (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `nonce` varchar(255) DEFAULT NULL, `created` int(11) DEFAULT NULL) ENGINE=InnoDB\e[0m
185   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'open_id_authentication_settings': DROP TABLE open_id_authentication_settings\e[0m
186   \e[4;35;1mSQL (0.005891)\e[0m   \e[0mCREATE TABLE open_id_authentication_settings (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `setting` varchar(255) DEFAULT NULL, `value` blob DEFAULT NULL) ENGINE=InnoDB\e[0m
187   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'posts': DROP TABLE posts\e[0m
188   \e[4;35;1mSQL (0.005840)\e[0m   \e[0mCREATE TABLE posts (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11) DEFAULT NULL, `topic_id` int(11) DEFAULT NULL, `body` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `forum_id` int(11) DEFAULT NULL, `body_html` text DEFAULT NULL) ENGINE=InnoDB\e[0m
189   \e[4;36;1mSQL (0.005849)\e[0m   \e[0;1mCREATE INDEX `index_posts_on_forum_id` ON posts (`forum_id`, `created_at`)\e[0m
190   \e[4;35;1mSQL (0.006663)\e[0m   \e[0mCREATE INDEX `index_posts_on_user_id` ON posts (`user_id`, `created_at`)\e[0m
191   \e[4;36;1mSQL (0.011740)\e[0m   \e[0;1mCREATE INDEX `index_posts_on_topic_id` ON posts (`topic_id`, `created_at`)\e[0m
192   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Unknown table 'sessions': DROP TABLE sessions\e[0m
193   \e[4;36;1mSQL (0.004011)\e[0m   \e[0;1mCREATE TABLE sessions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `session_id` varchar(255) DEFAULT NULL, `data` text DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB\e[0m
194   \e[4;35;1mSQL (0.007453)\e[0m   \e[0mCREATE INDEX `sessions_session_id_index` ON sessions (`session_id`)\e[0m
195   \e[4;36;1mSQL (0.000000)\e[0m   \e[0;1mMysql::Error: Unknown table 'topics': DROP TABLE topics\e[0m
196   \e[4;35;1mSQL (0.003051)\e[0m   \e[0mCREATE TABLE topics (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `hits` int(11) DEFAULT 0, `sticky` int(11) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `replied_at` datetime DEFAULT NULL, `locked` tinyint(1) DEFAULT 0, `replied_by` int(11) DEFAULT NULL, `last_post_id` int(11) DEFAULT NULL) ENGINE=InnoDB\e[0m
197   \e[4;36;1mSQL (0.006672)\e[0m   \e[0;1mCREATE INDEX `index_topics_on_forum_id` ON topics (`forum_id`)\e[0m
198   \e[4;35;1mSQL (0.008528)\e[0m   \e[0mCREATE INDEX `index_topics_on_sticky_and_replied_at` ON topics (`forum_id`, `sticky`, `replied_at`)\e[0m
199   \e[4;36;1mSQL (0.009107)\e[0m   \e[0;1mCREATE INDEX `index_topics_on_forum_id_and_replied_at` ON topics (`forum_id`, `replied_at`)\e[0m
200   \e[4;35;1mSQL (0.000000)\e[0m   \e[0mMysql::Error: Unknown table 'users': DROP TABLE users\e[0m
201   \e[4;36;1mSQL (0.004455)\e[0m   \e[0;1mCREATE TABLE users (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password_hash` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `last_login_at` datetime DEFAULT NULL, `admin` tinyint(1) DEFAULT NULL, `posts_count` int(11) DEFAULT 0, `last_seen_at` datetime DEFAULT NULL, `display_name` varchar(255) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `login_key` varchar(255) DEFAULT NULL, `login_key_expires_at` datetime DEFAULT NULL, `activated` tinyint(1) DEFAULT 0, `bio` varchar(255) DEFAULT NULL, `bio_html` text DEFAULT NULL, `openid_url` varchar(255) DEFAULT NULL) ENGINE=InnoDB\e[0m
202   \e[4;35;1mSQL (0.010708)\e[0m   \e[0mCREATE INDEX `index_users_on_last_seen_at` ON users (`last_seen_at`)\e[0m
203   \e[4;36;1mSQL (0.007903)\e[0m   \e[0;1mCREATE INDEX `index_users_on_posts_count` ON users (`posts_count`)\e[0m
204   \e[4;35;1mSQL (0.002286)\e[0m   \e[0mCREATE TABLE schema_info (version int(11))\e[0m
205   \e[4;36;1mSQL (0.000213)\e[0m   \e[0;1mINSERT INTO schema_info (version) VALUES(0)\e[0m
206   \e[4;35;1mSQL (0.000431)\e[0m   \e[0mSHOW FIELDS FROM schema_info\e[0m
207   \e[4;36;1mSQL (0.000124)\e[0m   \e[0;1mUPDATE schema_info SET version = 52\e[0m
210 Processing ForumsController#index (for 127.0.0.1 at 2007-10-26 13:55:40) [GET]
211   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
212   Parameters: {"action"=>"index", "controller"=>"forums"}
213   \e[4;36;1mSQL (0.000269)\e[0m   \e[0;1mSHOW TABLES\e[0m
214   \e[4;35;1mForum Columns (0.000673)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
215   \e[4;36;1mSQL (0.000264)\e[0m   \e[0;1mSHOW TABLES\e[0m
216   \e[4;35;1mUser Columns (0.001000)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
217   \e[4;36;1mSQL (0.000246)\e[0m   \e[0;1mSHOW TABLES\e[0m
218   \e[4;35;1mSQL (0.000241)\e[0m   \e[0mSHOW TABLES\e[0m
219   \e[4;36;1mTopic Columns (0.000830)\e[0m   \e[0;1mSHOW FIELDS FROM topics\e[0m
220   \e[4;35;1mForum Load (0.000276)\e[0m   \e[0mSELECT * FROM forums ORDER BY position\e[0m
221 Rendering template within layouts/application
222 Rendering forums/index
223   \e[4;36;1mSQL (0.000185)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM topics \e[0m
224   \e[4;35;1mPost Columns (0.000700)\e[0m   \e[0mSHOW FIELDS FROM posts\e[0m
225   \e[4;36;1mSQL (0.000121)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM posts \e[0m
226   \e[4;35;1mSQL (0.000166)\e[0m   \e[0mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
227   \e[4;36;1mUser Load (0.000224)\e[0m   \e[0;1mSELECT * FROM users WHERE (last_seen_at > '2007-10-26 05:50:40') \e[0m
228 Rendered layouts/_head (0.00511)
229 Completed in 0.05704 (17 reqs/sec) | Rendering: 0.01561 (27%) | DB: 0.00520 (9%) | 200 OK [http://localhost/]
232 Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:55:43) [GET]
233   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
234   Parameters: {"action"=>"new", "to"=>"%2F", "controller"=>"sessions"}
235 Rendering template within layouts/application
236 Rendering sessions/new
237 Rendered layouts/_head (0.00153)
238 Completed in 0.01014 (98 reqs/sec) | Rendering: 0.00680 (67%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252F]
241 Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:56:27) [GET]
242   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
243   Parameters: {"action"=>"new", "to"=>"%2Flogin%3Fto%3D%25252F", "controller"=>"sessions"}
244 Rendering template within layouts/application
245 Rendering sessions/new
246 Rendered layouts/_head (0.00159)
247 Completed in 0.00758 (131 reqs/sec) | Rendering: 0.00435 (57%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Flogin%253Fto%253D%2525252F]
250 Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:56:32) [GET]
251   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
252   Parameters: {"action"=>"new", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "controller"=>"sessions"}
253 Rendering template within layouts/application
254 Rendering sessions/new
255 Rendered layouts/_head (0.00332)
256 Completed in 0.01513 (66 reqs/sec) | Rendering: 0.00835 (55%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F]
259 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:56:46) [POST]
260   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
261   Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""}
262 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:56:46 GMT
263 Rendering template within layouts/application
264 Rendering sessions/new
265 Rendered layouts/_head (0.00289)
266 Completed in 50.08740 (0 reqs/sec) | Rendering: 0.00862 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session]
269 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:57:42) [POST]
270   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
271   Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>"", "remember_me"=>"1"}
272 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:57:42 GMT
273 Rendering template within layouts/application
274 Rendering sessions/new
275 Rendered layouts/_head (0.00315)
276 Completed in 65.60830 (0 reqs/sec) | Rendering: 0.01011 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session]
279 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:58:48) [POST]
280   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
281   Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""}
282 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:58:48 GMT
283   \e[4;35;1mOpenIdAuthentication::Nonce Columns (0.000597)\e[0m   \e[0mSHOW FIELDS FROM open_id_authentication_nonces\e[0m
284   \e[4;36;1mOpenIdAuthentication::Nonce Load (0.000250)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'ttHK83rj') LIMIT 1\e[0m
285   \e[4;35;1mSQL (0.000065)\e[0m   \e[0mBEGIN\e[0m
286   \e[4;36;1mOpenIdAuthentication::Nonce Create (0.000173)\e[0m   \e[0;1mINSERT INTO open_id_authentication_nonces (`created`, `nonce`) VALUES(1193378329, 'ttHK83rj')\e[0m
287   \e[4;35;1mSQL (0.005638)\e[0m   \e[0mCOMMIT\e[0m
288   \e[4;36;1mOpenIdAuthentication::Association Columns (0.000647)\e[0m   \e[0;1mSHOW FIELDS FROM open_id_authentication_associations\e[0m
289   \e[4;35;1mOpenIdAuthentication::Association Load (0.000215)\e[0m   \e[0mSELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') \e[0m
290   \e[4;36;1mOpenIdAuthentication::Association Load (0.000372)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') LIMIT 1\e[0m
291   \e[4;35;1mSQL (0.000063)\e[0m   \e[0mBEGIN\e[0m
292   \e[4;36;1mOpenIdAuthentication::Association Create (0.000235)\e[0m   \e[0;1mINSERT INTO open_id_authentication_associations (`handle`, `server_url`, `lifetime`, `assoc_type`, `issued`, `secret`) VALUES('{HMAC-SHA1}{47218216}{jbtNQQ==}', x'687474703a2f2f7777772e6d796f70656e69642e636f6d2f736572766572', 1209600, 'HMAC-SHA1', 1193378330, x'a80d6e27b9e18b3f9b5f0487234e3c30eb052472')\e[0m
293   \e[4;35;1mSQL (0.006002)\e[0m   \e[0mCOMMIT\e[0m
294 Redirected to http://www.myopenid.com/server?openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj&openid.trust_root=http%3A%2F%2Flocalhost%3A3000%2F&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D
295 Completed in 2.69416 (0 reqs/sec) | DB: 0.01426 (0%) | 302 Found [http://localhost/session]
298 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:00:06) [GET]
299   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
300   Parameters: {"openid.sig"=>"Dd2Zl40QxVDXXJkA1KOBRNFVP6g=", "openid.return_to"=>"http://localhost:3000/session?open_id_complete=1&to=%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F&nonce=ttHK83rj&nonce=ttHK83rj", "openid.mode"=>"id_res", "openid.op_endpoint"=>"http://www.myopenid.com/server", "openid.response_nonce"=>"2007-10-26T06:00:01ZJ3ighF", "action"=>"create", "to"=>"/login?to=%252Flogin%253Fto%253D%2525252F", "method"=>:get, "controller"=>"sessions", "openid.identity"=>"http://priit.myopenid.com/", "nonce"=>"ttHK83rj", "open_id_complete"=>"1", "openid.signed"=>"assoc_handle,identity,mode,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{47218216}{jbtNQQ==}"}
301 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:00:06 GMT
302   \e[4;36;1mOpenIdAuthentication::Association Load (0.000473)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') \e[0m
303   \e[4;35;1mOpenIdAuthentication::Nonce Load (0.000314)\e[0m   \e[0mSELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'ttHK83rj') LIMIT 1\e[0m
304   \e[4;36;1mSQL (0.000046)\e[0m   \e[0;1mBEGIN\e[0m
305   \e[4;35;1mOpenIdAuthentication::Nonce Destroy (0.000145)\e[0m   \e[0m DELETE FROM open_id_authentication_nonces
306  WHERE `id` = 1
307 \e[0m
308   \e[4;36;1mSQL (0.006813)\e[0m   \e[0;1mCOMMIT\e[0m
309   \e[4;35;1mSQL (0.000364)\e[0m   \e[0mSHOW TABLES\e[0m
310   \e[4;36;1mUser Columns (0.001036)\e[0m   \e[0;1mSHOW FIELDS FROM users\e[0m
311   \e[4;35;1mSQL (0.000284)\e[0m   \e[0mSHOW TABLES\e[0m
312   \e[4;36;1mForum Columns (0.000573)\e[0m   \e[0;1mSHOW FIELDS FROM forums\e[0m
313   \e[4;35;1mSQL (0.000289)\e[0m   \e[0mSHOW TABLES\e[0m
314   \e[4;36;1mSQL (0.000237)\e[0m   \e[0;1mSHOW TABLES\e[0m
315   \e[4;35;1mUser Load (0.000317)\e[0m   \e[0mSELECT * FROM users WHERE (users.`openid_url` = 'http://priidu.com/') LIMIT 1\e[0m
316 Rendering template within layouts/application
317 Rendering sessions/new
318 Rendered layouts/_head (0.00327)
319 Completed in 0.11550 (8 reqs/sec) | Rendering: 0.00639 (5%) | DB: 0.01089 (9%) | 200 OK [http://localhost/session?open_id_complete=1&to=%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F&nonce=ttHK83rj&nonce=ttHK83rj&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.myopenid.com%2Fserver&openid.response_nonce=2007-10-26T06%3A00%3A01ZJ3ighF&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj&openid.sig=Dd2Zl40QxVDXXJkA1KOBRNFVP6g%3D&openid.signed=assoc_handle%2Cidentity%2Cmode%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned]
322 Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:00:16) [GET]
323   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
324   Parameters: {"action"=>"new", "to"=>"%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj%26openid.assoc_handle%3D%257BHMAC-SHA1%257D%257B47218216%257D%257BjbtNQQ%253D%253D%257D%26openid.identity%3Dhttp%253A%252F%252Fpriit.myopenid.com%252F%26openid.mode%3Did_res%26openid.op_endpoint%3Dhttp%253A%252F%252Fwww.myopenid.com%252Fserver%26openid.response_nonce%3D2007-10-26T06%253A00%253A01ZJ3ighF%26openid.return_to%3Dhttp%253A%252F%252Flocalhost%253A3000%252Fsession%253Fopen_id_complete%253D1%2526to%253D%25252Flogin%25253Fto%25253D%252525252Flogin%252525253Fto%252525253D%2525252525252F%2526nonce%253DttHK83rj%2526nonce%253DttHK83rj%26openid.sig%3DDd2Zl40QxVDXXJkA1KOBRNFVP6g%253D%26openid.signed%3Dassoc_handle%252Cidentity%252Cmode%252Cop_endpoint%252Cresponse_nonce%252Creturn_to%252Csigned", "controller"=>"users"}
325   \e[4;36;1mSQL (0.000348)\e[0m   \e[0;1mSHOW TABLES\e[0m
326   \e[4;35;1mUser Columns (0.000978)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
327   \e[4;36;1mSQL (0.000313)\e[0m   \e[0;1mSHOW TABLES\e[0m
328   \e[4;35;1mForum Columns (0.000526)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
329   \e[4;36;1mSQL (0.000476)\e[0m   \e[0;1mSHOW TABLES\e[0m
330   \e[4;35;1mSQL (0.000241)\e[0m   \e[0mSHOW TABLES\e[0m
331 Rendering template within layouts/application
332 Rendering users/new
333 Rendered users/_form (0.00580)
334 Rendered layouts/_head (0.00416)
335 Completed in 0.04956 (20 reqs/sec) | Rendering: 0.01251 (25%) | DB: 0.00288 (5%) | 200 OK [http://localhost/signup?to=%252Fsession%253Fopen_id_complete%253D1%2526to%253D%25252Flogin%25253Fto%25253D%252525252Flogin%252525253Fto%252525253D%2525252525252F%2526nonce%253DttHK83rj%2526nonce%253DttHK83rj%2526openid.assoc_handle%253D%25257BHMAC-SHA1%25257D%25257B47218216%25257D%25257BjbtNQQ%25253D%25253D%25257D%2526openid.identity%253Dhttp%25253A%25252F%25252Fpriit.myopenid.com%25252F%2526openid.mode%253Did_res%2526openid.op_endpoint%253Dhttp%25253A%25252F%25252Fwww.myopenid.com%25252Fserver%2526openid.response_nonce%253D2007-10-26T06%25253A00%25253A01ZJ3ighF%2526openid.return_to%253Dhttp%25253A%25252F%25252Flocalhost%25253A3000%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%2526openid.sig%253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%25253D%2526openid.signed%253Dassoc_handle%25252Cidentity%25252Cmode%25252Cop_endpoint%25252Cresponse_nonce%25252Creturn_to%25252Csigned]
338 Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 14:01:26) [GET]
339   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
340   Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%252526openid.assoc_handle%25253D%2525257BHMAC-SHA1%2525257D%2525257B47218216%2525257D%2525257BjbtNQQ%2525253D%2525253D%2525257D%252526openid.identity%25253Dhttp%2525253A%2525252F%2525252Fpriit.myopenid.com%2525252F%252526openid.mode%25253Did_res%252526openid.op_endpoint%25253Dhttp%2525253A%2525252F%2525252Fwww.myopenid.com%2525252Fserver%252526openid.response_nonce%25253D2007-10-26T06%2525253A00%2525253A01ZJ3ighF%252526openid.return_to%25253Dhttp%2525253A%2525252F%2525252Flocalhost%2525253A3000%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%252526openid.sig%25253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%2525253D%252526openid.signed%25253Dassoc_handle%2525252Cidentity%2525252Cmode%2525252Cop_endpoint%2525252Cresponse_nonce%2525252Creturn_to%2525252Csigned", "controller"=>"sessions"}
341 Rendering template within layouts/application
342 Rendering sessions/new
343 Rendered layouts/_head (0.00363)
344 Completed in 0.01023 (97 reqs/sec) | Rendering: 0.00654 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Fsignup%253Fto%253D%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%25252526openid.assoc_handle%2525253D%252525257BHMAC-SHA1%252525257D%252525257B47218216%252525257D%252525257BjbtNQQ%252525253D%252525253D%252525257D%25252526openid.identity%2525253Dhttp%252525253A%252525252F%252525252Fpriit.myopenid.com%252525252F%25252526openid.mode%2525253Did_res%25252526openid.op_endpoint%2525253Dhttp%252525253A%252525252F%252525252Fwww.myopenid.com%252525252Fserver%25252526openid.response_nonce%2525253D2007-10-26T06%252525253A00%252525253A01ZJ3ighF%25252526openid.return_to%2525253Dhttp%252525253A%252525252F%252525252Flocalhost%252525253A3000%252525252Fsession%252525253Fopen_id_complete%252525253D1%2525252526to%252525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252Flogin%252525252525253Fto%252525252525253D%2525252525252525252F%2525252526nonce%252525253DttHK83rj%2525252526nonce%252525253DttHK83rj%25252526openid.sig%2525253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%252525253D%25252526openid.signed%2525253Dassoc_handle%252525252Cidentity%252525252Cmode%252525252Cop_endpoint%252525252Cresponse_nonce%252525252Creturn_to%252525252Csigned]
347 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:01:35) [POST]
348   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
349   Parameters: {"commit"=>"Login", "openid_url"=>"priit.mx.ee", "action"=>"create", "to"=>"%2Fsignup%3Fto%3D%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%252526openid.assoc_handle%25253D%2525257BHMAC-SHA1%2525257D%2525257B47218216%2525257D%2525257BjbtNQQ%2525253D%2525253D%2525257D%252526openid.identity%25253Dhttp%2525253A%2525252F%2525252Fpriit.myopenid.com%2525252F%252526openid.mode%25253Did_res%252526openid.op_endpoint%25253Dhttp%2525253A%2525252F%2525252Fwww.myopenid.com%2525252Fserver%252526openid.response_nonce%25253D2007-10-26T06%2525253A00%2525253A01ZJ3ighF%252526openid.return_to%25253Dhttp%2525253A%2525252F%2525252Flocalhost%2525253A3000%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%252526openid.sig%25253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%2525253D%252526openid.signed%25253Dassoc_handle%2525252Cidentity%2525252Cmode%2525252Cop_endpoint%2525252Cresponse_nonce%2525252Creturn_to%2525252Csigned", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""}
350 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:01:35 GMT
351 Rendering template within layouts/application
352 Rendering sessions/new
353 Rendered layouts/_head (0.00300)
354 Completed in 65.14472 (0 reqs/sec) | Rendering: 0.00916 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session]
357 Processing UsersController#index (for 127.0.0.1 at 2007-10-26 14:10:18) [GET]
358   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
359   Parameters: {"action"=>"index", "controller"=>"users"}
360   \e[4;36;1mSQL (0.000330)\e[0m   \e[0;1mSHOW TABLES\e[0m
361   \e[4;35;1mUser Columns (0.000992)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
362   \e[4;36;1mSQL (0.000289)\e[0m   \e[0;1mSHOW TABLES\e[0m
363   \e[4;35;1mForum Columns (0.000511)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
364   \e[4;36;1mSQL (0.000297)\e[0m   \e[0;1mSHOW TABLES\e[0m
365   \e[4;35;1mSQL (0.000251)\e[0m   \e[0mSHOW TABLES\e[0m
366   \e[4;36;1mSQL (0.000231)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM users \e[0m
367   \e[4;35;1mUser Load (0.000236)\e[0m   \e[0mSELECT * FROM users ORDER BY display_name LIMIT 0, 50\e[0m
368   \e[4;36;1mCACHE (0.000000)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM users \e[0m
369   \e[4;35;1mSQL (0.000188)\e[0m   \e[0mSELECT count(id) AS count_id FROM users WHERE (posts_count > 0) \e[0m
370 Rendering template within layouts/application
371 Rendering users/index
372 Rendered layouts/_head (0.00150)
373 Completed in 0.04600 (21 reqs/sec) | Rendering: 0.00614 (13%) | DB: 0.00333 (7%) | 200 OK [http://localhost/users]
376 Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:10:20) [GET]
377   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
378   Parameters: {"action"=>"new", "to"=>"%2Fusers", "controller"=>"users"}
379   \e[4;36;1mSQL (0.000426)\e[0m   \e[0;1mSHOW TABLES\e[0m
380   \e[4;35;1mUser Columns (0.001030)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
381   \e[4;36;1mSQL (0.000297)\e[0m   \e[0;1mSHOW TABLES\e[0m
382   \e[4;35;1mForum Columns (0.000693)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
383   \e[4;36;1mSQL (0.000334)\e[0m   \e[0;1mSHOW TABLES\e[0m
384   \e[4;35;1mSQL (0.000253)\e[0m   \e[0mSHOW TABLES\e[0m
385 Rendering template within layouts/application
386 Rendering users/new
387 Rendered users/_form (0.00763)
388 Rendered layouts/_head (0.00303)
389 Completed in 0.11988 (8 reqs/sec) | Rendering: 0.01418 (11%) | DB: 0.00303 (2%) | 200 OK [http://localhost/signup?to=%252Fusers]
392 Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:31:53) [GET]
393   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
394   Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fusers", "controller"=>"users"}
395   \e[4;36;1mSQL (0.000315)\e[0m   \e[0;1mSHOW TABLES\e[0m
396   \e[4;35;1mUser Columns (0.000902)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
397   \e[4;36;1mSQL (0.000285)\e[0m   \e[0;1mSHOW TABLES\e[0m
398   \e[4;35;1mForum Columns (0.000511)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
399   \e[4;36;1mSQL (0.000275)\e[0m   \e[0;1mSHOW TABLES\e[0m
400   \e[4;35;1mSQL (0.000224)\e[0m   \e[0mSHOW TABLES\e[0m
401 Rendering template within layouts/application
402 Rendering users/new
403 Rendered users/_form (0.00401)
404 Rendered layouts/_head (0.00160)
405 Completed in 0.04389 (22 reqs/sec) | Rendering: 0.00746 (16%) | DB: 0.00251 (5%) | 200 OK [http://localhost/signup?to=%252Fsignup%253Fto%253D%2525252Fusers]
408 Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 14:31:54) [GET]
409   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
410   Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers", "controller"=>"sessions"}
411 Rendering template within layouts/application
412 Rendering sessions/new
413 Rendered layouts/_head (0.00162)
414 Completed in 0.01172 (85 reqs/sec) | Rendering: 0.00538 (45%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers]
417 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:32:02) [POST]
418   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
419   Parameters: {"commit"=>"Login", "openid_url"=>"priit.mx.ee", "action"=>"create", "to"=>"%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>"", "remember_me"=>"1"}
420 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:32:02 GMT
421   \e[4;36;1mOpenIdAuthentication::Nonce Load (0.000322)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'vnM9mXeP') LIMIT 1\e[0m
422   \e[4;35;1mSQL (0.000061)\e[0m   \e[0mBEGIN\e[0m
423   \e[4;36;1mOpenIdAuthentication::Nonce Create (0.000166)\e[0m   \e[0;1mINSERT INTO open_id_authentication_nonces (`created`, `nonce`) VALUES(1193380324, 'vnM9mXeP')\e[0m
424   \e[4;35;1mSQL (0.001941)\e[0m   \e[0mCOMMIT\e[0m
425   \e[4;36;1mOpenIdAuthentication::Association Load (0.000211)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') \e[0m
426 Redirected to http://www.myopenid.com/server?openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers%26nonce%3DvnM9mXeP%26nonce%3DvnM9mXeP&openid.trust_root=http%3A%2F%2Flocalhost%3A3000%2F&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D
427 Completed in 1.40410 (0 reqs/sec) | DB: 0.00270 (0%) | 302 Found [http://localhost/session]
430 Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:32:26) [GET]
431   Session ID: ecb8723fbc6bfd00a3b36f79afb03c97
432   Parameters: {"openid.sig"=>"74tHVfxWbczQKjcuTkZrCBo1taM=", "openid.return_to"=>"http://localhost:3000/session?open_id_complete=1&to=%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers&nonce=vnM9mXeP&nonce=vnM9mXeP", "openid.mode"=>"id_res", "openid.op_endpoint"=>"http://www.myopenid.com/server", "openid.response_nonce"=>"2007-10-26T06:32:21ZAP4p2v", "action"=>"create", "to"=>"/signup?to=%252Fsignup%253Fto%253D%2525252Fusers", "method"=>:get, "controller"=>"sessions", "openid.identity"=>"http://priit.myopenid.com/", "nonce"=>"vnM9mXeP", "open_id_complete"=>"1", "openid.signed"=>"assoc_handle,identity,mode,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{47218216}{jbtNQQ==}"}
433 Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:32:26 GMT
434   \e[4;35;1mOpenIdAuthentication::Association Load (0.000180)\e[0m   \e[0mSELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') \e[0m
435   \e[4;36;1mOpenIdAuthentication::Nonce Load (0.000421)\e[0m   \e[0;1mSELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'vnM9mXeP') LIMIT 1\e[0m
436   \e[4;35;1mSQL (0.000098)\e[0m   \e[0mBEGIN\e[0m
437   \e[4;36;1mOpenIdAuthentication::Nonce Destroy (0.000269)\e[0m   \e[0;1m DELETE FROM open_id_authentication_nonces
438  WHERE `id` = 2
439 \e[0m
440   \e[4;35;1mSQL (0.004606)\e[0m   \e[0mCOMMIT\e[0m
441   \e[4;36;1mSQL (0.000507)\e[0m   \e[0;1mSHOW TABLES\e[0m
442   \e[4;35;1mUser Columns (0.001618)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
443   \e[4;36;1mSQL (0.000278)\e[0m   \e[0;1mSHOW TABLES\e[0m
444   \e[4;35;1mForum Columns (0.000510)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
445   \e[4;36;1mSQL (0.000301)\e[0m   \e[0;1mSHOW TABLES\e[0m
446   \e[4;35;1mSQL (0.000241)\e[0m   \e[0mSHOW TABLES\e[0m
447   \e[4;36;1mUser Load (0.000318)\e[0m   \e[0;1mSELECT * FROM users WHERE (users.`openid_url` = 'http://priit.mx.ee/') LIMIT 1\e[0m
448 Rendering template within layouts/application
449 Rendering sessions/new
450 Rendered layouts/_head (0.00310)
451 Completed in 0.06552 (15 reqs/sec) | Rendering: 0.00594 (9%) | DB: 0.00935 (14%) | 200 OK [http://localhost/session?open_id_complete=1&to=%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers&nonce=vnM9mXeP&nonce=vnM9mXeP&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.myopenid.com%2Fserver&openid.response_nonce=2007-10-26T06%3A32%3A21ZAP4p2v&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers%26nonce%3DvnM9mXeP%26nonce%3DvnM9mXeP&openid.sig=74tHVfxWbczQKjcuTkZrCBo1taM%3D&openid.signed=assoc_handle%2Cidentity%2Cmode%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned]
454 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:48:23) [GET]
455   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
456   Parameters: {"action"=>"index", "controller"=>"forums"}
457   \e[4;36;1mSQL (0.000276)\e[0m   \e[0;1mSHOW TABLES\e[0m
458   \e[4;35;1mForum Columns (0.000530)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
459   \e[4;36;1mSQL (0.000258)\e[0m   \e[0;1mSHOW TABLES\e[0m
460   \e[4;35;1mUser Columns (0.000866)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
461   \e[4;36;1mSQL (0.000239)\e[0m   \e[0;1mSHOW TABLES\e[0m
462   \e[4;35;1mSQL (0.000234)\e[0m   \e[0mSHOW TABLES\e[0m
463   \e[4;36;1mTopic Columns (0.000686)\e[0m   \e[0;1mSHOW FIELDS FROM topics\e[0m
464   \e[4;35;1mForum Load (0.000296)\e[0m   \e[0mSELECT * FROM forums ORDER BY position\e[0m
465 Rendering template within layouts/application
466 Rendering forums/index
467   \e[4;36;1mSQL (0.000206)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM topics \e[0m
468   \e[4;35;1mPost Columns (0.000571)\e[0m   \e[0mSHOW FIELDS FROM posts\e[0m
469   \e[4;36;1mSQL (0.000133)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM posts \e[0m
470   \e[4;35;1mSQL (0.000203)\e[0m   \e[0mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
471   \e[4;36;1mUser Load (0.000226)\e[0m   \e[0;1mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:43:23') \e[0m
472 Rendered layouts/_head (0.00522)
473 Completed in 0.06949 (14 reqs/sec) | Rendering: 0.02724 (39%) | DB: 0.00472 (6%) | 200 OK [http://localhost/]
476 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:48:48) [GET]
477   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
478   Parameters: {"action"=>"index", "controller"=>"forums"}
479   \e[4;35;1mSQL (0.000382)\e[0m   \e[0mSHOW TABLES\e[0m
480   \e[4;36;1mForum Columns (0.000598)\e[0m   \e[0;1mSHOW FIELDS FROM forums\e[0m
481   \e[4;35;1mSQL (0.000311)\e[0m   \e[0mSHOW TABLES\e[0m
482   \e[4;36;1mUser Columns (0.000966)\e[0m   \e[0;1mSHOW FIELDS FROM users\e[0m
483   \e[4;35;1mSQL (0.000276)\e[0m   \e[0mSHOW TABLES\e[0m
484   \e[4;36;1mSQL (0.000234)\e[0m   \e[0;1mSHOW TABLES\e[0m
485   \e[4;35;1mTopic Columns (0.000699)\e[0m   \e[0mSHOW FIELDS FROM topics\e[0m
486   \e[4;36;1mForum Load (0.000126)\e[0m   \e[0;1mSELECT * FROM forums ORDER BY position\e[0m
487 Rendering template within layouts/application
488 Rendering forums/index
489   \e[4;35;1mSQL (0.000068)\e[0m   \e[0mSELECT count(*) AS count_all FROM topics \e[0m
490   \e[4;36;1mPost Columns (0.000629)\e[0m   \e[0;1mSHOW FIELDS FROM posts\e[0m
491   \e[4;35;1mSQL (0.000062)\e[0m   \e[0mSELECT count(*) AS count_all FROM posts \e[0m
492   \e[4;36;1mSQL (0.000058)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
493   \e[4;35;1mUser Load (0.000294)\e[0m   \e[0mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:43:48') \e[0m
494 Rendered layouts/_head (0.00168)
495 Completed in 0.10820 (9 reqs/sec) | Rendering: 0.00549 (5%) | DB: 0.00470 (4%) | 200 OK [http://localhost/]
498 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:54:37) [GET]
499   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
500   Parameters: {"action"=>"index", "controller"=>"forums"}
501   \e[4;36;1mSQL (0.000273)\e[0m   \e[0;1mSHOW TABLES\e[0m
502   \e[4;35;1mForum Columns (0.001147)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
503   \e[4;36;1mSQL (0.000279)\e[0m   \e[0;1mSHOW TABLES\e[0m
504   \e[4;35;1mUser Columns (0.000890)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
505   \e[4;36;1mSQL (0.000250)\e[0m   \e[0;1mSHOW TABLES\e[0m
506   \e[4;35;1mSQL (0.000249)\e[0m   \e[0mSHOW TABLES\e[0m
507   \e[4;36;1mTopic Columns (0.000726)\e[0m   \e[0;1mSHOW FIELDS FROM topics\e[0m
508   \e[4;35;1mForum Load (0.000831)\e[0m   \e[0mSELECT * FROM forums ORDER BY position\e[0m
509 Rendering template within layouts/application
510 Rendering forums/index
511   \e[4;36;1mSQL (0.000083)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM topics \e[0m
512   \e[4;35;1mPost Columns (0.001037)\e[0m   \e[0mSHOW FIELDS FROM posts\e[0m
513   \e[4;36;1mSQL (0.000073)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM posts \e[0m
514   \e[4;35;1mSQL (0.000054)\e[0m   \e[0mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
515   \e[4;36;1mUser Load (0.000295)\e[0m   \e[0;1mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:49:37') \e[0m
516 Rendered layouts/_head (0.00480)
517 Completed in 0.05734 (17 reqs/sec) | Rendering: 0.01546 (26%) | DB: 0.00619 (10%) | 200 OK [http://localhost/]
520 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:30) [GET]
521   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
522   Parameters: {"action"=>"index", "controller"=>"forums"}
523   \e[4;35;1mSQL (0.000384)\e[0m   \e[0mSHOW TABLES\e[0m
524   \e[4;36;1mForum Columns (0.000576)\e[0m   \e[0;1mSHOW FIELDS FROM forums\e[0m
525   \e[4;35;1mSQL (0.000296)\e[0m   \e[0mSHOW TABLES\e[0m
526   \e[4;36;1mUser Columns (0.000978)\e[0m   \e[0;1mSHOW FIELDS FROM users\e[0m
527   \e[4;35;1mSQL (0.000418)\e[0m   \e[0mSHOW TABLES\e[0m
528   \e[4;36;1mSQL (0.000258)\e[0m   \e[0;1mSHOW TABLES\e[0m
529   \e[4;35;1mTopic Columns (0.000765)\e[0m   \e[0mSHOW FIELDS FROM topics\e[0m
530   \e[4;36;1mForum Load (0.000124)\e[0m   \e[0;1mSELECT * FROM forums ORDER BY position\e[0m
531 Rendering template within layouts/application
532 Rendering forums/index
533   \e[4;35;1mSQL (0.000096)\e[0m   \e[0mSELECT count(*) AS count_all FROM topics \e[0m
534   \e[4;36;1mPost Columns (0.000649)\e[0m   \e[0;1mSHOW FIELDS FROM posts\e[0m
535   \e[4;35;1mSQL (0.000062)\e[0m   \e[0mSELECT count(*) AS count_all FROM posts \e[0m
536   \e[4;36;1mSQL (0.000058)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
537   \e[4;35;1mUser Load (0.000296)\e[0m   \e[0mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:30') \e[0m
538 Rendered layouts/_head (0.00172)
539 Completed in 0.10091 (9 reqs/sec) | Rendering: 0.00571 (5%) | DB: 0.00496 (4%) | 200 OK [http://localhost/]
542 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:32) [GET]
543   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
544   Parameters: {"action"=>"index", "controller"=>"forums"}
545   \e[4;36;1mSQL (0.000474)\e[0m   \e[0;1mSHOW TABLES\e[0m
546   \e[4;35;1mForum Columns (0.000972)\e[0m   \e[0mSHOW FIELDS FROM forums\e[0m
547   \e[4;36;1mSQL (0.000454)\e[0m   \e[0;1mSHOW TABLES\e[0m
548   \e[4;35;1mUser Columns (0.001566)\e[0m   \e[0mSHOW FIELDS FROM users\e[0m
549   \e[4;36;1mSQL (0.000238)\e[0m   \e[0;1mSHOW TABLES\e[0m
550   \e[4;35;1mSQL (0.000221)\e[0m   \e[0mSHOW TABLES\e[0m
551   \e[4;36;1mTopic Columns (0.000685)\e[0m   \e[0;1mSHOW FIELDS FROM topics\e[0m
552   \e[4;35;1mForum Load (0.000116)\e[0m   \e[0mSELECT * FROM forums ORDER BY position\e[0m
553 Rendering template within layouts/application
554 Rendering forums/index
555   \e[4;36;1mSQL (0.000066)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM topics \e[0m
556   \e[4;35;1mPost Columns (0.000628)\e[0m   \e[0mSHOW FIELDS FROM posts\e[0m
557   \e[4;36;1mSQL (0.000235)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM posts \e[0m
558   \e[4;35;1mSQL (0.000060)\e[0m   \e[0mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
559   \e[4;36;1mUser Load (0.000308)\e[0m   \e[0;1mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:32') \e[0m
560 Rendered layouts/_head (0.00154)
561 Completed in 0.06065 (16 reqs/sec) | Rendering: 0.00530 (8%) | DB: 0.00602 (9%) | 200 OK [http://localhost/]
564 Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:33) [GET]
565   Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7
566   Parameters: {"action"=>"index", "controller"=>"forums"}
567   \e[4;35;1mSQL (0.000303)\e[0m   \e[0mSHOW TABLES\e[0m
568   \e[4;36;1mForum Columns (0.000639)\e[0m   \e[0;1mSHOW FIELDS FROM forums\e[0m
569   \e[4;35;1mSQL (0.000284)\e[0m   \e[0mSHOW TABLES\e[0m
570   \e[4;36;1mUser Columns (0.000954)\e[0m   \e[0;1mSHOW FIELDS FROM users\e[0m
571   \e[4;35;1mSQL (0.000268)\e[0m   \e[0mSHOW TABLES\e[0m
572   \e[4;36;1mSQL (0.000238)\e[0m   \e[0;1mSHOW TABLES\e[0m
573   \e[4;35;1mTopic Columns (0.000787)\e[0m   \e[0mSHOW FIELDS FROM topics\e[0m
574   \e[4;36;1mForum Load (0.000104)\e[0m   \e[0;1mSELECT * FROM forums ORDER BY position\e[0m
575 Rendering template within layouts/application
576 Rendering forums/index
577   \e[4;35;1mSQL (0.000065)\e[0m   \e[0mSELECT count(*) AS count_all FROM topics \e[0m
578   \e[4;36;1mPost Columns (0.000712)\e[0m   \e[0;1mSHOW FIELDS FROM posts\e[0m
579   \e[4;35;1mSQL (0.000051)\e[0m   \e[0mSELECT count(*) AS count_all FROM posts \e[0m
580   \e[4;36;1mSQL (0.000048)\e[0m   \e[0;1mSELECT count(*) AS count_all FROM users WHERE (posts_count > 0) \e[0m
581   \e[4;35;1mUser Load (0.000290)\e[0m   \e[0mSELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:33') \e[0m
582 Rendered layouts/_head (0.00159)
583 Completed in 0.04797 (20 reqs/sec) | Rendering: 0.00540 (11%) | DB: 0.00474 (9%) | 200 OK [http://localhost/]
584 /!\ FAILSAFE /!\  Tue Oct 30 13:56:53 +0800 2007
585   Status: 500 Internal Server Error
586   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
587     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
588     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
589     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
590     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
591     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
592     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
593     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
594     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
595     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
596     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
597     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
598     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
599     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
600     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
601     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
602     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
603     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
604     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
605     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
606     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
607     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
608     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
609     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
610     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
611     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
612     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
613     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
614     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
615     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
616     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
617     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
618     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
619     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
620     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
621     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
622     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
623     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
624     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
625     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
626     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
627     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
628     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
629     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
630     script/server:3
631 /!\ FAILSAFE /!\  Tue Oct 30 13:56:57 +0800 2007
632   Status: 500 Internal Server Error
633   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
634     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
635     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
636     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
637     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
638     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
639     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
640     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
641     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
642     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
643     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
644     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
645     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
646     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
647     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
648     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
649     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
650     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
651     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
652     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
653     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
654     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
655     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
656     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
657     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
658     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
659     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
660     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
661     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
662     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
663     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
664     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
665     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
666     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
667     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
668     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
669     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
670     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
671     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
672     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
673     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
674     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
675     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
676     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
677     script/server:3
678 /!\ FAILSAFE /!\  Tue Oct 30 13:56:57 +0800 2007
679   Status: 500 Internal Server Error
680   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
681     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
682     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
683     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
684     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
685     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
686     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
687     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
688     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
689     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
690     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
691     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
692     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
693     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
694     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
695     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
696     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
697     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
698     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
699     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
700     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
701     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
702     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
703     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
704     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
705     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
706     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
707     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
708     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
709     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
710     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
711     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
712     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
713     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
714     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
715     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
716     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
717     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
718     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
719     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
720     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
721     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
722     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
723     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
724     script/server:3
725 /!\ FAILSAFE /!\  Tue Oct 30 13:56:58 +0800 2007
726   Status: 500 Internal Server Error
727   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
728     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
729     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
730     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
731     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
732     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
733     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
734     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
735     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
736     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
737     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
738     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
739     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
740     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
741     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
742     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
743     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
744     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
745     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
746     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
747     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
748     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
749     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
750     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
751     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
752     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
753     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
754     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
755     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
756     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
757     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
758     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
759     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
760     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
761     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
762     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
763     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
764     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
765     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
766     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
767     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
768     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
769     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
770     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
771     script/server:3
772 /!\ FAILSAFE /!\  Tue Oct 30 13:56:59 +0800 2007
773   Status: 500 Internal Server Error
774   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
775     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
776     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
777     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
778     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
779     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
780     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
781     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
782     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
783     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
784     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
785     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
786     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
787     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
788     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
789     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
790     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
791     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
792     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
793     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
794     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
795     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
796     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
797     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
798     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
799     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
800     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
801     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
802     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
803     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
804     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
805     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
806     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
807     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
808     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
809     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
810     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
811     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
812     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
813     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
814     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
815     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
816     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
817     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
818     script/server:3
819 /!\ FAILSAFE /!\  Tue Oct 30 13:57:49 +0800 2007
820   Status: 500 Internal Server Error
821   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
822     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
823     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
824     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
825     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
826     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
827     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
828     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
829     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
830     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
831     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
832     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
833     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
834     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
835     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
836     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
837     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
838     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
839     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
840     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
841     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
842     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
843     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
844     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
845     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
846     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
847     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
848     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
849     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
850     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
851     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
852     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
853     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
854     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
855     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
856     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
857     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
858     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
859     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
860     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
861     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
862     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
863     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
864     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
865     script/server:3
866 /!\ FAILSAFE /!\  Tue Oct 30 13:57:59 +0800 2007
867   Status: 500 Internal Server Error
868   No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb
869     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat'
870     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload'
871     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application'
872     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!'
873     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks'
874     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each'
875     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!'
876     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks'
877     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch'
878     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi'
879     /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch'
880     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
881     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
882     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
883     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
884     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
885     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
886     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
887     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
888     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
889     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
890     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
891     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
892     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
893     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
894     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
895     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
896     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
897     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
898     /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
899     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
900     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
901     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
902     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load'
903     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64
904     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
905     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
906     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
907     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in'
908     /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require'
909     /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39
910     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
911     /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
912     script/server:3