Displaying 8 results from an estimated 8 matches for "dewie".
Did you mean:
devie
2004 Sep 06
0
Strange problems with my Samba Domain - Any ideas?
Greetings,
I have just migrated our school NT4 Domain over to Samba
3.0.5-0.backports.org.1 running on Debian Stable with some backports
packages.
I am using ldapsam backend with OpenLDAP 2.0.23-6.3 - ldap-server
For the most part ,the Domain is functioning very well, login, password
changes, browsing the domain etc. all seem to work, but I have a starnge
problem with looking up users and
2003 Aug 22
6
MAC Address of incoming conection
I''m thinking the answer is no but I thought I ask anyway. Is there a way
to find out the MAC address of of an incoming connection using the logs
generated with shorewall? It would be nice that way if someone''s IP
changes you can at least still be blocking the MAC.
--
Joe
***
I can only please one person a day.
Today is not your day and tomorrow doesn''t look good
2005 Dec 27
10
ActiveRecord flexible columns
I would like to have a table with flexible columns.
For example i have the following table customers:
id
name
email
The user should be able to save other columns to the database as well :
me = Customer.find(10)
me.name = ''me company''
me.email = ''me-RPlE4GnVVoJHoQZOM9yvow@public.gmane.org''
me.msn = ''me1234'' # custom columns
me.birthdate =
2003 May 09
5
Hacked?
This morning, I noticed in my security email, that my entire /usr/bin
directory had setuid diff's set on them.
I think I've been hacked. So I installed chkrootkit from ports and ran
it. It showed not infected for everything,
except NETSTAT. NETSTAT showed infected...
I ran chkrootkit for another machine (at my office), and it showed not
infected for everything.
Both machines are
2003 Dec 01
0
No subject
copy d:\bugs.ps \\ouessant\lexmark
after having deleted all the samba log files and restarted the SMBd daemon from the SWAT Web interface.
This leads to the INTERNAL ERROR, see samba.oulx
Now, to locate the problem, I tried the same kind of command on the same file, bugs.ps, but using the SMBCLIENT application from the Linux server itself, without changing anything, nor restarting the SMBd
2005 Dec 22
0
Elements application in ajax-demo
Anybody has more information on the Elements application in the demo
video of ajax :
http://www.rubyonrails.com/media/video/rails-ajax.mov
Would be very nice to organise all your little notes to this application
Is it opensource, are there any other applications opensource like this
one ?
Daniel
--
Posted via http://www.ruby-forum.com/.
2005 Dec 21
3
Checkbox readonly
I declare some checkboxes :
<%= check_box_tag ''offers[]'', offer.id ,
@params[:offers].include?(offer.id.to_s) ,:readonly=>true %>
the result is :
<input checked="checked" id="offers[]" name="offers[]"
readonly="readonly" type="checkbox" value="1" />
But readonly doesn''t work ???
--
Posted
2006 Jan 04
5
Webservice External XMLRPC
Hello i have some trouble getting my webservice to run .
I have the following webservice :
class DirectSpoolAPI < ActionWebService::API::Base
api_method :add, :expects => [{:html=>:string},{:from=>:string}],
:returns => [Customer]
end
class DirectSpoolService < ActionWebService::Base
web_service_api DirectSpoolAPI
def add(html,from)
Customer.find(:first)
end