similar to: mountpoint

Displaying 20 results from an estimated 500 matches similar to: "mountpoint"

2008 Jun 09
10
Testing file attachment with Paperclip
Does someone have an example on faking a file upload for just ensuring it gets called, without actually uploading the file to s3. I thought that stubbing Model.has_attached_file would be enough, but it doesn''t seem so ... This is what I did: Video.stub!( :has_attached_file ).with( :name ).and_return( true ) has_attached_file is from paperclip, it gets mixed to the model. 1)
2011 Jul 26
2
Best practices for confidential information -- fileserver path vs modules / template
We keep our puppet configuration in a revision control system and are trying to facilitate developers using the same modules as production/ staging servers. We define a variable ($servergroup) as test/staging/production and use fileserver defaults from hostname to servergroup to generic. The hostname and $servergroup versions need to be confidential. We have modules specific to an application,
2006 Aug 17
4
Unit Tests and lib/
Hi *, I have a few modules in lib/ and I use them mostly in my models. I''d like to add a few unit tests and run them with rake with all other tests of my app: where do I have to write them ? TIA, ngw -- Nicholas Wieland nicholas_wieland@yahoo.it -------------- next part -------------- An HTML attachment was scrubbed... URL:
2020 Mar 20
1
Listenurl is not in HTTPS
No, this is a relay of a Shoutcast server. Everything is configured in https on IceCast ( https://relay2.dgnet.be/ ) , except this value listenurl ( in Admin / Mountpoint) which in cannot change apparently. So the .m3u file is created with an http:// link ( instead of https:// ) But the stream is available and working in https://relay2.dgnet.be:443/different.ogg Danny From: Icecast
2007 Jan 06
3
speeding up pagination
I need help to optimize a query (sort of ...) if params[:debit] == "on" @schools = School.find(:all, :conditions => ["name like ?", "%#{params[:search]}%"], :order => ''name'') @schools.delete_if { |s| s.debit <= 0 } @school_pages = Paginator.new self, @schools.length, 20 The problem here is that
2014 Jun 07
2
icecast 2.4 check if source exists?
On 06/06/2014 01:08 PM, uno wrote: > ... to answer myself: > > i had a fallback-mount specified, after removing it > things work as expected. sorry for the noise. In case of fallbacks you have to check properly through querying a custom XSL, JSON or the admin backend. > btw: what's the prefered way to get server and/or listener info?
2001 Mar 17
2
smbclient/mount question
This is driving me up the wall. I've had a basic samba server up for a couple of years and it was easy to do. Now with a second server I try to mount the same shares from the new linux box but I can get nothing to work. I would use NFS between the linux boxes but the support isn't compiled into my kernel, and I don't want to tackle that beast tonight... To test I tried the smbclient
2004 Aug 06
2
'ice_login' not in icecast.xml ?
On Thu, 10 Oct 2002, Dave St John wrote: > > username: source > source meaning > localhost > or http://myip:myport/mymount > Be specific please ;-) ource as in "source". Geoff. <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to
2004 Aug 06
9
Stuttering stream
> Done, and it's working... but not significantly better than before. > Whereas before I couldn't clear a single song without the stream devolving > into skipping, now I'm averaging between 15-20 minutes. Better, but still > not acceptable. THen I suggest you start to look elsewhere for your problem. libshout is quite well tested and every time someone has thought it was
2006 Jul 21
3
ActionMailer doesn''t send any mail
I''ve configured actionmailer following the documentation, adding to environment.rb everything for using my mail account on yahoo using deliver_* methods to send a mail. I can see the mail in development.log and everything seems fine, but no mails so far. Is there a place where can I see what the server answered, or something to look at to solve the problem ? I have no clue,
2004 Aug 06
2
'ice_login' not in icecast.xml ?
Hi: The authentication for the xml stats is as follows: username: source password: <the password you've put in the config file> The icelogin item is to allow older style source logins (i.e. not the http authentication that was implemented a number of weeks ago). this login is deprecated, so it's been deliberately left out of the XML configuration example. Geoff. <p> --
2014 Jun 06
3
icecast 2.4 check if source exists?
hello, i've upgraded to 2.4. in order to use url-auth etc. works fine, but now i have a problem: i've to check if a source exists. i did so by fetching headers for a mountpoint, example wget -S http://server:8000/test if a mountpoint existed in icecast 2.3.2 (my previous version), it returned something like "200 OK", when a source was connected. now in 2.4. it always
2006 Jul 31
5
ActionWebService API
Hi *, I need to pass a hash to a webservice, so I defined my API with: api_method :search, :expects => [{ :tags => :string, :assignment => :string, :resource => :string, :lesson_plan => :string, :subject => :string, :all_types => :string }], :returns => [[Resource]] when I try to test the webservice with scaffold the
2004 Aug 06
2
Admin question[s]
David Dennis wrote: > welcome to the list. > > Check the archives. > > There you will find about one newbie a month minimum discovering that the > widely distributed and still available shout package version 0.8.0 > is actually deprecated and highly broken in exactly the manner you > describe. > > Thanks but one point I can make is I get the same results when not
2009 Aug 11
13
I've decided to use Rails... (I hope I made the right decision).
I''ve read a ton of comparisons that compare one framework to another, and one language to another. There''s so much conflicting advice out there that it''s hard to know what is best. Did I make the right choice choosing Rails for my first web project? I guess we''ll see. The only reason why I''m hesitant is that a lot of the big name sites use php
2007 Mar 03
3
configure actionmailer to recieve email on localhost?
hi, is there a way i can configure my localhost to receive email using smtp? i can out emails fine but now would like to test/get-to-know how to handle incoming emails. if on my localhost:3000, do i do anything like below? ActionMailer::Base.server_settings = { :address=>''smtp.yourserver.com'', # default: localhost :port=>''25'',
2004 Aug 06
2
ideas for on-demand streaming
On Wed, 20 Feb 2002, Gary Major wrote: > To define this list you put the full path to your mp3 directory in your > icecast.conf file. It has been awhile since I set this up, and I forget the > exact option, although static template comes to mind. This is great... but it's not showing a full listing of what's in my directory. My MP3 collection is housed in /music/. There are
2006 Apr 13
1
Model is not a class
I''m trying to specify a model in a controller, but rails gives me "Account is not a class", where Account is my model name ... This is my model: class Account < ActiveRecord::Base validates_presence_of :email, :email_confirmation, :username, :password, :password_confirmation validates_format_of :email, :with =>
2007 Aug 22
1
Interface for administration
Hi *, I need to choose a platform for building the administrative part of http://www.zooppa.com Actually I like both streamlined and activescaffold, they seem both good. I''d like to ask to people using it which one is more likely to manage correctly things like validations, polymorphic associations, STI and in general complex data. If it''s also easy to modify it would
2004 Aug 06
2
yp.icecast.org || when does your stream come into the db?
they are the same for practical purposes, but I believe i started pushing m3u because it was better supported, or less application fought over it, or something. it's probably different today, but i still use m3u. M3U is simpler than pls. just a file/url per line, that's it. for a sstream a pls file would look like: http://your.server.com:8000/mymount and that's it. jack. On