Displaying 5 results from an estimated 5 matches for "lagace".
2007 May 15
5
About a simple insert
Ok, my problem is that I have a form with a client''s information. Now in
the form, I ask the client for his info, which inserts into the table
"clients", and then I have another text input where he has to provide a
specific detail that i want to be inserted into the table "details". How
can I insert this data into 2 different tables?
--
Posted via
2003 Oct 29
0
Different SAMBA reaction about file permissions
...No
local master = No
load printers = No
socket options = TCP_NODELAY
#
# Shares parameters
#
#
[home]
comment = MyHome
path = /home/%N/%u
writable = Yes
browseable = No
#
[data]
comment = Data
path = /data/%N
writable = Yes
browseable = No
inherit permissions = Yes
Patrice Lagac?
Mail: Patrice.Lagace@canadair.ca
Tel: (514) 855-5001 #56101
Administrateur de Syst?me
Gestion Globale de l'infrastructure
Transformation d'entreprise et syst?mes
Bombardier A?ronautique
2003 Dec 01
0
No subject
...d cache time = 10
> template shell = /bin/bash
> template homedir = /home/%D/%U
> winbind uid = 10000-20000
> winbind gid = 10000-20000
> security = domain # should this be server? i am not PDC.
Should be domain.
Tim.
Return-Path: <remi.lagace@videotron.ca>
Delivered-To: samba@lists.samba.org
Received: from VL-MS-MR003.sc1.videotron.ca (relais.videotron.ca
[24.201.245.36]) by lists.samba.org (Postfix) with ESMTP id C69CF4A53
for <samba@lists.samba.org>; Mon, 14 May 2001 16:33:07 -0700 (PDT)
Received: from station1 ([24.201.2...
2007 Jul 25
0
:action Problem
Hello,
I am trying to create a new message in my application and when I click
on the submit button to create the new message, I get redirected to the
form to create a new message. Here is my code:
class MessageController < ApplicationController
before_filter :logged_in?
def new
@message = Message.new
end
def create
@message = Message.new(params[:message])
if
2010 Apr 14
0
query string encryption
Hello,
I''m using crypt/rijndael to encrypt data being sent through an HTTP
POST.
Before I send my encrypted string this is what I do:
rijndael = Crypt::Rijndael.new(key)
crypt = rijndael.encrypt_string("test")
escaped_crypt = CGI::escape(crypt)
Then I send the encrypted data to my web service. On my web service, I
do this: