Programming Tutorials

PHP file upload with IIS on windows XP/2000 etc

By: [email protected] in PHP Tutorials on 2012-12-05  

For those of you trying to make the upload work with IIS on windows XP/2000/XP Media and alike here is a quick todo.

  1. Once you have created subdirectories "uploads/" in the same directory wher you code is running use the code from oportocala above and to make absolutely sure sure that the file you are trying to right is written under that folder. ( I recomend printing it using echo $uploadfile; )
  2. In windows explorer browse to the upload directory created above and share it. To do that execute the following substeps.
    1. Right click the folder click "sharing and security..."
    2. Check 'Share this folder on the network'
    3. Check 'Allow network users to change my files' ( THIS STEP IS VERY IMPORTANT )
    4. Click 'ok' or 'apply'
  3. you can then go in the IIS to set read and write permissions for it. To do that execute the followin substeps.
    1. Open IIS (Start/Controp Panel (classic View)/ Admistrative tools/Internet Information Service
    2. Browse to your folder (the one we created above)
    3. right click and select properties.
    4. in the Directory tab, make sure, READ, WRITE, AND DIRECTORY BROWSING are checked.
    5. For the security freaks out there, You should also make sure that 'execute permissions:' are set to Script only or lower (DO NOT SET IT TO 'script and executable)'( that is because someone could upload a script to your directory and run it. And, boy, you do not want that to happen).

There U go.






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in PHP )

PHP file upload with IIS on windows XP/2000 etc

while loops in PHP

public, protected, and private Methods in PHP

parent:: AND self:: in PHP

Password must include both numeric and alphabetic characters - Magento

PHP code to write to a CSV file for Microsoft Applications

Warning: session_start(): open .... failed - PHP error

Convert IP address to integer and back to IP address in PHP

Installing PHP with Apache 2.x on HP UX 11i and configuring PHP with Oracle 9i

Cannot load /usr/local/apache/libexec/libphp4.so into server: ld.so.1:......

Setting up PHP in Windows 2003 Server IIS7, and WinXP 64

error: "Service Unavailable" after installing PHP to a Windows XP x64 Pro

Running different websites on different versions of PHP in Windows 2003 & IIS6 platform

Function to return number of digits of an integer in PHP

The Object (compound) Type in PHP

Latest Articles (in PHP)