You are not logged in.
Pages: 1
I kept having the Extension Builder bomb out on me on the last step with a bunch of "failed to open stream" errors. I traced it down to BigTree::makeDirectory().
I dumped out the paths as the function attempts to create directories for the new extension. Line 1394 begins the path with a "/". If I change this line to:
$dir_path = "";
the function works fine. So I'm assuming that the leading slash is really only for Linux systems?
Offline
Sorry for not getting back to you on this earlier! For some reason the forum never emailed me about this post. I'm going to check into this now (currently in WAMP land on other bugs) and will get back to you shortly!
Offline
You're completely right -- the leading slash only mattered for *NIX. I've pushed a commit here to fix this on Windows systems:
https://github.com/bigtreecms/BigTree-C … c700159d25
Thanks for tracking down this bug!
Offline
Pages: 1