search for: kometen

Displaying 20 results from an estimated 24 matches for "kometen".

2006 Mar 17
4
using ajax and layouts
Hi. I copied the layout-example from agile web dev. in rails. When I want to use ajax to create a search field including <head><%= javascript_include_tag "prototype" %></head> does''nt work when I include the line in my app/views/layout/demo.rhtml. Name of controller is demo_controller.rb. The search-field is in app/views/demo/observer.rthml and I have to
2007 Oct 16
8
nfs-ownership
Hi. I have created some zfs-partitions. First I create the home/user-partitions. Beneath that I create additional partitions. Then I have do a chown -R for that user. These partitions are shared using the sharenfs=on. The owner- and group-id is 1009. These partitions are visible as the user assigned above. But when I mount the home/user partition from a FreeBSD-client, only the top-partiton has
2007 Apr 28
3
tape-backup software (was: Very Large Filesystems)
Speaking of backup-software. I heard that legato supports zfs but is anyone using zfs and legato or some other backup-software that can handle multi-TB-file systems (in production)? -- regards Claus
2006 May 19
1
validates_presence_of and ajax-forms
Hi. I have "validates_presence_of :login, :password, :firstname, :lastname" in my user-model. I enter the information in new_user.rhtml: <%= error_messages_for(:user) %> <%= form_remote_tag :url => { :action => :register }, :html => { :id => ''new_user'' } %> I have a register.rjs with :fade. Omitting firstname or any other required field
2008 Mar 26
1
freebsd 7 and areca controller
Hi. I'm looking at deploying a freebsd 7-release server with some storage attached to an areca ARC-1680 controller. But this card is not mentioned in 'man 4 arcmsr' (http://www.freebsd.org/cgi/man.cgi?query=arcmsr&sektion=4&manpath=FreeBSD+7.0-RELEASE). Areaca's website does mention freebsd as a supported OS (http://www.areca.com.tw/products/pcietosas1680series.htm). Has
2006 Mar 23
4
Postgresql connection problems
Forgive me for asking a trivial question on this list, but being new to Ruby/Ruby on Rails, I''m not sure where to start.... I''m trying to connect to a postgresql server: My database.yml contains: test_test: adapter: postgresql database: test_test username: testuser password: resutest host: testpgserver port: 5432 encoding: UTF8 min_messages: warning The
2008 Apr 17
3
php5 and postgresql 8.2/8.3
Hi. I have installed php5 with support for postgresql (php5-pgsql). If I install postgresql-client ver. 8.2.7 or 8.3.x apache (httpd) core-dumps. If I install postgresql-client 8.1.11 or 8.2.6 apache does not core-dump. This is the output (backtrace) from gdb: (gdb) bt #0 0x000000080651c340 in ?? () #1 0x000000080094ebd5 in puts () from /lib/libc.so.7 #2 0x000000080094f1ee in gethostbyname
2006 Jun 06
11
Instant Rails speed on my puter..
Hi. I''ve installed Instant Rails, and when testing my rails apps, I''m noticing the load time is quite noticable. I''m concerned when I convert to real produciton, going live, if there''s going to be the same delay, plus additional bandwith traveling time. I am running on a pentium 4.. Insights on speed.. Thanks Dominic Son -- Posted via
2006 Mar 24
19
Storing images in Ruby
Hi, I''d like to allow users to upload images and store those images in a Postgres database. I''ve looked through the example in "aguile development with rails" which suggests using the MySQL blob field. When I wrote a similar app in Java, we Base64 encoded the file and then stored it as a text field. Is this easy to do in RoR too? Any advice you can give me would
2008 Jul 25
18
zfs, raidz, spare and jbod
Hi. I installed solaris express developer edition (b79) on a supermicro quad-core harpertown E5405 with 8 GB ram and two internal sata-drives. I installed solaris onto one of the internal drives. I added an areca arc-1680 sas-controller and configured it in jbod-mode. I attached an external sas-cabinet with 16 sas-drives 1 TB (931 binary GB). I created a raidz2-pool with ten disks and one spare.
2012 May 30
29
Why Are You Using FreeBSD?
Hi Everyone, This is off-topic, so please feel free to disregard it, but I'm sending it to this list in the hope that it will reach a largish number of users. I am currently looking at updating some of our advocacy material (which advertises exciting new features like SMP support), and before I do I'd like to get a better feel for why the rest of you are using FreeBSD. If you had to
2007 May 12
3
zfs and jbod-storage
Hi. I''m managing a HDS storage system which is slightly larger than 100 TB and we have used approx. 3/4. We use vxfs. The storage system is attached to a solaris 9 on sparc via a fiberswitch. The storage is shared via nfs to our webservers. If I was to replace vxfs with zfs I could utilize raidz(2) instead of the built-in hardware raid-controller. Are there any jbod-only storage
2008 Nov 13
1
qlogic qle2462 hba and freebsd stable on a dl360 g5
Hi. I'm looking at a qlogic qle2462 hba for my dl360 g5. The thread http://www.mail-archive.com/freebsd-stable@freebsd.org/msg99497.html mentions a deadlock when system is loaded. Has this issue been resolved? Are there other PCI Express hba's which are known to work with freebsd stable and dl360 g5? -- regards Claus When lenity and cruelty play for a kingdom, the gentler gamester is
2006 Jul 30
0
error resizing image using minimagick
Hi. I''m uploading images using a standard form. A thumbnail is made using minimagick, when I upload files larger than 2 MB I get this error: ImageMagick command (mogrify -resize 500x500 /tmp/minimagic15697.0) failed: Error Given 256 Images smaller than 2 MB works fine. Is there some configuration I need to do? regards Claus
2006 Apr 04
1
using form_remote_tag and radio_button
I want the user to select a date using radio buttons. The following code shows the last 7 days. <%= form_remote_tag(:update => ''register_order'', :url => { :action => :register_orders } ) %> <% 1.upto(7) do |i| %> <%= radio_button "date", "register_date", i.days.ago.strftime("%Y-%m-%d") %>
2006 Mar 02
1
calling RoR from command line
Hi. I''m calling a script from the command line using script/runner. The script registers some files which are manipulated using ImageMagick''s tools. The script uses today''s date to scan a directory. Sometimes I need to scan a directory which dates two-three days back. I tried to use the following code which does *not* work: time = Time.now @date =
2006 Mar 16
0
using ajax-enabled search field in rails
Hi. I followed the ajax-the-rails-way in the (quite usefull) Agile web dev. with rails. I have a search-field where I can enter a postalcode (zipcode). <%= observe_field(:search, :frequency => 0.9, :update => :results, :url => { :action => :search }) %> Is it possible to have both the :frequency and another
2006 Mar 20
2
my howto install rails on os x
Hi. I reinstalled os x tiger (10.4) on my dual g4 and wrote most of the steps down required to install rails and postgresql and lighttpd. The installation is partly based on hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger. hth Claus
2006 Mar 29
0
css, div-tags and ajax
Hi. I copied parts of the ajax-examples in Agile Rails prog. and modified it so it searched for zip-codes. The result is displayed in search.rhtml. The first version looked like this, I liked the look of the "add to cart" in the depot-example. :class => ''button1'' is originally addtocart which I renamed in the .css-file. <% for city in @cities %> <%=
2006 Jun 07
2
display two columns using fixed width divs
Hi. I want to display some related information in two columns. Originally I wanted to use frames and googling led me to http://lists.rubyonrails.org/pipermail/rails/2006-May/037972.html which suggest divs instead. I modified my code to this: <body> <div style=''width: 300px; overflow: scroll''> <%= render :partial => "col1" %> </div>