similar to: Active FTP.

Displaying 20 results from an estimated 1200 matches similar to: "Active FTP."

2001 Oct 31
3
Alternative Auth Methods.
hi, Are there any alternative authentication methods for Samba? Other thank the smbpasswd file? I'd like to do PostgreSQL or mySQL. Why? Because I can do Exim/IMAP/POP3 Apache/Zope with SQL, if I could do Samba it would wrap it up into one nice DB for authentication. It does not have to be much, just the ability to get the data from a SQL query rather than a flat file query. Anyone
2004 Oct 14
1
squid/dmz/5
Hi, I''m attempting to set up Squid in my DMZ (3 interface shorewall). Step 5 has got me. How do you execute the iptables command after networking is up? TIA John
2002 Jul 17
1
Reading Data.
hi, I'm a bit new to R and need a hand importing some data. I have a data set with jut x,y pairs in it: x1,y1 x2,y2 x3,y3 I can read it in fine, but I would like to do some cluster analysis on it. So I'll need to get it the proper data structure. Any ideas? Thanks, j. -- ...................... ..... Jason C. Leach .. Current PGP/GPG Key ID: 43AD2024
2000 May 15
2
Samba w/ WAN.
hi, I'm going to be setting up Samba with a WAN and VPN. On one end of the network (my end) it will be Samba on a Linux box and some NT and 98 PCs. On the other end of the WAN it will be Windows only. I'd like to know if we need to be able to route anything other than TCP packages. Like NetBIOS or something else Windows may use. Thanks, J.
2006 May 25
4
question about creating rails app and FTP
Hello, I have a simple question about creating rails applications. I am signing up with dreamhost so that i can put my rails apps on the web (after giving up on trying to make my current VPS Plesk hosting work with rails). My main question is: when creating a new rails app, can i create it using the rails command on my computer and then upload the entire directory structure to my domain
2002 Feb 18
7
Cross Subnet Browsing.
hi, I need a hand setting up cross subnet browsing. Does anyone have some good news group postings, or a HOWTO? I have 2 samba servers, and 2 subnets. Each servers sits on it's own domain/workgroup. I think this should be much simpler than it is, and perhaps I am just missing one or two settings. Of the 2 servers: A, B I would like 'A' to do any serving or hold any
2009 Jan 24
3
Problem with colormodel in pdf driver
I'm trying to create figures in PDF that use the 'gray' colormodel instead of the default 'RGB' model, by requirements of a publisher. My problem has to do with the fact that I'm not being able to get gray colors with this option on the pdf() driver. Here is a small example for problem replication: > R.version _ platform
2007 Jun 11
5
Access Windows AD share From Linux
I am trying to mount and access a Windows share, from one of our Active Directory servers to one of our RedHat Enterprise 4 Linux hosts. I have used Samba in the past to do the opposite, which worked very well. I was successful in mounting the share, using the following: mount -t smbfs -o username=<myid>,password=<mypassword> //<AD Server>/<Share> /mnt/app1
2008 Jun 05
1
choosing an appropriate linear model
I am trying to model the observed leaching of wood preservative chemicals from treated wood during an outdoor experiment where leaching is caused by rainfall events. For each rainfall event, the amount of rainfall was recorded as well as the amount of preservative chemical leached. A number of climatic variables were measured, but the most important is the amount of rainfall. I have tried a
2007 Apr 28
6
Determine how many documents a term occurs in
Is there a fast way to determine how many documents a term occurs in, besides iterating through every document with TermDocEnum? -- Best regards, Stian Gryt?yr
2015 May 26
6
FREAK/Logjam, and SSL protocols to use
List, good afternoon, I was reading up on a TLS Diffie Hellman protocol weakness described here https://weakdh.org/sysadmin.html which is similar to the earlier FREAK attack, and can result in downgrade of cipher suites. Part of the solution workaround that the researchers describe for Dovecot here https://weakdh.org/sysadmin.html includes altering DH parameters length to 2048, and
2005 Jan 25
4
RAID card recommendation
Hey all, After seeing the horrible lack of support for Promise cards in Redhat Enterprise/CentOS, I am looking for a recommendation for a good IDE RAID controller that is supported out of the box (i.e. I would prefer not to have to install via a driver disk). I would prefer ATA 133 over Serial ATA for now. Thanks! Sean
2006 Aug 01
5
Rails on .NET
http://www.eweek.com/article2/0,1759,1996960,00.asp?kc=EWEAUEMNL080106EOAD Just saw this and thought it was interesting...
2003 Jan 16
1
FTP through the firewall to non standard FTP port fails
Hi, all. Shorewall Version: 1.3.12 I''m unable to list files (using PASV *or* PORT mode) on any FTP site that listens on a port other than 21 (from a client machine behind Shorewall -- from the Shorewall box I can list files no problem on the same sites) I have "Netfilter FTP" support compiled IN the kernel. Any ideas? My rule set is pretty generic. LOC -> NET Policy to
2010 Jun 29
3
FTP: which FTP is best for Ubuntu to upload rails project
I am trying to upload the constants to my shared server but built in FTP in Ubuntu is not working -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2007 Mar 01
2
FTP download from ftp.sec.gov
All, I have managed to download files from web sites and ftp sites using R, so just for fun I tried to do so from the SEC's ftp site using the following code: ftp <- "ftp://anonymous:test at ftp.sec.gov/edgar/full-index/company.idx" download.file(url=ftp, destfile="test.txt") And it does not work. R says it cannot open the URL. If I paste the ftp part into IE it
2006 Mar 28
8
1.1 broke my app
I upgraded to Rails 1.1 (ruby 1.8.2 and ruby 1.8.4 on RHEL 4 using webrick or fastcgi) and all of a sudden I get this hitting a controller: wrong number of arguments (1 for 0) RAILS_ROOT: script/../config/.. Application Trace | Framework Trace | Full Trace /usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.0/lib/action_controller/base.rb:379:in
2005 Apr 27
1
Recursive calculation of a series of values
Dear R-users, I'm felling kind of blocked on a quite simple problem and I wonder if someone could give me a help with it. My problem: x[0] = 100 x[1] = (1+v[1])*x[0] x[2] = (1+v[2])*x[1] ... i.e. x[i] = (1+v[i])*x[i-1] and x[0]=k Given a set of v values I wanted to obtain the corresponding x values in an efficient way (i.e. without a for loop). For instance, if x[0] = 100 and v =
2006 May 11
2
How do you make in_place_edit fields appear when empty?
Here''s a simple one... When using in_place_edit fields, they don''t appear unless they already have a value. How can I get similar functionality when they are empty? Thanks, Nathan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060511/a98640cf/attachment.html
2005 Apr 27
2
its package: inexplicable date-shifting ?!
Can someone please explain to me why the dates get shifted by one day when I create an its ( irregular time-series ) object from a matrix for which I've assigned row names. E.g. in the example run below, why does the its object have dates one-shifted from my original dates? > install.packages('its') > install.packages('Hmisc') > require(its) > m <-