Displaying 20 results from an estimated 20 matches for "hery".
Did you mean:
here
2006 Aug 16
5
New, and need help
Hey, well im new to ruby. I heard it was a web site creating software.
Well the problem is that where do i get the software from? ill work out
how to use it, i just need to know where to download the software.
Thanks.
-MAB
--
Posted via http://www.ruby-forum.com/.
2006 Aug 14
1
monitor an app for errors
hello there
how can i monitor an app. what i need most is when and where error pages
were printed to user, such as RoR errors, database problems or such.
is there an instance problem that i can use avalaible to views or helpers
??????
______________
Heri R.
http://sprinj.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Sep 23
6
Scalability and Possiblity
I''m not sure this is the appropriate community to get objective
unbiased feedback on this issue, but I suppose it''s worth a gander...
Here''s my question:
Is it possible to write a massively scalable application intented for
millions of users (i.e. Yahoo, Google, MySpace, etc.) using Ruby on
Rails?
I''m sure apps like these can be built, but can they scale to
2006 Jul 28
8
Building a Search Page as part of CRUD
I''ve been experimenting with Rails over the past couple of days and
have come across something that seems harder than it should be. In
previous frameworks I have used (WebObjects, php) a full search page
(which leads into a list view populated with search results) was part
of the CRUD that was either dynamically or statically created after
specifying table/object schema. In
2006 Jul 28
1
long waiting time for first page due to session[:user]
hi everyone
i am developing http://sprinj.com
it uses a login system, quite simple, really, similar to loginEngine
the problem is that takes way too much time to access the first page. when i
desactive the login system, there is very noticeable difference (about 2 to
3 seconds), and people who visited the website complained about this.
is there something i can do to speed the sessions checkups ?
2006 Aug 05
5
Searching a database
If I have a list of items, how can I search some item in the list, by
some criteria or something else?
--
Posted via http://www.ruby-forum.com/.
2006 Aug 04
4
Tabs
I''m new to Ruby/Rails
I want to create Tabs similar to these...
http://demo.raibledesigns.com/struts-menu/tabbedMenu.jsp;jsessionid=aM2yeUTgLeTbY7WLAZ;jsessionid=aBFrrGHWQim4pwSPAZ?People
Can someone outline the best method?
Specifically,
Is creating a tabs.html in \..apps\views\layouts and using
class PhotoController < ApplicationController
layout "tabs"
....in my
2006 Aug 07
2
Customizing show
I''m trying to tidy up my first rails app, and want to customize the action
''show'' (created by generating a scaffold). It''s a recipe database, and some
of the fields are not required when submitting a new recipe, such as the
"History" field. However, when I want to show that recipe, I don''t want the
column name "History" to show if
2006 May 15
0
error HasManyThroughSourceAssociationNotFoundError
hi there,
i have a problem with my code. it might be trivial but couldn t solve it or
find it on google:
class Job < ActiveRecord::Base
has_many :jobs_locations
has_many :locations, :through => :jobs_locations
has_many :jobs_skills
has_many :skills, :through => :jobs_skills
end
class Skill < ActiveRecord::Base
has_many :jobs_skills,
has_many :jobs, :through => :jobs_skills
2006 Oct 28
2
anything rails based app like pligg or digg out there ?
I am wanting to do something like digg but internally at our company
and am looking for a rails based starting point. There is something
out there called pligg which seems pretty good, but it is PHP based and
I expect to be making quite a few changes/additions, so would really
prefer a project based on rails !
- hope to hear from you
--~--~---------~--~----~------------~-------~--~----~
You
2006 Aug 06
1
How to query with calculations?
Hi,
I would like to do something simple yet I''m confused.
Lets say I have a table with 2 fields: rank, updated_at.
I would like to show all records matching this condition:
rank = rank ? (Time.now.to_time ? Updated_at.to_time)
As you can see this is supposed to be a calculation on the field.
How do I write a query to show this?
I''ve tried with_scope, and regular find but did not
2006 May 27
2
NameError / active_support/dependencies
hi everyone
in my dev machine, everything works flawlessly
now when i uploaded my website on the server, it cannot acces User model
anymore. all other pages work by the way.
when i try to access User on console or by web, it shows:
NameError in UsersController#signup
uninitialized constant User
/usr/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:100:in
2006 Aug 11
2
User Favorites
Hi there,
I''m currently creating a simple (at least so I thought) structure of
user favorites. Basically users can add certain ''objects'' to their
list of favorites.
Here is my current structure (simplified)
class User
has_many :favorites
end
class Book
belongs_to :favorites
end
class Favorite
belongs_to :user
has_one :book
end
The table favorite just has a two
2006 Aug 13
3
why do text_fields appear smaller in IE than other browsers?
In testing my application on different browsers, I''ve noticed a few
differences:-
a password_field :size=>20 is smaller than a text_field :size=>20 on
Internet Explorer. They are the same on Firefox and Safari. makes my
login box look silly. the same can be seen on the login screen for this
forum. the password box is a little shorter on IE6.
more annoying however is I have
2006 Nov 02
5
nesting content from multiple controllers
Hi guys.
Here''s something I''ve been struggling with for a while: if you want to
nest a login box on, say, a welcome page, but the login stuff is
handled by the login controller while the welcome page is the welcome
controller, what are your options? Iframe?
Krister
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to
2013 Feb 02
3
Running XEN 4.1 64 bit on Ubuntu desktop without VTx
Dear all,
I am quite new in this virtualization area. I am want to do some experiment
with live migration using xen. However, I got problem since my server
didn''t support VTx. I am using Ubuntu desktop 12.04 64 bit with Xen 4.1
Amd64. But when I reload the machine it wont start, since the XEN website
its doesn''t matter using Paravirtualization without VTx support I dont know
2006 Aug 15
66
What are the cons of using rails?
Performace hits? Integration with existing applications? Security?
Bugs? Memory use?
-Ben Lisbakken
--
Posted via http://www.ruby-forum.com/.
2006 Aug 16
1
Creating a comments system for multiple types of content
Hi all
My site has news entries, it has a party calendar and it has a blog.
Now I''d like to create a commenting system that in fact is quite simple,
but I wanna use it for all these 3 types of content.
My question: how can I do that? I maybe could add an association to all
three types in the comment model:
class Comment < ActiveRecord::Base
belongs_to :news_item
belongs_to
2006 Aug 17
9
Help me please !
Hi all,
I''m a new comer. I want to design website myself but i don''t know any
thing about coding before. Please advise me to learn which programming
language ! I''m very interested on Ruby and Ruby on Rails introduction
...
Thank you so much !
--
Posted via http://www.ruby-forum.com/.
2003 Jul 28
8
RTP session traversing Asterisk server ...
I've been reading up on the SIP and related (SDP/RTP) RFC's and as I would expect the RTP session should ideally be between the two end points of the call, in my case the AS5300 and the 7940 which are connected on the same VLAN as the Asterisk server.
When I sniff the packets on the VLAN I find that all RTP packets are being relayed by the Asterisk server causing increased load on the