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 code to write to a CSV file from MySQL query

Different versions of PHP - History and evolution of PHP

PHP code to import from CSV file to MySQL

Encrypting files using GnuPG (GPG) via PHP

PHP Warning: Unknown(): Unable to load dynamic library '/usr/local/php4/lib/php/extensions/no-debug ......

Send push notifications using Expo tokens in PHP

Decrypting files using GnuPG (GPG) via PHP

A Basic Example using PHP in AWS (Amazon Web Services)

Count occurrences of a character in a String in PHP

Password must include both numeric and alphabetic characters - Magento

Error: Length parameter must be greater than 0

Reading word by word from a file in PHP

Parent: child process exited with status 3221225477 -- Restarting

Convert a hex string into a 32-bit IEEE 754 float number in PHP

PHP file upload prompts authentication for anonymous users

Latest Articles (in PHP)