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
I tried this out on an exported XML containing 40 files, many of which were of the same name as subdirectories (e.g.
<title>OpenGL Common/API Design</title>
being one page, and
<title>OpenGL Common/API Design/Agenda</title>
being another), and found that the converter didn't seem to be creating any subdirectories beyond the top-level one - where what I would hope to see is API_Design.md and API_Design/Agenda.md. I saw a lot of error messages like:
Creating output directory test
PHP Warning: fopen(test/OpenGL_Common/API_Design/Agenda.md): failed to open stream: No such file or directory in /home/tree/git/vulkan.wiki/tmp/convert.php on line 114
PHP Warning: fwrite() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 115
PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 116
PHP Warning: fopen(test/OpenGL_Common/API_Design/Binding_Model_Issue_Tracking.md): failed to open stream: No such file or directory in /home/tree/git/vulkan.wiki/tmp/convert.php on line 114
PHP Warning: fwrite() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 115
PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 116
If I went through and manually mkdir'ed all the subdirectories it was complaining about (like API_Design above), running the converter again would create files in those subdirectories, but the process had to be manually repeated at every level of the subdirectory hierarchy. Is there any control over this? I'm a complete noob at PHP so can't be much help in diagnosing, unfortunately.
The text was updated successfully, but these errors were encountered:
I tried this out on an exported XML containing 40 files, many of which were of the same name as subdirectories (e.g.
<title>OpenGL Common/API Design</title>
being one page, and
<title>OpenGL Common/API Design/Agenda</title>
being another), and found that the converter didn't seem to be creating any subdirectories beyond the top-level one - where what I would hope to see is API_Design.md and API_Design/Agenda.md. I saw a lot of error messages like:
Creating output directory test
PHP Warning: fopen(test/OpenGL_Common/API_Design/Agenda.md): failed to open stream: No such file or directory in /home/tree/git/vulkan.wiki/tmp/convert.php on line 114
PHP Warning: fwrite() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 115
PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 116
PHP Warning: fopen(test/OpenGL_Common/API_Design/Binding_Model_Issue_Tracking.md): failed to open stream: No such file or directory in /home/tree/git/vulkan.wiki/tmp/convert.php on line 114
PHP Warning: fwrite() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 115
PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /home/tree/git/vulkan.wiki/tmp/convert.php on line 116
If I went through and manually mkdir'ed all the subdirectories it was complaining about (like API_Design above), running the converter again would create files in those subdirectories, but the process had to be manually repeated at every level of the subdirectory hierarchy. Is there any control over this? I'm a complete noob at PHP so can't be much help in diagnosing, unfortunately.
The text was updated successfully, but these errors were encountered: