Questions tagged [clear-cache]

84 questions
2
votes
2 answers

Webview is not clearing the cache

To clear cache of WebView, I have used webview.getSettings().setAppCacheEnabled(false); webview.clearCache(true); webview.loadUrl("about:blank"); webview.reload() or deleteDatabase("webview.db"); …
eager
  • 597
  • 8
  • 18
2
votes
0 answers

Start menu icons not changing after icon change

I made a program that makes an icon and saves it to a file that is set as the icon of some shortcut files on desktop and start menu in Windows 10. After making a new icon and writing it to that file I used SHChangeNotify(SHCNE_ASSOCCHANGED,…
Vahid
  • 584
  • 2
  • 19
2
votes
1 answer

How to clear cache of NSURLSession when a large file is downloading?

I am using NSURLSession to download a large video file in background. In this iOS application I implemented pause, resume and stop downloading feature. Here is my code : in .h @property (nonatomic, strong) NSURLSessionDownloadTask *downloadTask;…
ajeet sharma
  • 803
  • 10
  • 37
2
votes
3 answers

Reload Document into Google Docs Viewer (Clear Cache)

Google Docs Viewer (http://docs.google.com/viewer) creates a cache of a document after the first viewing. To see what I mean, try the following: Upload file.pdf to your server (i.e., http://example.com). Visit…
Adam
  • 1,744
  • 1
  • 14
  • 34
2
votes
1 answer

How to clean plugin dev cache in Intellij

I have a question about plugin development and IntelliJ. I'm developing a plugin to IntelliJ 12, and I have attached community sources. When I try to run my plugin (which has it own configuration under File → Settings → MyPlugin) and I check if…
loicram
  • 186
  • 2
  • 12
2
votes
2 answers

Symfony2 - Removed FOS User Bundle manually and now cannot clear cache in production mode

I installed FOS Userbundle to learn from it, but decided I didn't need it anymore. I then did the following to remove it. After removing, I ran composer update. removed the bundle from the vendor folder removed from the appKernel removed from the…
2
votes
2 answers

Recover form task killer actions or cache clear

I want my app to recover from task killer actions or cache clearing. Scenario is below; start app press home button kill all apps(or clear cache) start app from recent task After this scenario the app will crash. I observed that if an application…
mkeremkeskin
  • 644
  • 10
  • 27
2
votes
3 answers

android cache my webServise results

I'am making a game and make a website to store the Score Board when I call the webservise the old Score Board appears !!! I tried to open the webServise from the android browser but the browser appears the old Score Board when i "refresh" android…
Osama Abu Qauod
  • 223
  • 1
  • 4
  • 13
2
votes
2 answers

Android Webview's ClearCache is very slow

I am using WebViews in an Android app, and I need to prevent the WebViews from caching. Unfortunately it seems like this seemingly simple goal is nearly impossible to achieve. The solution I have resorted to use is to execute…
craigrs84
  • 3,048
  • 1
  • 27
  • 34
2
votes
2 answers

How to clear cached after I finished saving data?

I'm just new ASP .NET, and I would like to know on how can I clear all the data entries after saving it and redirected to other page? I have tried this on my HTML page,
pampi
  • 517
  • 4
  • 8
1
vote
0 answers

Prevent pre-populate of React Hook Forms

I have a React Hook Form for registration, and every time I visit, the form gets pre-filled with data from the cache. How can I prevent that?
Mike M
  • 4,879
  • 5
  • 38
  • 58
1
vote
1 answer

How to update our website to latest version using JavaScript ? Basically Hard Reload or Clear cache and reload

I have deployed the latest version of my website, but until I do Clear cache and reload, My website is not updating automatically. How can I do this in the code using JavaScript? Thanks in advance. I have tried…
1
vote
2 answers

Difference between GetCacheDir() and button "clear the cache"

I need to programmatically delete all caches of my Xamarin.Forms application called MyXFApp, the same way as the button 'Clear Cache' of the Setting/Apps/MyXFApp/Storage page. I read the Android and Xamarin.Forms official documentations, and used…
1
vote
4 answers

ERROR in EPERM: operation not permitted, open

I have a react application that starts up fine and has been running for some time now however now when I go to make any edits I am met with the following error.... ERROR in EPERM: operation not permitted, open…
Chris Gilbert
  • 43
  • 1
  • 2
  • 5
1
vote
0 answers

Clear cache of Download Manager programmatically in Android

I have an Android app that has a feature of downloading files. After using the app for some time, downloading files not working. I came to know after some research, after a clear cache of download manager of the system, downloading files work…