php-windows Digest 2 Jan 2004 23:48:01 -0000 Issue 2064

Topics (messages 22446 through 22454):

Re: chmod
        22446 by: Svensson, B.A.T. (HKG)
        22447 by: Warren Vail
        22448 by: Svensson, B.A.T. (HKG)
        22449 by: Warren Vail
        22450 by: Frank M. Kromann
        22452 by: Bobo Wieland

Re: php_mysql.dll for php 5.0.0b3 not working
        22451 by: Perry Lewis

php4.3.4 sessions and IIs6 2003 server not working
        22453 by: William D. Wright

GD2 function issue
        22454 by: choinet

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
This seams to be an access problem in the file system. 

Check if the user Id the process executes under actually have
the proper rights in the filesystem, e.g.  write (or modify)
permission on all the directories in
/home/p/plantsko/www/administration/data/.

If you are running under some flavour of unix you must also ensure
that the process have execution right (--x) on all directories
in the path in order to access the file.

If you are running under win32 platfrpom (e.g. NT with NTFS)
then sort of the same holds true - I think. But who knows
for sure with Bill... ;)

Additional question:

* how are you executing this? Via the webserver(?),
  and if so, what kind of webserver are you using?


-----Original Message-----
From: Bobo Wieland
To: [EMAIL PROTECTED]
Sent: 2004-01-02 11:39
Subject: [PHP-WIN] chmod

I'm trying to set write permission for a folder to be able to write
images...

chmod("./../img/sort",0777) just causing a warning:

Warning: chmod(): Operation not permitted in
/home/p/plantsko/www/administration/data/imglib.php on line 11


Anyone know what might cause this warning?

I've tried chmod("/home/p/plantsko/www/img/sort",0777) which causes the
same warning...



.bobo

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
There is a note in the manual;

http://us2.php.net/manual/en/function.chmod.php

Where someone detected that only 775 and 666 worked, another concluded that
a few additional values are valid on windows platforms (777 was not one of
them).

Warren Vail
[EMAIL PROTECTED]


-----Original Message-----
From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]
Sent: Friday, January 02, 2004 7:17 AM
To: 'Bobo Wieland '; '[EMAIL PROTECTED] '
Subject: RE: [PHP-WIN] chmod


This seams to be an access problem in the file system.

Check if the user Id the process executes under actually have
the proper rights in the filesystem, e.g.  write (or modify)
permission on all the directories in
/home/p/plantsko/www/administration/data/.

If you are running under some flavour of unix you must also ensure
that the process have execution right (--x) on all directories
in the path in order to access the file.

If you are running under win32 platfrpom (e.g. NT with NTFS)
then sort of the same holds true - I think. But who knows
for sure with Bill... ;)

Additional question:

* how are you executing this? Via the webserver(?),
  and if so, what kind of webserver are you using?


-----Original Message-----
From: Bobo Wieland
To: [EMAIL PROTECTED]
Sent: 2004-01-02 11:39
Subject: [PHP-WIN] chmod

I'm trying to set write permission for a folder to be able to write
images...

chmod("./../img/sort",0777) just causing a warning:

Warning: chmod(): Operation not permitted in
/home/p/plantsko/www/administration/data/imglib.php on line 11


Anyone know what might cause this warning?

I've tried chmod("/home/p/plantsko/www/img/sort",0777) which causes the
same warning...



.bobo

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
> Where someone detected that only 775 and 666 worked, another
> concluded that a few additional values are valid on windows
> platforms (777 was not one of them).

Holy moses!

--- End Message ---
--- Begin Message ---
More like Holy Gates, I suspect ;->

Warren Vail
[EMAIL PROTECTED]


-----Original Message-----
From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]
Sent: Friday, January 02, 2004 8:02 AM
To: 'Warren Vail '; ''Bobo Wieland ' '; '[EMAIL PROTECTED] '
Subject: RE: [PHP-WIN] chmod


> Where someone detected that only 775 and 666 worked, another
> concluded that a few additional values are valid on windows
> platforms (777 was not one of them).

Holy moses!

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
0777 works fine on Windows 2000 and XP, if the user has the rights to
modify the directory.

- Frank

> There is a note in the manual;
> 
> http://us2.php.net/manual/en/function.chmod.php
> 
> Where someone detected that only 775 and 666 worked, another concluded
that
> a few additional values are valid on windows platforms (777 was not one
of
> them).
> 
> Warren Vail
> [EMAIL PROTECTED]
> 
> 
> -----Original Message-----
> From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]
> Sent: Friday, January 02, 2004 7:17 AM
> To: 'Bobo Wieland '; '[EMAIL PROTECTED] '
> Subject: RE: [PHP-WIN] chmod
> 
> 
> This seams to be an access problem in the file system.
> 
> Check if the user Id the process executes under actually have
> the proper rights in the filesystem, e.g.  write (or modify)
> permission on all the directories in
> /home/p/plantsko/www/administration/data/.
> 
> If you are running under some flavour of unix you must also ensure
> that the process have execution right (--x) on all directories
> in the path in order to access the file.
> 
> If you are running under win32 platfrpom (e.g. NT with NTFS)
> then sort of the same holds true - I think. But who knows
> for sure with Bill... ;)
> 
> Additional question:
> 
> * how are you executing this? Via the webserver(?),
>   and if so, what kind of webserver are you using?
> 
> 
> -----Original Message-----
> From: Bobo Wieland
> To: [EMAIL PROTECTED]
> Sent: 2004-01-02 11:39
> Subject: [PHP-WIN] chmod
> 
> I'm trying to set write permission for a folder to be able to write
> images...
> 
> chmod("./../img/sort",0777) just causing a warning:
> 
> Warning: chmod(): Operation not permitted in
> /home/p/plantsko/www/administration/data/imglib.php on line 11
> 
> 
> Anyone know what might cause this warning?
> 
> I've tried chmod("/home/p/plantsko/www/img/sort",0777) which causes the
> same warning...
> 
> 
> 
> .bobo
> 
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

