tingobol / phpdesktop

Automatically exported from code.google.com/p/phpdesktop
0 stars 0 forks source link

Add the temp_dir option to settings.json #70

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
With this setting you may set the temp directory for example to "temp" so that 
this is a local directory located in your application directory. You may also 
set it to "C:\Windows\Temp", but writing to this directory requires 
administrative privileges due to UAC security features.

By default phpdesktop uses the GetTempPath() windows API function to set the 
temp directory environment variables. This sets it to a directory like 
`C:\Users\USER\AppData\Local\Temp\`. But there is some problem with this 
directory, its path may contain unicode characters and php does not support 
unicode paths, it cannot write to a directory if one of the parent directories 
in its path contain unicode characters.

Original issue reported on code.google.com by czarek.t...@gmail.com on 25 Jan 2014 at 9:25

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Done in revision c41bb324143e. The setting is named "cgi_temp_dir".

Original comment by czarek.t...@gmail.com on 25 Jan 2014 at 6:09