Invision Community 5: A video walkthrough creating a custom theme and homepage By Matt Thursday at 04:02 PM
The Old Man Posted February 4 Posted February 4 Just upgraded my localdev test installs for the first time since applying a backup restoration and I'm seeing the following error: Quote Your server does not allow temporary files to be created in the configured temporary directory. To work around this issue please edit the file named constants.php at C:\xxx\htdocs\ips4-dev-theme1 and add following code to it: define( 'TEMP_DIRECTORY', dirname( __FILE__ ) . '/uploads' ); Aside from the workaround via constants, the error doesn't say what the configured temporary directory is called, so I can't check its permissions. Does anyone know which folder it is referring to? Many thanks!
Solution The Old Man Posted February 4 Author Solution Posted February 4 (edited) Aha, I found out from the list of constants that it's referring to the server/Apache tmp folder: Constant - TEMP_DIRECTORY Use - Temp directory to use. By default this will use your servers set temp directory Example value - '/some/full/path/' In my case: "C:\laragon\tmp" or perhaps it means the Windows Temp folder as shown by PHP info in the Environment section: TEMP C:/Windows/Temp TMP C:/Windows/Temp I updated the permissions attributes via Windows on the folder and contents within "C:\laragon\tmp" and after rebooting the PC, it started working fine; the IPS upgrader was able to continue without flagging any more permissions issues. Edited February 4 by The Old Man
Recommended Posts