php-windows Digest 3 Dec 2001 22:03:11 -0000 Issue 883
Topics (messages 10696 through 10712):
Re: File upload
10696 by: Christian Sandfeld
10697 by: Samba Sidibeh
10698 by: Samba Sidibeh
10699 by: Keith Whyman
checkdnsrr()
10700 by: Jos van der Vleuten
10702 by: Christian Sandfeld
10709 by: Alan Brown
images library on Win2000
10701 by: Afan Pasalic
Re: PHP Bulletin Board - How it works...
10703 by: Christian Sandfeld
Re: Header() redirect
10704 by: Christian Sandfeld
Administration
10705 by: Samba Sidibeh
Re: installation php4.0.6 on IIS 5.0 with Win 2000 Serv er
10706 by: Christian Sandfeld
MYSQL and PHP
10707 by: Jordan Arendt
10711 by: Jordan Arendt
File Upload Question
10708 by: epankoke.csdatasol.net
PHP 4.0.6 on Apache 2.0.28
10710 by: Alek Andreev
IIS help
10712 by: Conover, Ryan
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 ---
Without knowing for sure I would imagine that the PHP installation on the
server is running in safe mode (look for the "safe_mode" var in your
php.ini).
Brgds,
Christian
-----Original Message-----
From: Samba Sidibeh [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 10:50
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] File upload
Hi
I'm trying to learn how to do file upload and I am using the example shown
on php.net's manual (http://www.php.net/manual/en/features.file-upload.php):
<form enctype="multipart/form-data" action="_URL_" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>
...for the client
and:
<?php
if (is_uploaded_file($userfile)) {
copy($userfile, "/place/to/put/uploaded/file");
} else {
echo "Possible file upload attack: filename '$userfile'.";
}
/* ...or... */
move_uploaded_file($userfile, "/place/to/put/uploaded/file");
?>
..for the server side. No matter how I do it I always get the response
"Possible file upload attack: filename." from the server. Am I forgetting
something or what. Any help at all would make me very glad.
------------------------
Samba Sidibeh
Systemutvecklare
SYSteam Udac AB
Storgatan 19, Box 174, 751 04 Uppsala
Tel direkt: 018-67 81 35
Tel vxl: 018-67 80 00 Fax: 018-51 66 00
Hemsida: www.systeam.se, www.udac.se
SYSteam Udac ingår i SYSteamkoncernen.
--- End Message ---
--- Begin Message ---
No - safe_mode = Off. But I thaught it had something to do with register_globals or
track_vars in the php.ini file but now I have turned on register_globals so that
shouldn't be an issue anymore.
----- Original Message -----
From: "Christian Sandfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 11:06 AM
Subject: RE: [PHP-WIN] File upload
Without knowing for sure I would imagine that the PHP installation on the
server is running in safe mode (look for the "safe_mode" var in your
php.ini).
Brgds,
Christian
-----Original Message-----
From: Samba Sidibeh [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 10:50
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] File upload
Hi
I'm trying to learn how to do file upload and I am using the example shown
on php.net's manual (http://www.php.net/manual/en/features.file-upload.php):
<form enctype="multipart/form-data" action="_URL_" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>
...for the client
and:
<?php
if (is_uploaded_file($userfile)) {
copy($userfile, "/place/to/put/uploaded/file");
} else {
echo "Possible file upload attack: filename '$userfile'.";
}
/* ...or... */
move_uploaded_file($userfile, "/place/to/put/uploaded/file");
?>
..for the server side. No matter how I do it I always get the response
"Possible file upload attack: filename." from the server. Am I forgetting
something or what. Any help at all would make me very glad.
------------------------
Samba Sidibeh
Systemutvecklare
SYSteam Udac AB
Storgatan 19, Box 174, 751 04 Uppsala
Tel direkt: 018-67 81 35
Tel vxl: 018-67 80 00 Fax: 018-51 66 00
Hemsida: www.systeam.se, www.udac.se
SYSteam Udac ingår i SYSteamkoncernen.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Now I'm getting a warning. "../www': Permission denied in ../www/test.phtml on line 24"
/Samba
----- Original Message -----
From: "Samba Sidibeh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 11:12 AM
Subject: Re: [PHP-WIN] File upload
No - safe_mode = Off. But I thaught it had something to do with register_globals or
track_vars in the php.ini file but now I have turned on register_globals so that
shouldn't be an issue anymore.
----- Original Message -----
From: "Christian Sandfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 11:06 AM
Subject: RE: [PHP-WIN] File upload
Without knowing for sure I would imagine that the PHP installation on the
server is running in safe mode (look for the "safe_mode" var in your
php.ini).
Brgds,
Christian
-----Original Message-----
From: Samba Sidibeh [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 10:50
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] File upload
Hi
I'm trying to learn how to do file upload and I am using the example shown
on php.net's manual (http://www.php.net/manual/en/features.file-upload.php):
<form enctype="multipart/form-data" action="_URL_" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>
...for the client
and:
<?php
if (is_uploaded_file($userfile)) {
copy($userfile, "/place/to/put/uploaded/file");
} else {
echo "Possible file upload attack: filename '$userfile'.";
}
/* ...or... */
move_uploaded_file($userfile, "/place/to/put/uploaded/file");
?>
..for the server side. No matter how I do it I always get the response
"Possible file upload attack: filename." from the server. Am I forgetting
something or what. Any help at all would make me very glad.
------------------------
Samba Sidibeh
Systemutvecklare
SYSteam Udac AB
Storgatan 19, Box 174, 751 04 Uppsala
Tel direkt: 018-67 81 35
Tel vxl: 018-67 80 00 Fax: 018-51 66 00
Hemsida: www.systeam.se, www.udac.se
SYSteam Udac ingår i SYSteamkoncernen.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
has your folder got the correct CHMOD settings ?
Now I'm getting a warning. "../www': Permission denied in ../www/test.phtml
on line 24"
/Samba
----- Original Message -----
From: "Samba Sidibeh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 11:12 AM
Subject: Re: [PHP-WIN] File upload
No - safe_mode = Off. But I thaught it had something to do with
register_globals or track_vars in the php.ini file but now I have turned on
register_globals so that shouldn't be an issue anymore.
----- Original Message -----
From: "Christian Sandfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 11:06 AM
Subject: RE: [PHP-WIN] File upload
Without knowing for sure I would imagine that the PHP installation on the
server is running in safe mode (look for the "safe_mode" var in your
php.ini).
Brgds,
Christian
-----Original Message-----
From: Samba Sidibeh [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 10:50
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] File upload
Hi
I'm trying to learn how to do file upload and I am using the example shown
on php.net's manual (http://www.php.net/manual/en/features.file-upload.php):
<form enctype="multipart/form-data" action="_URL_" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>
...for the client
and:
<?php
if (is_uploaded_file($userfile)) {
copy($userfile, "/place/to/put/uploaded/file");
} else {
echo "Possible file upload attack: filename '$userfile'.";
}
/* ...or... */
move_uploaded_file($userfile, "/place/to/put/uploaded/file");
?>
..for the server side. No matter how I do it I always get the response
"Possible file upload attack: filename." from the server. Am I forgetting
something or what. Any help at all would make me very glad.
------------------------
Samba Sidibeh
Systemutvecklare
SYSteam Udac AB
Storgatan 19, Box 174, 751 04 Uppsala
Tel direkt: 018-67 81 35
Tel vxl: 018-67 80 00 Fax: 018-51 66 00
Hemsida: www.systeam.se, www.udac.se
SYSteam Udac ingår i SYSteamkoncernen.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
On win32 when i call the checkdnsrr() function i receive the following
error:
Warning: checkdnsrr() is not supported in this PHP build in
C:\apache\htdocs\wol\test.php on line 7
How do i resolve this problem?
--- End Message ---
--- Begin Message ---
Unfortunately you can't. According to the manual on php.net that function is
not available on the windows platform
(http://www.php.net/manual/en/function.checkdnsrr.php)
Rgds,
Christian
-----Original Message-----
From: Jos van der Vleuten [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 15:30
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] checkdnsrr()
On win32 when i call the checkdnsrr() function i receive the following
error:
Warning: checkdnsrr() is not supported in this PHP build in
C:\apache\htdocs\wol\test.php on line 7
How do i resolve this problem?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
I did spend some time fixing up the bindlib_w32 some months back (in
preparation for just this fix) - but I never did check in any changes to the
PHP code (mostly beacuse I did not know who manages the bindlib_w32 code
stored on the PHP.net web server). And I have to say that I did not bother
with Win9x/ME on the fixes either. If some industrious indiidual wants to
finish the job - just let me know and I will fire off the bindlib changes.
Or I can finish it if anyone knows how to get the bindlib changes into the
php.net Win32 build tar ball.
Alan.
----- Original Message -----
From: "Christian Sandfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 10:38
Subject: RE: [PHP-WIN] checkdnsrr()
> Unfortunately you can't. According to the manual on php.net that function
is
> not available on the windows platform
> (http://www.php.net/manual/en/function.checkdnsrr.php)
>
> Rgds,
>
> Christian
>
> -----Original Message-----
> From: Jos van der Vleuten [mailto:[EMAIL PROTECTED]]
> Sent: 3. december 2001 15:30
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] checkdnsrr()
>
>
> On win32 when i call the checkdnsrr() function i receive the following
> error:
>
> Warning: checkdnsrr() is not supported in this PHP build in
> C:\apache\htdocs\wol\test.php on line 7
>
> How do i resolve this problem?
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
--- End Message ---
--- Begin Message ---
Hi all,
How is a library installed on Win2000? I have downloaded the binaries for t1lib but
can't get them to work.
Thanks for any help!
Afan
--- End Message ---
--- Begin Message ---
Assuming all you want is a good BBS to run at your site, there are very
qualified Open Source bulletin boards readily available on the WEB at no
charge. One such BBS is phpBB wich is located at www.phpbb.com.
If on the other hand you want to learn how to make your own BBS I second
what Mr. Svensson said. A good place to start if you want to learn how to
program with PHP is www.php.net (the online manual with user comments is a
goldmine) and www.phpbuilder.com (has loads of tutorials, code snippets
etc.).
Rgds,
Christian
-----Original Message-----
From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]]
Sent: 3. december 2001 07:58
To: [EMAIL PROTECTED]
Cc: Anthony Ritter
Subject: RE: [PHP-WIN] PHP Bulletin Board - How it works...
>I'm using Windows 98 with Apache, mysql and PHP.
>
>I'm in the process of learning PHP and would like to find a
>few tutorials on HP/mysql bulletin boards.
>
>
>I know that there are a few that you can download but I am trying to find a
>tutorial that will let me anylaze the syntax and logic of the code so that
I
>can understand and breakdown the steps in how a BB program works.
>
>Any URL's will be helpful.
It is unclear what your question is about?
a) would you like to learn program in php and/or SQL
b) would you like to learn how to write a BBS software?
If you want to learn php consult the online manual at
http://www.php.net/docs.php
To learn more about mysql consult
http://www.mysql.com/documentation/index.html
If you would like to learn how to write a BSS then I would
not recommend someone to learn to write a BBS software by
doing reverse engineering of some BBS software - trying to
understand a design from that level is not the right way to
learn the "programming" of a BBS, e.g. to design a BBS.
The important thing must be to learn how a BBS functionally
fits together, and that is very hard to understand straight
out from the code unless you don't have lots of programming
experience. (Reverse engineering *is* difficult!)
Looking at just one implementation of a BBS wont help you either,
at most you will learn how that specific implementations works.
Judging from the formulation of you question I assume you don't
have the sufficient experience to do this, so I would then instead
recommend you to try to learn the basic principles about HTML and
SQL before attempting to write a BBS - other wise your BBS will
be more or less a "relabling" of the system you study - and you
probably don't want that!
My recommendation is someone of the following:
1) If you know how to program: first learn how webserver
and databases works and interact, then it is easy to design
and write a BBS.
2) If not, learn the basic skills and proceed to 1)
3) Hire someone with sufficient skill to do the job for you.
The first two is an advice you ought to follow if you really
wants to *learn* how a BBS software system in this form works,
but if you just wants to have something up and running, then
3) should be your choice. If you already know how to do
programming then 1) wont take that long time to achieve
anyway, at the very least it will be fare cost effectively
than trying to reverse engineer a BBS.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
I too use sessions with header() redirects, with out the warnings. I too
would think that the problem is some spaces or line breaks before your <?php
tags. However, if you can't locate the problem, a "dirty" workarround might
be achieved by enabling output buffering in your php.ini (output_buffering =
On) (assuming you have access to the php.ini).
Rgds,
Christian
-----Original Message-----
From: Martin.Andrew [mailto:[EMAIL PROTECTED]]
Sent: 30. november 2001 11:51
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Header() redirect
Is there another function that does the same job as Header()
I'm creating a forum, and when a user sends a message I call a function that
checks name, password etc, then updates the DB and then calls the Header
function to redirect the page.
This would be fine except I am also using session library files that have
the html headers already created, thus, while the redirects (it still
redirects) I get the standard
Warning: Cannot add header information - headers already sent by ....
message, I know where the problem is but can't solve it without changing
many function of the forum functionality.
I have tried using plain javascript and this does work but there is again a
split second delay that is very annoying.
Thanks.
--- End Message ---
--- Begin Message ---
This might be a basic questions (I don't know) and it's actually about
apache and not php but I'm not afraid to make an ass out of myself so here
goes nothing (but if you think I'm out of line please stop reading here).
How does one create accounts under apache and change permissions to files.
It just struck me that since I've only been working locally I've only been
using the Win Explorer to upload and update files on the server. But now I
need an administrators account and stuff so what do I do about that?
------------------------
Samba Sidibeh
Systemutvecklare
SYSteam Udac AB
Storgatan 19, Box 174, 751 04 Uppsala
Tel direkt: 018-67 81 35
Tel vxl: 018-67 80 00 Fax: 018-51 66 00
Hemsida: www.systeam.se, www.udac.se
SYSteam Udac ingår i SYSteamkoncernen.
--- End Message ---
--- Begin Message ---
I don't know of an actual manual, but I find that the instructions included
with the Windows binary are quite easy to follow.
First, you need to ensure that you have a WEB server running (with Win2000
that would typically be IIS 5.0). Try opening your browser and enter
http://localhost/ as the URL. If a WEB server is installed on your PC you
should see a page in your browser. If you do not get a page a WEB server is
not running on your PC, and you need to address this problem first. On
Win2000 i believe you can install the IIS web server by going into
"add/remove programs -> windows setup" or something similar (I don't have a
Win2000 system at hand).
Once you have a WEB server running, download the windows binary of PHP
4.0.6. If you download the .exe version the installer should take care of
pretty much everything for you, whereas if you download the .zip version you
will have to do things manually - but instructions on how to do it are
included in the zip. I myself have always used the .zip version, so I can't
say for sure how well the .exe version works.
Once you have it all installed, a good way to test if PHP is working is to
make a script with the following code:
<?php
phpinfo();
?>
Place this in a file called phpinfo.php (or whatever you prefer) and place
it in your WEB root (with IIS it is typically c:\inetpub\wwwroot\). Then
call it up in your browser like this:
http://localhost/phpinfo.php
If everything is working you will get a neatly formatted page displaying
info about your PHP installation.
Hope this helps :-)
/Christian
-----Original Message-----
From: reinhold [mailto:[EMAIL PROTECTED]]
Sent: 2. december 2001 08:32
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] installation php4.0.6 on IIS 5.0 with Win 2000 Server
where can I get a proper manual how to setup php on win2000. I am trying
since two days to get it it working, i was reading a lot manuals in these
days baut no proper information. May be somebody know a realy good manual.
I have everytime a blank window when i load my page local, when i upload the
page to my ISP the page is working.
I hope somebody give me some hint how to setup my webserver.
thanks reinhold
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Hi,
I'm struggling with some php code. I'm trying to insert some info into a
mysql DB. I beleive I'm failing on the SQL statement, specifically the
WHERE syntax. Can anyone help?
------------
bypass = 0 --confirmed
$i = 0 works and inserts into the DB.
$i=1 works, but doesn't insert into DB.
-------------
if ($bypass==0){
// Add picks: this is ugly!
if ($i==0){
echo " i equals zero";
$sql = "INSERT INTO picks (u_id, p_1) VALUES ('$u_id','$s_id0')";
$result = mysql_query ($sql);
}
elseif ($i==1){
echo "i equals one";
printf ("u_id equals %s\n",$u_id);
$sql = "INSERT INTO picks (p_2) VALUES ('$s_id1')WHERE picks.u_id=$u_id";
$result = mysql_query ($sql,$db);
}
---------------
The phppool.picks looks like (with more p_*):
mysql> select u_id,p_1,p_2,p_3 from phppool.picks
-> ;
+------+-----+-----+-----+
| u_id | p_1 | p_2 | p_3 |
+------+-----+-----+-----+
| 1 | 2 | 0 | 0 |
| 2 | 1 | 0 | 0 |
| 3 | 7 | 0 | 0 |
| 4 | 7 | 0 | 0 |
| 0 | 0 | 2 | 0 |
| 5 | 2 | 0 | 0 |
+------+-----+-----+-----+
6 rows in set (0.00 sec)
Any help would be greatly appreciated. I know the code is ugly. I haven't
coded in a few years, and this is my first php program.
Jordan
--- End Message ---
--- Begin Message ---
This was fixed. I needed to use the update statement instead of insert.
Jordan
"Jordan Arendt" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
>
> I'm struggling with some php code. I'm trying to insert some info into a
> mysql DB. I beleive I'm failing on the SQL statement, specifically the
> WHERE syntax. Can anyone help?
> ------------
> bypass = 0 --confirmed
> $i = 0 works and inserts into the DB.
> $i=1 works, but doesn't insert into DB.
>
> -------------
> if ($bypass==0){
> // Add picks: this is ugly!
> if ($i==0){
> echo " i equals zero";
> $sql = "INSERT INTO picks (u_id, p_1) VALUES ('$u_id','$s_id0')";
> $result = mysql_query ($sql);
> }
> elseif ($i==1){
> echo "i equals one";
> printf ("u_id equals %s\n",$u_id);
> $sql = "INSERT INTO picks (p_2) VALUES ('$s_id1')WHERE
picks.u_id=$u_id";
> $result = mysql_query ($sql,$db);
> }
>
> ---------------
>
> The phppool.picks looks like (with more p_*):
>
> mysql> select u_id,p_1,p_2,p_3 from phppool.picks
> -> ;
> +------+-----+-----+-----+
> | u_id | p_1 | p_2 | p_3 |
> +------+-----+-----+-----+
> | 1 | 2 | 0 | 0 |
> | 2 | 1 | 0 | 0 |
> | 3 | 7 | 0 | 0 |
> | 4 | 7 | 0 | 0 |
> | 0 | 0 | 2 | 0 |
> | 5 | 2 | 0 | 0 |
> +------+-----+-----+-----+
> 6 rows in set (0.00 sec)
>
> Any help would be greatly appreciated. I know the code is ugly. I
haven't
> coded in a few years, and this is my first php program.
>
> Jordan
>
>
--- End Message ---
--- Begin Message ---
I am trying to create a script that will allow a user to upload images. For some
reason the server requires both the write and execute properties on the directory to
be set in order for the image to uploaded and displayed. I don't understand why the
execute method needs to be set, since I don't want anyone to be able to run anything
from that directory. Any suggestions would be appreciated. I know the system is
Unix, but I don't know any of the specifics since it is run off of a hosting service.
_______________________________________________________
--- End Message ---
--- Begin Message ---
Hi!
I installed Apache 2.0.28 and tried to install PHP 4.0.6 on it, but it
said it "can't find the php4apache.dll module". (It worked fine on
Apache 1.3.x)
What should I do? Is there a special module for apache 2 and where can I
get it?
_____
Regards,
Alek Andreev
[EMAIL PROTECTED]
Homepage <http://www.neophode.f2s.com/>
ICQ UIN: 46504242
--- End Message ---
--- Begin Message ---
I know this is a php forum, but I am not sure where to go. Anyone know of a
good site on IIS other than Microsoft's junk. I am trying to use directory
security on win2k IIS 5 machine using the NTFS permissions. For some reason
the only account that can get access to view anything page on the site, is
the administrator account. Any ideas??
Ryan Conover
[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.pitt.edu/~rscst25/
--- End Message ---