Open GoogleCodeExporter opened 9 years ago
What is currently using the cache folder? Are you using the same cache folder
for multiple instances of the application?
Original comment by magreenb...@gmail.com
on 20 Nov 2014 at 5:20
I'm not using it with multiple instance, and nothing else should be using the
folder. You can reproduce the problem with the latest cefclient also like this:
% mkdir /tmp/cache_container
% mkdir /tmp/cache_container/cache
% chmod -w /tmp/cache_container
% cefclient.app/Contents/MacOS/cefclient --cache-path /tmp/cache_container/cache
^C
% cefclient.app/Contents/MacOS/cefclient --cache-path /tmp/cache_container/cache
[1030/003652:ERROR:cache_util.cc(132)] Unable to move cache folder
/tmp/cache_container/cache to /tmp/cache_container/old_cache_000
[1030/003652:ERROR:cache_creator.cc(132)] Unable to create cache
Original comment by thomas...@gmail.com
on 21 Nov 2014 at 11:29
@#2: Does it matter if cefclient terminates cleanly versus being killed with ^C?
Original comment by magreenb...@gmail.com
on 21 Nov 2014 at 11:32
During my tests it worked fine when terminating cefclient cleanly.
Original comment by thomas...@gmail.com
on 24 Nov 2014 at 6:04
It's important to shut down the application cleanly. See also
http://magpcss.org/ceforum/viewtopic.php?f=6&t=12357.
Original comment by magreenb...@gmail.com
on 25 Nov 2014 at 5:21
The error message "Unable to move the cache: 5" (E_ACCESS_DENIED) is caused
because CEF cannot access files. Previous launch of application didn't shut
down cleanly. File locks were acquired in cache directory, but they weren't
released due to unexpected termination. I think CEF thinks that files are
corrupt and tries to delete cache directory (by renaming it to old_cache_000),
but it fails due to file locks being held.
Original comment by czarek.t...@gmail.com
on 26 Nov 2014 at 3:53
In my experience, CEF continues to work fine though with the "corrupted" cache
directory.
At the very least, the issue of trying to move the cache directory after SQLite
has already opened the cookies file should be fixed.
Original comment by thomas...@gmail.com
on 28 Nov 2014 at 4:38
CEF is transitioning from Google Code to Bitbucket project hosting. If you
would like to continue receiving notifications on this issue please add
yourself as a Watcher at the new location:
https://bitbucket.org/chromiumembedded/cef/issue/1432
Original comment by magreenb...@gmail.com
on 14 Mar 2015 at 3:35
Original issue reported on code.google.com by
thomas...@gmail.com
on 13 Nov 2014 at 11:41