similar to: Rebuilind help

Displaying 20 results from an estimated 1000 matches similar to: "Rebuilind help"

2004 Nov 03
2
Unread mail problem
Okay, here is the set up. I have Outlook set up to keep mail on the server for 5 days. At some point I started downloading all my mail that was on the server over and over again, even though I already have the mail. The weird thing is that it did not download all the mail, just a few. For example it would download 6 messages, then 18, then 12, etc! After I tried it a few times I had 50 of the same
2009 Aug 12
1
Vista Issues with samba
We have Samba setup for our shared drive. I have pasted the smb.conf file below. Everything is working well accept when we try and run an EXE file using Windows Vista. When we run an EXE file it first ask for UAC control then it pops up the username and password prompt. You must then type your username and password in again before it will run. I think the issues is that UAC is now running the
2009 Feb 02
3
Files monitoring through Samba
I am trying to setup a way to watch each file that is created, updated, and deleted through samba. I have currently looked at inotify but I am not sure if that is the best way. What suggestions would you have to setup a way to get some type of event when one of these actions occur? I would like to watch a directory recursively and be able to run a shell script or perl script and that script know
2009 Nov 16
0
ENUM and Asterisk 1.6
Hi all, I have a problem with 1.6.1.7-rc1 and ENUM (with an own PowerDNS server and NAPTR record). Maybe somebody has more experience with this or can give me some input. The dialplan: exten => 292,1,Set(DIAL_NUMBER=43660123456) exten => 292,2,Set(sip= ${ENUMLOOKUP(+${DIAL_NUMBER},sip,,1,ns3.e164.xxx.com)}) ;x'ed out the domain name starting from here exten => 292,3,NoOp(${sip})
2003 Apr 30
1
IPv6 Resolver (or: Slow rendering of Webpages using Konqueror)
Hi, <new_listmember_intro> Name: Melvyn Sopacua Occupation: WebMaster Age: 32 Location: Netherlands </new_listmember_intro> after quite some digging, the user experience mentioned in brackets above, turned out to be ipv6 resolving problems. They only occur with certain hosts, one of them being the adserver company my employer uses, 'DoubleClick'. What is frustrating about
1998 Jun 20
0
Named and Firewalls
Since it seems that named is theme of the month. I though I would present an example of using firewall to protect your bind service. One of reasons for presenting is that in all examples shown so far it seemed that everyone suggested to leave named full-open. However, it does not always have to be case. Say, if you are running an private network then you want just to allow named get data
2009 Oct 19
1
Samba roaming profile with folder redirection
Hi, I have a domain controller which was configured to use the local profiles. We have a relatively small group whose work required it. Now we are moving toward using the domain for all machine with roaming profile. There are a lot of posts dealing with the roaming profiles and the folder redirection. But I've met some issues. My configuration: NS3 and SMB are hostnames of our servers.
2012 Apr 10
6
trust relationship between this workstation and the primary domain failed
Samba shares work for windows 7 and Server 2008, but XP and Server 2000 recieve the following error when trying to map samba shares: "The trust relationship between this workstation and the primary domain failed." tail -f /var/log/messages Apr 10 07:38:03 samba01 smbd[23581]:?? connect_to_domain_password_server: unable to open the domain client session to machine ad1.strat.com. Error
2004 Jul 16
1
Rsync using --daemon - how to specify port on client side for upload.
Hi, I'm not sure what whether I have constitutes a bug, but here goes; I have two scripts; one I use when my website is 'correct' and i need a copy on my mirror, in which case, I start rsync like so; rsync -avvz rsync://www.clintoneast.com:20000/clinton /home/cje/mirror/ opening tcp connection to www.clintoneast.com port 20000 receiving file list ... It works fine. However, i
2010 Nov 25
3
[LLVMdev] how to eliminate dead infinite loops?
On 11/24/2010 06:55 PM, Owen Anderson wrote: > On Nov 23, 2010, at 9:22 AM, Andrew Clinton wrote: > > >> Most of my programs contain loops that the LoopDeletion pass is unable >> to remove. It appears that the following code in LoopDeletion.cpp:152 >> is the culprit: >> >> ScalarEvolution& SE = getAnalysis<ScalarEvolution>(); >>
2004 Feb 04
1
rsync ssh problem...
Hi all, I keep getting the following error when trying to use ssh: (with rsync 2.5.7) [root@drone2 root]# rsync --rsh="ssh -lpaul" clinton:: paul@clinton's password: rsync: server sent "" rather than greeting rsync error: error starting client-server protocol (code 5) at main.c(1043) ...while using root works! ie, [root@drone2 root]# rsync --rsh="ssh
2009 Apr 08
3
Rails 2.3 memcache performance drop
After much effort I upgraded our fairly large Rails app from 2.1 to 2.3. After deployment yesterday I noticed an across the board increase in response times. It seems that every call to memcache now takes 10x longer than before. Here are some example numbers from my development log (below), with memcache running locally. We see similar scale of performance drop in production as well - average
2006 May 23
5
Wierd pagination problem - Unknown options: order?
I am trying to use pagination with the order option. I am following examples I''ve seen all over the web, but I am getting an error. My code seems simple: def list @upload_pages, @uploads = paginate :uploads, :per_page => 20, :order => ''id'' end Yet I keep getting this error: ___________________________________________
2010 Nov 26
0
[LLVMdev] how to eliminate dead infinite loops?
On 11/25/2010 12:59 PM, Andrew Clinton wrote: > On 11/24/2010 06:55 PM, Owen Anderson wrote: >> On Nov 23, 2010, at 9:22 AM, Andrew Clinton wrote: >> >> >>> Most of my programs contain loops that the LoopDeletion pass is unable >>> to remove. It appears that the following code in LoopDeletion.cpp:152 >>> is the culprit: >>> >>>
2013 Jan 22
2
SPF1 txt records
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hey, I am trying to get spf working and it just doesn't want to take. On my Tiny/DJB server it was easy. Anyway here is my entry. $ORIGIN net. itadmins 14400 IN SOA ns1.itadmins.net. hostmaster.itadmins.net. ( 2012102201 16384 2048 1048576 2560 ) 14400 IN A 178.15.51.221 14400 IN
2010 Nov 23
5
[LLVMdev] how to eliminate dead infinite loops?
Most of my programs contain loops that the LoopDeletion pass is unable to remove. It appears that the following code in LoopDeletion.cpp:152 is the culprit: ScalarEvolution& SE = getAnalysis<ScalarEvolution>(); const SCEV *S = SE.getMaxBackedgeTakenCount(L); if (isa<SCEVCouldNotCompute>(S)) return Changed; So, LoopDeletion thinks my loops might be infinite so it
2014 Sep 30
1
Samba4 internal DNS - can't resolve extrenal hosts
Hello List, I am facing a probelm whereby my Samba4 internal DNS does not resolve external addresses: # host www.google.com Host www.google.com not found: 3(NXDOMAIN) The answer is immediate - so there's no timeout issue here. Internal resolution as described in the wiki to test the Samba AD DNS functions like host -t SRV _kerberos._udp.samba.mydomain.com host -t SRV
2006 Jan 09
8
Pri Gateway Hardware
Does anyone have any experience using a PRI gateway, I am looking for a way to have multiple asterisk boxes use one PRI, and send that over the network. I herd there are copper gateway devices (like a X100P card, only it registers with asterisk using sip, and it doesn't have to be physically connected to the box) Does anyone have any experience with a PRI gateway? And could tell me the cost
2006 May 14
3
Beginner question on paginate with params and conditions
I am trying to do a simple search by product name. The first page returns fine, but when I try to go to any other pages of the search results, I lose the original search parameters from my search form and get NilClass errors. Here is the code in my controller: namesearch = "%" + params[:name].strip + "%" @product_pages, @products = paginate :product,
2011 Feb 01
5
[LLVMdev] Loop simplification
I have a (non-entry) basic block that contains only PHI nodes and an unconditional branch (that does not branch to itself). Is it always possible to merge this block with it's successor and produce a semantically equivalent program? I'm trying to undo some of the loop optimizations that LLVM has applied to my program to reduce a pair of nested loops to a single loop.