--- End Message ---
--- Begin Message ---
I've contacted my ISP and it accually was an error from their side. thanks
anyway...

.bobo


----- Original Message ----- 
From: "Frank M. Kromann" <[EMAIL PROTECTED]>
To: "Warren Vail" <[EMAIL PROTECTED]>
Cc: "Svensson, B.A.T. (HKG)" <[EMAIL PROTECTED]>; "'Bobo Wieland '"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, January 02, 2004 5:51 PM
Subject: RE: [PHP-WIN] chmod


> 0777 works fine on Windows 2000 and XP, if the user has the rights to
> modify the directory.
>
> - Frank
>
> > There is a note in the manual;
> >
> > http://us2.php.net/manual/en/function.chmod.php
> >
> > Where someone detected that only 775 and 666 worked, another concluded
> that
> > a few additional values are valid on windows platforms (777 was not one
> of
> > them).
> >
> > Warren Vail
> > [EMAIL PROTECTED]
> >
> >
> > -----Original Message-----
> > From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]
> > Sent: Friday, January 02, 2004 7:17 AM
> > To: 'Bobo Wieland '; '[EMAIL PROTECTED] '
> > Subject: RE: [PHP-WIN] chmod
> >
> >
> > This seams to be an access problem in the file system.
> >
> > Check if the user Id the process executes under actually have
> > the proper rights in the filesystem, e.g.  write (or modify)
> > permission on all the directories in
> > /home/p/plantsko/www/administration/data/.
> >
> > If you are running under some flavour of unix you must also ensure
> > that the process have execution right (--x) on all directories
> > in the path in order to access the file.
> >
> > If you are running under win32 platfrpom (e.g. NT with NTFS)
> > then sort of the same holds true - I think. But who knows
> > for sure with Bill... ;)
> >
> > Additional question:
> >
> > * how are you executing this? Via the webserver(?),
> >   and if so, what kind of webserver are you using?
> >
> >
> > -----Original Message-----
> > From: Bobo Wieland
> > To: [EMAIL PROTECTED]
> > Sent: 2004-01-02 11:39
> > Subject: [PHP-WIN] chmod
> >
> > I'm trying to set write permission for a folder to be able to write
> > images...
> >
> > chmod("./../img/sort",0777) just causing a warning:
> >
> > Warning: chmod(): Operation not permitted in
> > /home/p/plantsko/www/administration/data/imglib.php on line 11
> >
> >
> > Anyone know what might cause this warning?
> >
> > I've tried chmod("/home/p/plantsko/www/img/sort",0777) which causes the
> > same warning...
> >
> >
> >
> > .bobo
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> > -- 
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
I was having the same problem.

Make sure you copy the DLLs under the PHP folder/directory (drive:\php\dlls)
to your WIN/SYSTEM32 folder.  The DLL "libmSQL.dll" must be in SYSTEM32 and
it should be 228KB in size.

I have my system setup to where I use PHP 4.3.4 and PHP 5.0 Beta 3.  PHP
4.3.4 operates fine with these DLLs.

Hope this helps.

"Vincent Jansen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi all,
>
> Let me elaborate a little
>
> My 5.0.0b3 distro had a php_mysql.dll file which didn't work. Apache
> said it couldn't be found but other extensions where found in that dir.
> Interestingly enough the php_mssql.dll file didn't work either but was
> exactly the same size as the mysql file. (seems odd)
>
> Any help is appreciated
> Thanks
>
> Vincent Jansen
>
>
> -----Original Message-----
> From: Vincent Jansen [mailto:[EMAIL PROTECTED]
> Sent: maandag 29 december 2003 16:54
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] php_mysql.dll for php 5.0.0b3 not working
>
>
> Where (if) can I find a php_mysql.dll for php 5.0.0b3?
> The file with the distibution isn't working
>
> Thanx
>
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
hi  i can not get my sessions working i have created the c:\temp folder and
shared it and made it writable by I_USR.
I am running the ISAPI.dll and php is working fine except for sessions how
can i troubleshoot my php install or debug the php since there is no error i
can find it just never starts a session that i can tell

--- End Message ---
--- Begin Message ---
Has anyone ever encountered this same problem? I submitted a bug report as a 
continuation of another rather misguided report (linked to in this report), and things 
became rather heated, as the stubborn developer refused to listen to me, so I want to 
see if any of you could perhaps test it out and help get this issue fixed once and for 
all.
http://bugs.php.net/bug.php?id=26764
Basically, the bug is that spaces cannot be used in the font pathnames because they 
actually denote multiple fonts. sniper at php net emphasizes that such things cannot 
be done, but I just proved him wrong by doing it in the test code. Furthermore, I 
suspect that he probably only checked the source code and did not actually test it out 
as I instructed him to, hence the "there is no bug here" rhetoric.


---------------------------------
Do you Yahoo!?
Find out what made the Top Yahoo! Searches of 2003

--- End Message ---

Reply via email to