During installation during the Adjusting feature set phase a full page of errors comes up that I am not sure how to interpret. When I click continue to the error page the installation continues but then the site does not function - looks like no css files load among other problems. Any idea what is causing this? I've done two clean installs now and the same problem.

I am using IIS on W2k8R2, MySQL, PHP v.5.3.17

CommentFileSizeAuthor
Capture_2.JPG162.33 KBjesseplace

Comments

jgraham’s picture

This looks like an issue with your server configuration. It looks like the initiating error is "The file could not be created" does your webserver user have permission to write files to sites/default/files, and/or to the temporary directory?

I'm not familiar with IIS and haven't used windows to host anything in years so I'm sorry I can't help further.

jesseplace’s picture

Tried again with a complete clean install. Just to try I added full permissions for both IUSR and the "Everyone" user to the whole julio directory. No error on installation this time, but after it completes it again appears as though there are no CSS files. Also, errors show up as shown below.

If it is trying to create files within the base "julio" directory it should have full permissions to do so. Is there a temporary directory somewhere else it is trying to access/write to? I was also a little confused by these errors where it says "temporary://"

Warning: file_put_contents(temporary://filAEAA.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAEEA.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAF0A.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAF3A.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAF6A.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAF8A.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAFAA.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filAFE9.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.
Warning: file_put_contents(temporary://filB019.tmp): failed to open stream: "DrupalTemporaryStreamWrapper::stream_open" call failed in file_unmanaged_save_data() (line 1900 of C:\inetpub\julio\includes\file.inc).
The file could not be created.

jgraham’s picture

Sounds like you are experiencing an issue with the temporary directory you could try creating a 'tmp' directory in your files directory.

Perhaps there is some useful info in #1019470: file_directory_temp() fails to set valid temporary directory on Windows?

jesseplace’s picture

Got it. The directory it needed to write to was actually C:\Windows\Temp, not within the julio folder.

By giving IUSR permissions to write to that directory the installation was successful.

Thank you for the helP!