Displaying 5 results from an estimated 5 matches for "appbase".
2012 Jun 07
2
load_missing_constant: Expected to define class in module
Hi I''m having some weird issues with Rails 3 and classes defined in
modules.
To be more precise I''ve created several files that define classes in the
AppBase module like:
module AppBase
class BackendMenu
[content omitted]
end
end
When a page tries to use the BackendMenu class like AppBase::BackendMenu
I get an error saying "Expected backend_menu.rb to define BackendMenu
(load error)", but if reload the page the error no longer display...
2008 Nov 28
1
OT - tomcat 6 error
...i get this
INFO: Starting service Catalina
Nov 28, 2008 10:44:15 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
Nov 28, 2008 10:44:15 AM org.apache.catalina.startup.HostConfig
deployDescriptor
WARNING: A docBase /xxxxx/xxx.war inside the host appBase has been
specified, and will be ignored << error
Nov 28, 2008 10:44:16 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-9080
Nov 28, 2008 10:44:16 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 603 ms
The error is noted with the...
2011 Mar 26
2
Verify tomcat config
...2.000000000 +0000
@@ -18,7 +18,9 @@
<Engine name="Catalina" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase" />
- <Host name="localhost" appBase="webapps" />
+ <Host name="localhost" appBase="webapps">
+ <Context path="" docBase="/var/www/html" reloadable="true" />
+ </Host>
</Engine>
</Service>
Any comments/suggestion...
2008 Feb 06
0
[ wxruby-Bugs-17827 ] Crash when closing Dialog in bigdemo.rb
...)
#23 0x000db8d6 in rb_funcall ()
#24 0x010ab236 in wxRbCallback::EventThunker () at string.h:690
#25 0x0139fbc3 in wxAppConsole::HandleEvent (this=0x3ad2d0, handler=0x833200, func={__pfn = 0x10ab18c <wxRbCallback::EventThunker(wxEvent&)>, __delta = 0}, event=@0xbfffdf24) at ../src/common/appbase.cpp:320
#26 0x0143ba6e in wxEvtHandler::ProcessEventIfMatches (entry=@0x1582a500, handler=0x833200, event=@0xbfffdf24) at ../src/common/event.cpp:1225
#27 0x0143cb82 in wxEvtHandler::SearchDynamicEventTable (this=0x833200, event=@0xbfffdf24) at ../src/common/event.cpp:1407
#28 0x0143cc8c in wxEvtHa...
2006 Mar 31
0
comments for joel about rails in software discussion
...CE TO SAY IT
You want to setup some kind of configuration for some particular rails
package. You:
A. modify your existing code, which will use the package
B. modify code in the package itself
C. specify when you install or bootstrap the package via ruby script/*
and the command line
D. modify -APPBASE-/config/environment.rb
E. modify -APPBASE-/app/controller/application.rb
F. modify -APPBASE-/config/environments/-ENVIRONMENT-.rb
I had one engine that needed four of those.
Anyway, those are all the headaches I can remember. I''m pretty sure I''ve
forgotten a few, but oh well....