Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:29816 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 85316 invoked by uid 1010); 26 May 2007 19:39:46 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 85300 invoked from network); 26 May 2007 19:39:46 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 May 2007 19:39:46 -0000 Authentication-Results: pb1.pair.com smtp.mail=tijnema@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=tijnema@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.132.243 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: tijnema@gmail.com X-Host-Fingerprint: 209.85.132.243 an-out-0708.google.com Received: from [209.85.132.243] ([209.85.132.243:37560] helo=an-out-0708.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B4/E3-49291-00D88564 for ; Sat, 26 May 2007 15:39:45 -0400 Received: by an-out-0708.google.com with SMTP id c18so323417anc for ; Sat, 26 May 2007 12:39:42 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=d6L1KFPuj1nxrLohVVsuGRG/7RTcdHPT+2V7iB32b9vuEK+877CPi9i0qYxw/yBC2SJXZHaVx0zOX8fDF22pfHbFkIZ0U+L8lVdfZV1XvzxqvjljNDSe35snHXyr4m2sKBKJXaDda90VYbKgrRHqJTeOwJ40qgFXdSAcqPxqZ1c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LT5JpShsTmj/sAqhMBpAcBO+7bz9JnPG07Z1wbOln3HD+PrzwfX4deJlKvetK4n5TfqGGQELC9+7SI6uvS8hHZ4HJnHZYEcPIoi7uJZ8GxYZs9AH5l7LWg91YFX+ByHX1lWtSm2Ygiqz2TKuMFDu6MqkPr/jeN3dJVM/6gFCtmI= Received: by 10.100.196.3 with SMTP id t3mr3613097anf.1180208382128; Sat, 26 May 2007 12:39:42 -0700 (PDT) Received: by 10.100.43.17 with HTTP; Sat, 26 May 2007 12:39:42 -0700 (PDT) Message-ID: Date: Sat, 26 May 2007 21:39:42 +0200 To: "Arnold Daniels" Cc: "Oliver Block" , "Rasmus Lerdorf" , internals@lists.php.net In-Reply-To: <46579EDB.5020901@adaniels.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4638E608.2090202@adaniels.nl> <200705260208.18082.lists@block-online.eu> <46577F7A.6000200@lerdorf.com> <200705260236.00461.lists@block-online.eu> <46579EDB.5020901@adaniels.nl> Subject: Re: [PHP-DEV] Re: Still having lstat trouble From: tijnema@gmail.com (Tijnema) Ok, I think I found the problem, as Oliver pointed me on something in the thread titled "virtual_file_ex/filetype". When PHP is build with --enable-maintainer-zts mode, then this lstat, and some others too, is broken. I have build 2 PHP installations(PHP-5.2.3RC1), Both with the same configuration options, except that I build the first without --enable-maintainer-zts, and the second one with. The first one does execute the code as expected, while the second code doesn't. It returns the same for all filesystems that were actually allowing symlinks, no matter which options used: file not a link same So, thank Oliver! Tijnema