Thanks for the bug reports:
@sean - are you using samba style path names or is the drive mounted
with a drive letter? I found that the trick was that PHP's fopen
sometimes misbehaved with mapped drives on NAS's - PHP and windows FS
stuff can be a bit annoying sometimes, honestly. There's a workaround
in the apps/client/config/app.yml config file to remap itunes paths to
samba style file paths, but for the filesystem, you'll have to use the
samba style path instead of the drive letter.
this:
wf:
watched_folders:
- "//mediabox/music"
or this:
# If your music is predominantly stored on NAS drives on Windows,
please remap the locations
# from the itunes style full paths to the windows style sharing
paths using forward slashes
# only required for itunes scanning
# eg. 'file://localhost/Z:' : '//mediabox/music'
# you may experience some pretty heavy lag over SAMBA, but it'll
work fine
mdl:
mapped_drive_locations:
'file://localhost/Z:' : '//mediabox/music'
make sure to type symfony cc after changing those paths as
configuration files are cached
@maxime - this is the first report I've heard on this one and the code
may have a bug somewhere for SQLite - I'll go look at the tests for
that class you provided and see if I can track down what the trouble
is. At least it's giving you a concrete error in the VM environment,
should make it easy to track down :) - I don't know why the mySQL
version isn't working in the VM though - it worked when the VM
shipped :/.. that sounds weird. sorry for the headaches and I'll get
back to you.
-Rich
On Apr 19, 5:11 am, Maxime Hadjinlian <
maxime.hadjinl...@gmail.com>
wrote: