Displaying 20 results from an estimated 166 matches for "userdata".
Did you mean:
user_data
2006 Apr 11
5
Reading MySQL rows
...company from users where name = "martin";
+----+-------+------------+
| id | count | company |
+----+-------+------------+
| 1 | 0 | |
+----+-------+------------+
def count(number)
puts "count() reached!\n user is #{@username} " # this works
userdata = User.find_by_sql("select id, count, company from users
where name = ''@username'' ")
account = userdata[0]
puts "account-id: #{@account.id}" # empty
puts "the name of the company is: #{@account.company}, count #
{@account.count}\n" # e...
2019 Feb 12
1
Sama + Windows Shadow Copies
Hello,
i installed zfs-auto-snapshot with Samba/Windows Shadow Copy. If the
share contains "path = /srv/userdata/" it runs for me. But if I use
"path = /srv/userdata/%U" I get no "Previous Versions" on my Win10 Client.
I think the problem is the variable "shadow: snapdir = .zfs/snapshot". I
tried with "shadow: snapdir = ../.zfs/snapshot" and with "shadow:...
2006 Jul 29
3
Validating two models
Hi,
I have a model Account wich "has_one" model called UserData. Both models
use validation.
# Model contains user name, email etc.
class Account < ActiveRecord::Base
has_one :user_data, :foreign_key => "user_id"
validates_presence_of :email
end
# Model contains firstname, lastname etc.
class UserData < ActiveRecord::Base
set_table_...
2007 Jan 25
0
[854] trunk/wxruby2/swig/classes: Add support for GridBagSizer
...if something was already there.
+ wxSizerItem* Add( wxWindow *window,
+ const wxGBPosition& pos,
+ const wxGBSpan& span = wxDefaultSpan,
+ int flag = 0,
+ int border = 0,
+ wxObject* userData = NULL );
+ wxSizerItem* Add( wxSizer *sizer,
+ const wxGBPosition& pos,
+ const wxGBSpan& span = wxDefaultSpan,
+ int flag = 0,
+ int border = 0,
+ wxObject* userData = NULL );
+...
2010 Mar 15
1
Windows Vista and option in smb.conf
Hello,
I have a difficulty with the option 'hide unreadable' in the smb.conf
regarding to it's effect on my Vista machines.
In the smb.conf I have declared the following share:
[userdata]
path = /data/userdata
admin users = domain+adminuser
browseable = yes
writeable = yes
hide unreadable = yes
csc policy = disable
The server is a domain member, security ADS .
The unix permissions on the folder /data/userdata are 750 .
T...
2003 Mar 22
5
CYGWIN Rsync exclude/include problem
...Inetpub/wwwroot & subfolders
- /Inetpub/* #Exclude /files and other folders?? in Inetpub
+ /Plus11/
+ /Plus11/MYOBData/
+ /Plus11/Forms/
+ /Plus11/Old*/ #Include folders that start with Old
- /Plus11/*
+ /rsync/
- *.tmp #Exclude all *.tmp files
- Temp/ #Exclude all Temp folders
- UserData/ #Exclude all UserData folders
- *.dmp
- Temporary Internet Files/
- cache/
- RECYCLER/
- Help/
- /* #exclude not specifically included files * folders in the root.
2020 Apr 01
0
[ANNOUNCE] nftables 0.9.4 release
...mpat.h to tarballs
build: nftables 0.9.3 depends on libnftnl 1.1.5
segtree: don't remove nul-root element from interval set
proto: add proto_desc_id enumeration
expr: add expr_ops_by_type()
parser: add typeof keyword for declarations
meta: add parse and build userdata interface
exthdr: add exthdr_desc_id enum and use it
exthdr: add parse and build userdata interface
socket: add parse and build userdata interface
osf: add parse and build userdata interface
ct: add parse and build userdata interface
numgen: add parse and build u...
2011 Mar 27
1
Roaming Profiles Configuration
Hello all! I am new to the mailing lists, as well as Samba. I was looking
for an Active Directory alternative for linux, and finally landed on Samba4.
My installation is alpha12, installed via apt on Ubuntu 10.10. I am trying
to create roaming profiles, however, if "path = /UserData" then the profiles
are viewable from every user account by simple accessing "
example.samdom.com/profiles" My next thought (given research I saw on
Samba3) was to set it to "path = /UserData/%U", however then clients cannot
connect to the profiles share at all. I am trying...
2012 Aug 17
1
antispam_plugin prevents IMAP login (error 3) [Dovecot 2.0.19]
...Module loaded:
/usr/lib/dovecot/modules/lib20_fts_plugin.so
imap: Debug: Module loaded:
/usr/lib/dovecot/modules/lib21_fts_squat_plugin.so
imap: Debug: Module loaded:
/usr/lib/dovecot/modules/lib90_antispam_plugin.so
imap(dof): Debug: Effective uid=23244, gid=8,
home=/var/spool/dovecot/userdata/dof
imap(dof): Debug: Home dir not found: /var/spool/dovecot/userdata/dof
master: Error: service(imap): child 10420 returned error 3
Without the plugin I get:
imap-login: Login: user=<dof>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=10469, secured
imap: Debug: Loading mod...
2007 Jun 23
0
[1063] trunk/wxruby2/swig/classes/EvtHandler.i: Add a public ''connect'' method for handling arbitary user-defined events
...r {
+ VALUE connect(int firstId, int lastId, wxEventType eventType)
+ {
+ VALUE func = rb_funcall(rb_cProc, rb_intern("new"), 0);
+ rb_global_variable(&callbacks);
+ if(callbacks == Qnil)
+ callbacks = rb_ary_new();
+ rb_ary_push(callbacks, func);
+
+ wxObject* userData = new wxRbCallback(func);
+ wxObjectEventFunction function =
+ (wxObjectEventFunction )&wxRbCallback::EventThunker;
+ self->Connect(firstId, lastId, eventType, function, userData);
+        return Qtrue;
+ }
+}
+...
2016 Nov 20
2
[PATCH 0/2] improve Lua API for files and initramfs objects
...ize);
+
+ return 1;
+}
This indeed copies the data from the syslinux_file structure (which is
an opaque SYSLINUX_FILE object on the Lua side) into an (interned) Lua
string to make it available to the Lua string functions.
You probably ask why we copy the data when we create those SYSLINUX_FILE
userdata objects. We don't, the data is read directly into the
syslinux_file structure by the loadfile() Syslinux function. This was
already the case when I first saw the Lua binding in Syslinux. Thinking
about it now, the SYSLINUX_FILE userdata objects and their entire
interface could be replaced by...
2009 Oct 19
1
local copy microsoft/credentials directory profile redirection
...anic action = /usr/share/samba/panic-action %d
cups options = raw
case sensitive = No
hide files = /desktop.ini/
[netlogon]
path = /usershare/netlogon
write list = jorge
guest ok = Yes
[hives]
comment = Profile Hive Directory
path = /userdata/hives/%a
read only = No
create mask = 0600
directory mask = 0700
browseable = No
csc policy = disable
oplocks = No
level2 oplocks = No
vfs objects = full_audit, recycle
full_audit:priority = notice
full_audit:facility =...
2020 Oct 27
0
[ANNOUNCE] libnftnl 1.1.8 release
...projects/libnftnl/downloads.html
Happy firewalling.
-------------- next part --------------
Florian Westphal (1):
libnftnl: export nftnl_set_elem_fprintf
Jose M. Guisado Gomez (5):
examples: add support for NF_PROTO_INET family
udata: add NFTNL_UDATA_SET_COMMENT
table: add userdata support
object: add userdata and comment support
chain: add userdata and comment support
Pablo Neira Ayuso (6):
src: add support for chain ID attribute
examples: unbreak nft-set-elem-del
expr: socket: add wildcard support
expr: expose nftnl_expr_build_payload()...
2014 Oct 13
2
[PATCH][git-pull] lua: fix broken bindings, switch to using methods, document things
...he examples
libansi.h: depends on stdbool.h and stdio.h
lua: docs: loadfile() is not TFTP-specific
lua: docs: remove printf from loadfile example
lua: docs: condense the PCI example
lua: Remove even more cruft from syslinux.c
lua: represent syslinux files as full userdata
lua: garbage collect file objects
lua: make the file operations methods
lua: unused optional arguments can go
lua: make initramfs structures full userdata objects with methods
lua: do not leak initramfs data chunks on garbage collection
lua: don't do a local...
2011 May 13
0
Bug#626644: xen-utils-4.1: xl fails because /var/lib/xen is missing
...0000000000100000->0000000000179850
TOTAL: 0000000000000000->000000001f800000
ENTRY ADDRESS: 0000000000100000
xc: info: PHYSICAL MEMORY ALLOCATION:
4KB PAGES: 0x0000000000000200
2MB PAGES: 0x00000000000000fb
1GB PAGES: 0x0000000000000000
libxl: error: libxl_dom.c:718:libxl_userdata_store cannot write /var/lib/xen/userdata-n.3.71d22787-7fff-4553-9cbb-7ff6fa9866b3.xl for /var/lib/xen/userdata-d.3.71d22787-7fff-4553-9cbb-7ff6fa9866b3.xl: No such file or directory
cannot save config file: No such file or directory
libxl: error: libxl_dom.c:645:libxl__userdata_destroyall glob fail...
2006 Jun 16
2
smpasswd
...2
log file = /var/log/samba/samba.log.%m
max log size = 50
wins support = Yes
invalid users = root bin web
create mask = 0777
directory mask = 0777
hosts allow = 192.168.1. localhost
[homes]
comment = Home Directories
path = /userdata/home/%u
read only = No
guest ok = Yes
browseable = No
2005 Jul 08
1
Printer dialogue box slow to pop up
...nt
write list = root, @users, @print
##force group = users
guest ok = Yes
[apps]
comment = Applications
path = /Apps/
read only = No
[public]
comment = Public Drive
path = /Public/
force group = users
read only = No
[userdata]
comment = Userdata
path = /Userdata/
read only = No
[netlogon]
comment = Logon Scripts
path = /netlogon
browseable = No
------------------------------------------------------
Here is the /etc/printcap file:
AccntingCanon|CANON im.Runner 330s gim...
1998 Oct 15
3
Performance tips for heavily loaded servers
Does nayone have a collection of performance tips for heavily loaded
samba servers?
I have a server that routinely has 45-90 connections and just runs really
poorly. We've thrown more memory at it w/ some benefit, but not
significant.
This is on a linux 2.0.35 based machine.
Does anyone have any suggestions?
-- Nathan
------------------------------------------------------------
Nathan
2012 Dec 01
3
6Tb Database with ZFS
Hello,
Im about to migrate a 6Tb database from Veritas Volume Manager to ZFS, I
want to set arc_max parameter so ZFS cant use all my system''s memory, but i
dont know how much i should set, do you think 24Gb will be enough for a 6Tb
database? obviously the more the better but i cant set too much memory.
Have someone implemented succesfully something similar?
We ran some test and the
2015 Jan 20
2
Problem with Cisco Phones
...gt; </consultdialogid> <state>false</state> <joindialogid> <callid></callid> <localtag></localtag> <remotetag></remotetag> </joindialogid> <eventdata> <invocationtype>explicit</invocationtype> </eventdata> <userdata></userdata> <softkeyid>0</softkeyid> <applicationid>0</applicationid> </softkeyeventmsg>
</x-cisco-remotecc-request>
<------------->
--- (16 headers 3 lines) ---
Sending to xxx.xxx.xxx.xxx:50604 (no NAT)
Call OutOfDialog--001e-67a906f5-5333c2b8 at...