Drupal 7 cannot install modules

My Drupal 7 instance cannot install new modules via FTP link. The error message that appears is as follows:

Warning: fileowner() [function.fileowner]: stat failed for temporary://upd92FE.tmp in update_manager_local_transfers_allowed() (line 924 of C:\inetpub\wwwroot\drupal\modules\update\update.manager.inc).

My setup is as follows:

Windows 7 Home Premium 64 bit IIS 7.5 + Zend Community Server

+5
source share
4 answers

Ok, found a solution.

For some odd reason, the temp directory was set as follows: alt text

This, of course, will not work. Just change the backslash with a slash and everything will be set =)

+20
source

To solve this problem, just create a new folder named tmpinsites/default/files

+6

////

and update "tmp" in the Temporary Directory And create the tmp folder in the root directory of the project. in parallel with your index.php and .htaccess

Thanks Aj

0
source

This was once a simple permission parameter. In my case, I found that tmp was with 755 instead of 775. Setting this folder to 775 solved my problem.

0
source

All Articles