[PHP-DB] works on production server but not on localhost

2003-11-19 Thread Paul Ihrig
hey guys..
just getting back in to using a little php.

have 2 simple hit counters that work fine on the production server.
but on my localhost it throughs several errors. looks like a permissions
thing?

i am not sure if there is a setting in my php.ini file that needs to be
tweaked.
kind of blind to the errors.

looks like a permissions thing?

hit counter: Warning: fopen(counterlog.txt, w) - Permission denied in
C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
hit counter2: 1

Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission denied
in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
cookie - headers already sent by (output started at
C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php on
line 21 Warning: Cannot send session cache limiter - headers already sent
(output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 27

any help would be great.
thanks
-paul

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



Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread mustafa ocak
You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?

 It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager

If it is a unix box (linux included) you can use
  chmod a+rw filename   or
  chmod 771 filename

to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.


HTH

Mustafa


- Original Message - 
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost


 hey guys..
 just getting back in to using a little php.

 have 2 simple hit counters that work fine on the production server.
 but on my localhost it throughs several errors. looks like a permissions
 thing?

 i am not sure if there is a setting in my php.ini file that needs to be
 tweaked.
 kind of blind to the errors.

 looks like a permissions thing?

 hit counter: Warning: fopen(counterlog.txt, w) - Permission denied in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
 hit counter2: 1

 Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission denied
 in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
 cookie - headers already sent by (output started at
 C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php on
 line 21 Warning: Cannot send session cache limiter - headers already sent
 (output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 27

 any help would be great.
 thanks
 -paul

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


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



RE: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread Paul Ihrig
ok...
im on xp running iis win
i tried to figure out how to change permissions on files  did a few example
but it never seemed to work.
is there a free chmod tool?

or a simple way to do it in windows?

again, i am sure i sound noob, and am...
thanks for the response.

-paul

-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?

 It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager

If it is a unix box (linux included) you can use
  chmod a+rw filename   or
  chmod 771 filename

to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.


HTH

Mustafa


- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost


 hey guys..
 just getting back in to using a little php.

 have 2 simple hit counters that work fine on the production server.
 but on my localhost it throughs several errors. looks like a permissions
 thing?

 i am not sure if there is a setting in my php.ini file that needs to be
 tweaked.
 kind of blind to the errors.

 looks like a permissions thing?

 hit counter: Warning: fopen(counterlog.txt, w) - Permission denied in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
 hit counter2: 1

 Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission denied
 in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
 cookie - headers already sent by (output started at
 C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php on
 line 21 Warning: Cannot send session cache limiter - headers already sent
 (output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
 argument is not a valid File-Handle resource in
 C:\Inetpub\wwwroot\WCBE\nav.php on line 27

 any help would be great.
 thanks
 -paul

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


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

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



Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread mustafa ocak

Settings - Control Panel - Administrative Tools -Internet Services
Manager

Click the Default Web Site on the list, directories will be shown
Right click the directory the files reside and Select Properties

You can give write permission to the directory here.

HTH

Mustafa

- Original Message - 
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:44 PM
Subject: RE: [PHP-DB] works on production server but not on localhost


 ok...
 im on xp running iis win
 i tried to figure out how to change permissions on files  did a few
example
 but it never seemed to work.
 is there a free chmod tool?

 or a simple way to do it in windows?

 again, i am sure i sound noob, and am...
 thanks for the response.

 -paul

 -Original Message-
 From: mustafa ocak [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 7:32 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP-DB] works on production server but not on localhost


 You are probably right, it looks like a permission problem.
 What is the OS (win, Linux) of your machine?

  It's not about PHP.INI, If your operating system is Windows give write
 permission to the directory these text files reside.
 You can do it by using Internet Services Manager

 If it is a unix box (linux included) you can use
   chmod a+rw filename   or
   chmod 771 filename

 to give write permission on these files  to everybody.
 Maybe you have to give write permission to the directory too, I'm not sure
 about it.


 HTH

 Mustafa


 - Original Message -
 From: Paul Ihrig [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 2:16 PM
 Subject: [PHP-DB] works on production server but not on localhost


  hey guys..
  just getting back in to using a little php.
 
  have 2 simple hit counters that work fine on the production server.
  but on my localhost it throughs several errors. looks like a permissions
  thing?
 
  i am not sure if there is a setting in my php.ini file that needs to be
  tweaked.
  kind of blind to the errors.
 
  looks like a permissions thing?
 
  hit counter: Warning: fopen(counterlog.txt, w) - Permission denied
in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():
supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():
supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
  hit counter2: 1
 
  Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission
denied
  in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
  cookie - headers already sent by (output started at
  C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php
on
  line 21 Warning: Cannot send session cache limiter - headers already
sent
  (output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 27
 
  any help would be great.
  thanks
  -paul
 
  --
  PHP Database Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 

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

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


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



RE: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread Paul Ihrig
already tried that
read write execute scripts.
no go


-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:54 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost



Settings - Control Panel - Administrative Tools -Internet Services
Manager

Click the Default Web Site on the list, directories will be shown
Right click the directory the files reside and Select Properties

You can give write permission to the directory here.

HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:44 PM
Subject: RE: [PHP-DB] works on production server but not on localhost


 ok...
 im on xp running iis win
 i tried to figure out how to change permissions on files  did a few
example
 but it never seemed to work.
 is there a free chmod tool?

 or a simple way to do it in windows?

 again, i am sure i sound noob, and am...
 thanks for the response.

 -paul

 -Original Message-
 From: mustafa ocak [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 7:32 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP-DB] works on production server but not on localhost


 You are probably right, it looks like a permission problem.
 What is the OS (win, Linux) of your machine?

  It's not about PHP.INI, If your operating system is Windows give write
 permission to the directory these text files reside.
 You can do it by using Internet Services Manager

 If it is a unix box (linux included) you can use
   chmod a+rw filename   or
   chmod 771 filename

 to give write permission on these files  to everybody.
 Maybe you have to give write permission to the directory too, I'm not sure
 about it.


 HTH

 Mustafa


 - Original Message -
 From: Paul Ihrig [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 2:16 PM
 Subject: [PHP-DB] works on production server but not on localhost


  hey guys..
  just getting back in to using a little php.
 
  have 2 simple hit counters that work fine on the production server.
  but on my localhost it throughs several errors. looks like a permissions
  thing?
 
  i am not sure if there is a setting in my php.ini file that needs to be
  tweaked.
  kind of blind to the errors.
 
  looks like a permissions thing?
 
  hit counter: Warning: fopen(counterlog.txt, w) - Permission denied
in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():
supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():
supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
  hit counter2: 1
 
  Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission
denied
  in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
  cookie - headers already sent by (output started at
  C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php
on
  line 21 Warning: Cannot send session cache limiter - headers already
sent
  (output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
  argument is not a valid File-Handle resource in
  C:\Inetpub\wwwroot\WCBE\nav.php on line 27
 
  any help would be great.
  thanks
  -paul
 
  --
  PHP Database Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 

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

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


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

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



Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread J.Veenhuijsen
Try setting security settings on directory itself eg full control for 
IUSR_..

to do this right click on directory -propertys- security  add a user 
IUSR_... and give full access

Works fine for me

Jochem



Paul Ihrig wrote:
already tried that
read write execute scripts.
no go
-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:54 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


Settings - Control Panel - Administrative Tools -Internet Services
Manager
Click the Default Web Site on the list, directories will be shown
Right click the directory the files reside and Select Properties
You can give write permission to the directory here.

HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:44 PM
Subject: RE: [PHP-DB] works on production server but not on localhost


ok...
im on xp running iis win
i tried to figure out how to change permissions on files  did a few
example

but it never seemed to work.
is there a free chmod tool?
or a simple way to do it in windows?

again, i am sure i sound noob, and am...
thanks for the response.
-paul

-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost
You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?
It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager
If it is a unix box (linux included) you can use
 chmod a+rw filename   or
 chmod 771 filename
to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.
HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost


hey guys..
just getting back in to using a little php.
have 2 simple hit counters that work fine on the production server.
but on my localhost it throughs several errors. looks like a permissions
thing?
i am not sure if there is a setting in my php.ini file that needs to be
tweaked.
kind of blind to the errors.
looks like a permissions thing?

hit counter: Warning: fopen(counterlog.txt, w) - Permission denied

in

C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():

supplied

argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():

supplied

argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
hit counter2: 1
Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission

denied

in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
cookie - headers already sent by (output started at
C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php

on

line 21 Warning: Cannot send session cache limiter - headers already

sent

(output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 27
any help would be great.
thanks
-paul
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


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


RE: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread Paul Ihrig
i don't have a security tab under properties when just browsing the
directory.

i only get a Directory Security tab when i am in the Internet Information
Services

there i have Anonymous access checked
User name IUSR_BAlgh
pass *

Allow IIS to control password checked
also Integrated Windows authentication checked.

seems funky...
i appreciate the help guys.
-paul

-Original Message-
From: J.Veenhuijsen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 8:27 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


Try setting security settings on directory itself eg full control for
IUSR_..

to do this right click on directory -propertys- security  add a user
IUSR_... and give full access

Works fine for me

Jochem



Paul Ihrig wrote:
 already tried that
 read write execute scripts.
 no go


 -Original Message-
 From: mustafa ocak [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 7:54 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP-DB] works on production server but not on localhost



 Settings - Control Panel - Administrative Tools -Internet Services
 Manager

 Click the Default Web Site on the list, directories will be shown
 Right click the directory the files reside and Select Properties

 You can give write permission to the directory here.

 HTH

 Mustafa

 - Original Message -
 From: Paul Ihrig [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 2:44 PM
 Subject: RE: [PHP-DB] works on production server but not on localhost



ok...
im on xp running iis win
i tried to figure out how to change permissions on files  did a few

 example

but it never seemed to work.
is there a free chmod tool?

or a simple way to do it in windows?

again, i am sure i sound noob, and am...
thanks for the response.

-paul

-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?

 It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager

If it is a unix box (linux included) you can use
  chmod a+rw filename   or
  chmod 771 filename

to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.


HTH

Mustafa


- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost



hey guys..
just getting back in to using a little php.

have 2 simple hit counters that work fine on the production server.
but on my localhost it throughs several errors. looks like a permissions
thing?

i am not sure if there is a setting in my php.ini file that needs to be
tweaked.
kind of blind to the errors.

looks like a permissions thing?

hit counter: Warning: fopen(counterlog.txt, w) - Permission denied

 in

C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():

 supplied

argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():

 supplied

argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
hit counter2: 1

Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission

 denied

in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
cookie - headers already sent by (output started at
C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php

 on

line 21 Warning: Cannot send session cache limiter - headers already

 sent

(output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 27

any help would be great.
thanks
-paul

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


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

--
PHP Database Mailing List (http

Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread J.Veenhuijsen
Do you have NTFS of FAT32 as filesystem??
If NTFS you can set permissions in directories or files
if FAT32 you can not.
Jochem

Paul Ihrig wrote:
i don't have a security tab under properties when just browsing the
directory.
i only get a Directory Security tab when i am in the Internet Information
Services
there i have Anonymous access checked
User name IUSR_BAlgh
pass *
Allow IIS to control password checked
also Integrated Windows authentication checked.
seems funky...
i appreciate the help guys.
-paul
-Original Message-
From: J.Veenhuijsen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 8:27 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost
Try setting security settings on directory itself eg full control for
IUSR_..
to do this right click on directory -propertys- security  add a user
IUSR_... and give full access
Works fine for me

Jochem



Paul Ihrig wrote:

already tried that
read write execute scripts.
no go
-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:54 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


Settings - Control Panel - Administrative Tools -Internet Services
Manager
Click the Default Web Site on the list, directories will be shown
Right click the directory the files reside and Select Properties
You can give write permission to the directory here.

HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:44 PM
Subject: RE: [PHP-DB] works on production server but not on localhost



ok...
im on xp running iis win
i tried to figure out how to change permissions on files  did a few
example


but it never seemed to work.
is there a free chmod tool?
or a simple way to do it in windows?

again, i am sure i sound noob, and am...
thanks for the response.
-paul

-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost
You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?
It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager
If it is a unix box (linux included) you can use
chmod a+rw filename   or
chmod 771 filename
to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.
HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost



hey guys..
just getting back in to using a little php.
have 2 simple hit counters that work fine on the production server.
but on my localhost it throughs several errors. looks like a permissions
thing?
i am not sure if there is a setting in my php.ini file that needs to be
tweaked.
kind of blind to the errors.
looks like a permissions thing?

hit counter: Warning: fopen(counterlog.txt, w) - Permission denied

in


C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():

supplied


argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():

supplied


argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
hit counter2: 1
Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission

denied


in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
cookie - headers already sent by (output started at
C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php

on


line 21 Warning: Cannot send session cache limiter - headers already

sent


(output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 27
any help would be great.
thanks
-paul
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Database Mailing List (http://www.php.net

Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread J.Veenhuijsen
Try setting permissions on counterlog.txt itself inside IIS and and on 
the file itself

Jochem

Paul Ihrig wrote:
i don't have a security tab under properties when just browsing the
directory.
i only get a Directory Security tab when i am in the Internet Information
Services
there i have Anonymous access checked
User name IUSR_BAlgh
pass *
Allow IIS to control password checked
also Integrated Windows authentication checked.
seems funky...
i appreciate the help guys.
-paul
-Original Message-
From: J.Veenhuijsen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 8:27 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost
Try setting security settings on directory itself eg full control for
IUSR_..
to do this right click on directory -propertys- security  add a user
IUSR_... and give full access
Works fine for me

Jochem



Paul Ihrig wrote:

already tried that
read write execute scripts.
no go
-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:54 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost


Settings - Control Panel - Administrative Tools -Internet Services
Manager
Click the Default Web Site on the list, directories will be shown
Right click the directory the files reside and Select Properties
You can give write permission to the directory here.

HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:44 PM
Subject: RE: [PHP-DB] works on production server but not on localhost



ok...
im on xp running iis win
i tried to figure out how to change permissions on files  did a few
example


but it never seemed to work.
is there a free chmod tool?
or a simple way to do it in windows?

again, i am sure i sound noob, and am...
thanks for the response.
-paul

-Original Message-
From: mustafa ocak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 7:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] works on production server but not on localhost
You are probably right, it looks like a permission problem.
What is the OS (win, Linux) of your machine?
It's not about PHP.INI, If your operating system is Windows give write
permission to the directory these text files reside.
You can do it by using Internet Services Manager
If it is a unix box (linux included) you can use
chmod a+rw filename   or
chmod 771 filename
to give write permission on these files  to everybody.
Maybe you have to give write permission to the directory too, I'm not sure
about it.
HTH

Mustafa

- Original Message -
From: Paul Ihrig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 2:16 PM
Subject: [PHP-DB] works on production server but not on localhost



hey guys..
just getting back in to using a little php.
have 2 simple hit counters that work fine on the production server.
but on my localhost it throughs several errors. looks like a permissions
thing?
i am not sure if there is a setting in my php.ini file that needs to be
tweaked.
kind of blind to the errors.
looks like a permissions thing?

hit counter: Warning: fopen(counterlog.txt, w) - Permission denied

in


C:\Inetpub\wwwroot\WCBE\counter.php on line 4 Warning: fwrite():

supplied


argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 5 Warning: fclose():

supplied


argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\counter.php on line 6 12
hit counter2: 1
Warning: fopen(FX_DataCounter/wcbecounter.txt, r+) - Permission

denied


in C:\Inetpub\wwwroot\WCBE\nav.php on line 19 Warning: fgets(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 20 Warning: Cannot send session
cookie - headers already sent by (output started at
C:\Inetpub\wwwroot\WCBE\nav.php:19) in C:\Inetpub\wwwroot\WCBE\nav.php

on


line 21 Warning: Cannot send session cache limiter - headers already

sent


(output started at C:\Inetpub\wwwroot\WCBE\nav.php:19) in
C:\Inetpub\wwwroot\WCBE\nav.php on line 21 Warning: fseek(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 23 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 24 Warning: fputs(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 25 Warning: flock(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 26 Warning: fclose(): supplied
argument is not a valid File-Handle resource in
C:\Inetpub\wwwroot\WCBE\nav.php on line 27
any help would be great.
thanks
-paul
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http

RE: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread Paul Ihrig
it's ntfs

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



Re: [PHP-DB] works on production server but not on localhost

2003-11-19 Thread J.Veenhuijsen
if it is ntfs you should have a security tab if you right click
in the file counterlog.txt .
If not the you should login as administrator.
then set full controll to counterlog.txt for IUSR_...
Jochem

Paul Ihrig wrote:
it's ntfs
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] works on production server but not on localhost :: fix

2003-11-19 Thread Paul Ihrig
how weird is this
just had to uncheck allow anonymous access.
and keep checked Integrated Windows authentication

just seems a bit silly...
every thing works fine now.

thanks for the help!
will have better questions for you all in a day or so...
-paul

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



Re: [PHP-DB] works on production server but not on localhost :: fix

2003-11-19 Thread CPT John W. Holmes
From: Paul Ihrig [EMAIL PROTECTED]

 how weird is this
 just had to uncheck allow anonymous access.
 and keep checked Integrated Windows authentication

 just seems a bit silly...
 every thing works fine now.

Of course it works because you're now running the PHP scripts as yourself,
and you have permission to read/write to the directory in question.

If you use anonymous access, like it was said before, PHP runs as the IUSR_*
account. So, in order for it to work, that user must have read/write
permissions for the directory.

---John Holmes...

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