Questions tagged [offline-web-app]

12 questions
16
votes
1 answer

iPad Home Screen App refreshes on every open

I'm writing a web app for the iPad using HTML5 and SenchaTouch. The app uses cache manifest to function offline. Once it has been added in the home screen and opened without Safari, it will refresh itself every time it is opened, even if just…
9
votes
2 answers

App cache manifest on CDN?

I'm reading through details on HTML5's app cache manifest (especially from this excellent article). I'm curious if this idea would work: We host all of our static resources (scripts, css, fonts, images) on a CDN within a subdomain (e.g.…
mckamey
  • 17,359
  • 16
  • 83
  • 116
6
votes
1 answer

Make ASP.Net (C#) Web App Available Offline

I have been tasked with making my company's Web App available offline. Before I move to the actual development phase, I want to be sure that my current strategy will not turn out to be a bust. I first thought about using html5 app cache but after…
1
vote
2 answers

Preventing HTML5 applicationCache checking event on offline application load

I have an HTML5/jquery mobile web app at http://app.bluedot.mobi. It is used for long distance races to track competitors via SPOT satellite tracking. The issue I have not yet resolved is that when loading the app when no data connection exists,…
DaveH
  • 33
  • 5
1
vote
0 answers

How to get all the page cached using Service worker

During initial loading of the ionic-angular4 app, how to get all pages cached using service worker. I want to cache all the pages during the app initialization
1
vote
2 answers

is it possible to use web view as a html reader (offline)?

i was searching for a way to zoom for both text and picture in my layout. according to some questions web view is a easy way to do it. after a while i found this code for webview: import android.app.Activity; import android.os.Bundle; import…
1
vote
1 answer

What's a valid fallback when caching fails in offline web app?

If the manifest contains files that are either too large or cumulatively too large, or there's a networking issue, caching will fail. Is there a fall back method the code can reliably use to still work? For example, could the page have JavaScript…
Don Rhummy
  • 24,730
  • 42
  • 175
  • 330
0
votes
1 answer

Reading XML file in an offline web application

I'm very very new in HTML and JavaScript development. My goal is to develop a WebWorks Playbook app, but as it is identical to an Offline HTML5 app I ask this: I want to read an XML file using JavaScript. Because it is an Offline application I don't…
VansFannel
  • 45,055
  • 107
  • 359
  • 626
0
votes
1 answer

Offline application shortcut

I have developed an application with HTML5. I want to know how I can make a shortcut/access-point URL icon to access my offline page.
mjunaidkhan
  • 11
  • 1
  • 2
0
votes
1 answer

Chrome on Android is caching my video listed in manifest, but can't play it offline

I've created an offline web app which shows in remote chrome debugging console as correctly caching all the files and it shows that it is correctly offline capable. The video, listed in the manifest shows as downloaded into the cache but when i turn…
Don Rhummy
  • 24,730
  • 42
  • 175
  • 330
0
votes
1 answer

Appcache Obsolete after Refresh Offline

So I understand how a manifest file works and I am getting all the resource I need from the network tab in Chrome's developer console. When I turn off my server and run the webpage offline it works. But after the first refresh the page has the error…
Jack Thor
  • 1,554
  • 4
  • 24
  • 53
-5
votes
1 answer

Data to be inserted in online database of a Website when there is no internet

I am working on an ERP System(Website) developed in php(Laravel).The requirement which i need to implement is that when ever there is no internet but if a user wants to submit data,he/she could do that and when internet comes and website start…