Displaying 20 results from an estimated 15096 matches for "company".
2008 May 28
15
Help with output
...have. Here is the example
THIS GIVES ME THE CORRECT VALUES
<!-- ######## Flooring ######### -->
<% if(params[:flooring]) %>
<tr><td colspan="4"><h2>Flooring</h2></td></tr>
<% for company in @companies %>
<% if(company.flooring == 1)
%>
<tr>
<td><%= link_to company.name, company %></
td>
<!--" + image_tag(''view2.gif'', :bord...
2007 Nov 21
7
describe AddressesController, "handling GET /addresses" do
Hello,
I''m working with scaffold generated controller test code for handling GET
requests. Address is the model being tested. Address belongs_to Company,
Company has_many addresses.
In my addresses_controller I have:
before_filter :get_company
def index
@addresses = @company.addresses.find(:all)
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @addresses }
end
end
private
def get_c...
2006 Jan 01
9
Child record becomes orphan
Hi all,
I''ve got these company (has) contacts relational tables. I want to make sure a
company can''t be deleted when it still has contacts. (because I can now,
which results in nil like errors when listing the contacts ... obviously)
Are there any helpers to do so, is Rails aware of this? Or do I need to put in
a co...
2011 May 04
2
split character vector by multiple keywords simultaneously
Hi. I have a character vector that looks like this:
> temp <- c("Company name: The first company General Manager: John Doe I
> Managers: John Doe II, John Doe III","Company name: The second company
> General Manager: Jane Doe I","Company name: The third company Managers:
> Jane Doe II, Jane Doe III")
> temp
[1] "Company name: Th...
2012 Oct 30
4
multi tenant
Hi all,
I need to configure DIDs for different companies and they should reach on
different extension with different context. Cant we have same extension in
different context?
This is what we we want
Company A:
Context Company_A
IVR Company A
Extensions: 101,102,103,104 etc.
Company B:
Context Company_B
IVR Company B
Extensions: 101,102,103,104 etc.
Company C:
Context Company_C
IVR Company
Extensions: 101,102,103,104 etc.
Company D:
Context Company_D
IVR Company D
Extensions: 101,102,103,104 etc.
-...
2005 Nov 16
1
HABTM: deleting records based on attributes
...ely...
however I might be abusing it! Before I try a different strategy I
thought I''d ask here and see if I''m missing something simple.
So say Projects and Companies are related. Projects can have multiple
Companies, and Companies can be on multiple Projects. But, the same
Company can also be assigned multiple times to the same Project under
different roles.
This all works fine with something like this:
@project.companies.push_with_attributes(company, :role_id =>
params[:role_id])
So I make 2 entries for a Company. One with the role of ''shipping'',...
2016 Jul 21
3
Replication sieve scripts.
...20_doveadm_fts_plugin.la
-rwxr-xr-x 1 root root 94615 Jul 20 12:53 lib20_doveadm_fts_plugin.so
Also I have set the mail_log to debug as you have suggested and I see
the following for users in the logs (with my "old" version):
Jul 21 11:52:27 server1 dovecot: dsync-server(user1 at company.com):
Debug: doveadm-sieve: Iterating Sieve mailbox attributes
Jul 21 11:52:27 server1 dovecot: dsync-server(user1 at company.com):
Debug: sieve: Pigeonhole version 0.4.2 initializing
Jul 21 11:52:27 server1 dovecot: dsync-server(user1 at company.com):
Debug: sieve: include: sieve_global_di...
2019 Apr 29
2
Group policies are not applied
I have hollowed these instructions.
https://github.com/thctlo/samba4/blob/master/full-howto-Ubuntu18.04-samba-AD_DC.txt
My normal domain is company.com. For the Samba domain it is
msi.company.com.
DNS is working. I ran these commands.
host -t SRV _ldap._tcp.msi.company.com.
_ldap._tcp.msi.company.com has SRV record 0 100 389 dc0.msi.company.com.
host -t SRV _kerberos._udp.msi.company.com.
_kerberos._udp.msi.company.com has SRV record 0 100...
2004 May 10
1
DNS load-balancing & SRV records
Let's say I have a third-party device acting as a sip<-->pstn gateway, a
cluster of three asterisk servers, and a teensy bit of dns knowledge.
Let's now say those asterisk servers are a1.company.com at 192.168.0.1,
a2.company.com at 192.168.0.2, and a3.company.com at 192.168.0.3.
1. If I setup round-robin dns like so:
asterisk.company.com. IN A 192.168.0.1
asterisk.company.com. IN A 192.168.0.2
asterisk.company.com. IN A 192.168.0.3
2. and normal A records for the servers like this:...
2006 Mar 05
8
Model Inheritance, Mixins and Database design
...t to use inheritance and wonder if
Rail''s Single Table Inheritance model too restricting.
I have a model Companies who provide 1+ Services (HABTM relationship).
I assume the best way to represent this is with a series of child models
representing each type of service : ServiceType < Company.
I want to return lists of companys for each service and then link to
show more details about them.
With the show method inherited from the Companies controller though
changing the :id on the end of the url displays the next record in the
companies table whereas I want to display the next comp...
2015 May 12
1
FW: ERR_DS_DRA_SCHEMA_MISMATCH after join samba 4.2.1 to existing domain
...level windows 2003 native.
Also forest prep and domain prep did for sccm 2007 ocs 2007 and Exchange 2003.
After join Samba to domain like ad dc I had some problem with replication:
#################################################
[root at dc03 ~]# samba-tool drs replicate dc02 dc03 dc=filial1,dc=company,dc=local
ERROR(<class 'samba.drs_utils.drsException'>): DsReplicaSync failed - drsException: DsReplicaSync failed (8418, 'WERR_DS_DRA_SCHEMA_MISMATCH')
######################################################
[root at dc03 ~]# samba-tool ldapcmp ldap://localhost ldap://dc02 --f...
2005 Sep 02
7
Form to update two tables
...bably a very simple problem but I''m stuck.
I''m following the Login generator tutorial from rubyonrails. It''s all
worked fine so far. But I want to add a bit more functionality so that
when a user signs up in addition to chosing a login name and password
they type in a company name which is added to a seperate table called
COMPANIES. The id for this record should then be added to the user
record (see # in ACCOUNT_CONTROLLER.RB).
Those in the know will be unsurprised to find out that this isn''t
working! I''ve found lots of examples on the web for multi...
2015 Jun 19
2
Database errors after join to DC as part of AD Forest
Stand contains two DC with Windows 2003 Std SP2 En:
- root domain company.local
- child domain filial1.company.local
I have Linux (ALT Linux) with Samba AD DC 4.2.2. After join to
filial1.company.local by command
samba-tool domain join filial1.company.local DC \
-Uadministrator%P at ssw0rd --realm=filial1.company.local \
--parent-domain=filial1.company.local -d 10...
2014 Jan 28
3
Joining Samba4 to Domain as DC with Small Business Server 2008 - error with Exchange ldap entries
...Final. I initially tried with the Centos rpm's but it seems the
samba-tools didn't exist so I am now using the rpms from SerNet Enterprise
SAMBA.
The current DC is a Windows Small Business Server 2008 that provides file,
print, DNS, DHCP, AD and MS exchange/Outlook Web access.
The domain Company.local is a substitute for the real domain name [Company
name].local
I have installed the server using the instructions here:
https://wiki.samba.org/index.php/Samba_AD_DC_HOWTO
The rpm versions are:
sernet-samba-libwbclient-devel-4.1.4-7.el6.x86_64
sernet-samba-ad-4.1.4-7.el6.x86_64
sernet-samba...
2004 Oct 27
1
Samba kerberos authentication issues with samba 3.0.7
...will also provide the ticket cache on the machine running smbclient and the keytab contents on the machine with the share:
[lnx251 samba]# klist -k -e
Keytab name: FILE:/etc/krb5.keytab
KVNO Principal
---- --------------------------------------------------------------------------
3 host/lnx251.company.com@NA.COMPANY.COM (AES-256 CTS mode with 96-bit SHA-1 HMAC)
3 host/lnx251.company.com@NA.COMPANY.COM (AES-128 CTS mode with 96-bit SHA-1 HMAC)
3 host/lnx251.company.com@NA.COMPANY.COM (Triple DES cbc mode with HMAC/sha1)
3 host/lnx251.company.com@NA.COMPANY.COM (ArcFour with HMAC/md5)...
2008 May 13
1
deliver exits with status 89 on some but not all mails of a batch
...path: /var/spool/postfix/private/auth
mode: 432
user: postfix
group: postfix
master:
path: /var/run/dovecot/auth-master
mode: 384
user: dovecot
group: dovecot
dovecot-ldap.conf looks like this:
uris = ldap://dbserver
dn = cn=dovecot,ou=services,dc=company,dc=net
dnpass = secret
ldap_version = 3
base = ou=people,dc=company,dc=net
scope = onelevel
user_attrs = homeDirectory=home,uidNumber=uid,gidNumber=gid
user_filter = (&(objectClass=posixAccount)(uid=%n))
pass_attrs = uid=user,userPassword=password
pass_filter = (&(objectClass=posixAccount)(...
2012 Oct 12
0
Samba-generated keytab fails with kinit
...joined a HP-UX server to a Windows Server 2003 domain. Join and keytab creation were successful.
The keytab entries look like this:
$ klist -ek
Keytab name: FILE:/etc/krb5.keytab
KVNO Principal
---- --------------------------------------------------------------------------
2 host/hostname.sub.company.net at SUB.COMPANY.NET (DES cbc mode with CRC-32)
2 host/hostname.sub.company.net at SUB.COMPANY.NET (DES cbc mode with RSA-MD5)
2 host/hostname.sub.company.net at SUB.COMPANY.NET (ArcFour with HMAC/md5)
2 host/hostname at SUB.COMPANY.NET (DES cbc mode with CRC-32)
2 host/hostname at SU...
2008 Apr 11
1
Multi-user multi-company design
I am working on a site which tracks "ferms" (read: widgets)... each
ferm belongs to one company, one company can have many ferms.
One company can also have many users with different access priveliges,
and company administrators would invite other users to access the
company''s site.
Also, one user can belong to different companies and perhaps have
different access at each company....
2012 Dec 19
1
Errors connecting to Windows Domain with Samba 4.
...;>Sharename Type Comment
>>--------- ---- -------
>>print$ Disk Printer Drivers
>>IPC$ IPC IPC Service (com30 server (Samba, Ubuntu))
>>
>>?
The full output from the Join is below.
root at com30://usr/local/samba/sbin# //usr/local/samba/bin/samba-tool domain join company.local DC -Uadmin --realm=company.local
Finding a writeable DC for domain 'company.local'
Found DC com-server-2.company.local
Password for [company\admin]:
workgroup is company
realm is company.local
checking sAMAccountName
Adding CN=com30,OU=Domain Controllers,DC=company,DC=local
Adding CN=...
2007 Jun 26
1
[Fwd: Problems with samba and windows 2000 professional]
Good day, I've posted this request again, as it got hijacked and probably
ignored.
I'm having issues with a small company with the following setup...
1. Windows 2003 active directory server (server.company.local)
2. samba 3.0.25 linux server (serve2.company.local)
3. windows xp and windows 2000 professional clients. All clients are part
of the ads structure.
What's happening is the client's running windows xp...