Windows compatibility issue: plugin assumes existence of 'tmp' directory, fails if not present · Issue #21 · lepidus/fullJournalTransfer · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The prior existence of a specific root level directory for temporary files is assumed by the code (/tmp for Linux-based systems). Running under Windows, if a (roughly equivalent) directory c:\tmp does not exist, export will fail with the following error message:
PHP Warning: file_put_contents(/tmp/mda.xml): failed to open stream: No such file or directory in C:\Apache24\htdocs\mda\plugins\importexport\fullJournalTransfer\FullJournalImportExportPlugin.inc.php on line 249
A self-help quick fix for this is to create c:\tmp. But it might be generally preferrable to use sys_get_temp_dir() in line 223 of the above script instead of hard coding a path.
The text was updated successfully, but these errors were encountered:
The prior existence of a specific root level directory for temporary files is assumed by the code (
/tmp
for Linux-based systems). Running under Windows, if a (roughly equivalent) directoryc:\tmp
does not exist, export will fail with the following error message:A self-help quick fix for this is to create
c:\tmp
. But it might be generally preferrable to use sys_get_temp_dir() in line 223 of the above script instead of hard coding a path.The text was updated successfully, but these errors were encountered: