similar to: samba 4 installation failing several troubleshooting steps

Displaying 20 results from an estimated 2000 matches similar to: "samba 4 installation failing several troubleshooting steps"

2007 Apr 18
1
[Bridge] Problem COnnecting AP from Mobile Node
I am having problem in ping or connect AP from Mobile Node(essid & channel is the same,maybe routing did not set properly but i fail to configure with route add default gw 192.168.3.4,its alway said network is unreachable ),My Mobile Node is using acx100 as driver while AP(redhat 9.0) is using HOSTAP 0.1.3.Any one can help? I heard How-To said we not need to set address on eth0 & wlan0
2006 May 31
1
find by sql
Hi I have the following code, which makes use of an sql statment to get the results required. However this just doesnt seem right for rails, as ive managed to develop the whole project without using any other pure sql. Is there a cleaner way of doing this, but gaining the same results. thanks scott #sql to find all invoices pSql = "SELECT DISTINCT invoices.id,
2016 Nov 24
2
Dnsmasq and /etc/hosts
Hi, I just setup CentOS 7 on three boxes to fiddle with it. 1. amandine.sandbox.lan is a headless LAN server 2. bernadette.sandbox.lan is a client desktop 3. raymonde.sandbox.lan is another client desktop I've setup Dnsmasq on amandine.sandbox.lan. Here's the very basic configuration: # /etc/dnsmasq.conf domain-needed bogus-priv interface=enp3s1
2008 Jun 14
0
does BackgrounDRB not "know" the rails environment it is running within/in parallel with?]
Hi, it probably is a noob question but I''m confused by this error message: active_support/dependencies.rb:478:in `const_missing'': uninitialized constant Invoice::ApplicationController Situation: I have an InvoicesController with a create method that in turn calls upon a MiddleMan.worker(:billing_worker), which in turn finds an Invoice and calls upon @invoice.print_invoice
2006 Nov 07
2
undefined local variable or method `invoices' for Provider:Class
I''m pretty new to Rails, and I think my app has progressed quicker than my knowledge of Rails/Ruby has ... I have the following models: [ -- Begin -- ] class Provider < ActiveRecord::Base has_many :invoices has_one :user def self.get_invoices invoices.find(:all) end end class User < ActiveRecord::Base belongs_to :Provider belongs_to :Consumer def
2006 Feb 10
1
Eager loading issue
I have three tables, Invoices, Projects, and Managers. Each manager has many projects. Each project has many invoices. When displaying a list of the invoices, I am using: Invoice.find(:all, :include => [:project]) Since the list shows information from the project table. (For example, a table showing Invoice Date, Project Name). However, I''d also like to show the manager name.
2005 Dec 30
3
Select SUM(?) Query
When using PHP, I was able to enter a query against my list of invoices such as : Select SUM(amount) from invoices where project="123" This would give me the total amount of all invoices for project 123. In rails, how would I do this? I tried using "find_by_sql," but couldn''t figure out how to extract the results out of this. Thanks!
2016 Nov 24
0
Re: Dnsmasq and /etc/hosts
On Thu, 24 Nov 2016 09:25, Nicolas Kovacs <info at ...> wrote: > Hi, > > I just setup CentOS 7 on three boxes to fiddle with it. > > 1. amandine.sandbox.lan is a headless LAN server > > 2. bernadette.sandbox.lan is a client desktop > > 3. raymonde.sandbox.lan is another client desktop > > I've setup Dnsmasq on amandine.sandbox.lan. Here's the very
2006 Jun 08
0
RE: Rails Digest, Vol 21, Issue 160
> From: Thomas Townsend <tlt@vwg.com> > Subject: [Rails] adding a child record > Here''s a super-newbie question.... How do I go about adding > child records? > > I have a table called ''accounts'' to which I want to add > invoices (an account can have many invoices). I have the two > models (accounts and > invoices) all set up. >
2014 Apr 16
0
[XPOST] Invoicing - 1.0.0 released
Hello people, We have released invoicing gem which helps you in creating, managing and generating pdf for invoices. Bit of background: Invoicing gem was initially developed by Martin Kleppmann (https://github.com/ept/) for generating and displaying invoices. This release polishes the gem, makes it compatible with rails 3 and rails 4, adds pdf generation source:
2003 Feb 24
5
XP irratic delay in opening files....
Hi all I am fairly new to samba and XP. I have a client who we set up a samba server for, they are complaining about documents taking about 30 secs -2-3mins to open but only sometimes (it can be very frequent). I have seen this and captured a piece of the log file I wonder if any one can make any sense of it... I have been looking on the net and trying various things all day but to no avail...
2016 Nov 24
2
Dnsmasq and /etc/hosts
Le 24/11/2016 ? 10:22, Yamaban a ?crit : > Hmmm, looks like the "lookup question" from amandine(server) is not > resolved in the same way it is resoved from bernadette or raymonde > (clients). After some more fiddling, I guess I found a solution to my problem. If we formulate the problem differently, we can say that the clients use the information provided by Dnsmasq, but the
2003 Feb 24
4
NT_STATUS question
Hi all Got a couple of errors in the logs wondering what they mean??? Google does not come up with too much on these NT_STATUS_NO_SUCH_FILE, NT_STATUS_SHARING_VIOLATION, NT_STATUS_INVALID_LEVEL and NT_STATUS_OBJECT_NAME_NOT_FOUND. Four clips illustrating the above are below... I have am wondering how I sort this out. I am particularly worried about the NT_STATUS_NO_SUCH_FILE. All the
2006 Jan 03
4
Would someone like to tell me why this code will not solve my problem? (it''s short)
I am building an invoicing system but cannot use the auto_increment field to determine the invoice number (because they are running 3 different companies off the one system. I need to find the last invoice number from any given company and then add 1 to it to get the next invoice number. BUT, there is a unique case on the very first invoice produced because there is no earlier invoice
2006 Jan 06
3
Error Handling
Hi, I am doing a project on invoice. For that I have to use a page both for crating new invoices and for updation of existing invoices. The problem is that when an error occures, I can''t maintain the same page for error correction. How can I redirect it from the controller ? Or can I display ruby errors before submit of the page in ruby? Thanks.. Sainaba. -- Posted via
2006 Jul 20
0
Getting joined collections on a form
Greetings, I''m looking for suggestions on how to simplify getting customer addresses on a form: I''m jumping between controller and view several times; alternating between rhtml and rjs, in order to display customers and their addresses on an invoicing form. It''s very messy. I have a one to many relationship between Customer and Addresses, each customer has one or more
2006 Jul 21
0
Selecting customers and addresses in a form (was Getting joined collections on a form)
(Sorry if you have received this twice, I''m having trouble sending mail to the rails list) Greetings, I''m looking for suggestions on how to simplify getting customer addresses on a form: I''m jumping between controller and view several times; alternating between rhtml and rjs, in order to display customers and their addresses on an invoicing form. It''s very
2018 Apr 10
3
Invoice numbering for customers
Just wanted to ask a quick question here. I am running GNUC 2.6.12 and when I create a invoice for a customer I have to enter an invoice number. I was thinking perhaps there is setting somewhere that I missed to get it to automatically fill in a invoice number? Id hate to have invoices with the same invoice number since I have to manually type them in right now. Thank you, jdegraw
2007 Oct 01
0
download/upload restriction.
Hi all I have following script in my server. Now I want to restrict ip 192.168.3.2 to 128kbps (downlink). But in this case client can download upto 500kbps and upload cannot exceed more than 20kbps. Now what should I do to restrict client 192.168.3.2 within 128kbps downlink and 64kbps uplink. tc qdisc del dev eth0 root tc qdisc add dev eth0 root handle 1:0 htb tc class add dev eth0 parent
2005 Aug 16
0
What should my next steps in troubleshooting this TDM04B error be?
Hello I have installed a TDM04B and disabled any devices not required in my PC. (TDM04B is analog card with 4 ports to plug into telephone co lines). I am running this version of * Asterisk CVS-HEAD-01/10/05-02:11:15-AstLinux built by root@ls on a i686 running Linux As you see below the wctdm module is loaded: pbx root # lsmod Module Size Used by binfmt_misc 12296 1 - Live