Displaying 5 results from an estimated 5 matches for "arturaz".
Did you mean:
arturas
2004 Jan 09
2
ap 450
Good dat all
I have a Lucent AP450
I''m havin trouble administratin it with the web interface under
linux.Under windows all seem to be 100 but the menus is not showing
under linux.I dont think this is a ap proble maybe a mozilla.I dont
know.Anyone have the same problem?
Thanks
Eddie
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
2004 Jan 15
3
put shaping on ppp or eth?
Hi,
I wanna do some shaping on a DSL line that is plugged to the eth1 nic.
Should I attach the qdiscs directly to the ppp device or can I use the
eth1 device instead? What (and why) makes more sense?
thx
cb
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2004 Jan 07
11
Random ping jumps
Hello,
I''ve got this problem. There is an linux server with 2.4.24 kernel
and pinging from him to internet (or from lan) ping randomly jumps up:
64 bytes from fortas.ktu.lt (193.219.160.131): icmp_seq=387 ttl=59 time=30.0 ms
64 bytes from fortas.ktu.lt (193.219.160.131): icmp_seq=388 ttl=59 time=32.6 ms
64 bytes from fortas.ktu.lt (193.219.160.131): icmp_seq=389 ttl=59 time=34.9 ms
2006 Jun 30
0
Accessing View methods from Model?
Hey. I have Menu model which recursively renders a menu. Now I want to
use link_to and link_to_unless_current methods from View helpers inside
my Model. Any ideas how I coulkd do that?
--
Posted via http://www.ruby-forum.com/.
2006 Jun 19
3
Strange behavior of :through association.
class Host < ActiveRecord::Base
belongs_to :person
end
class House < ActiveRecord::Base
has_many :people, :dependent => true
has_many :hosts, :through => :person
end
class Person < ActiveRecord::Base
belongs_to :house
has_many :hosts, :dependent => true
end
Now when I try to do:
@hosts = House.find_by_id(params[:namas]).hosts
from my controller I get this: