Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have made an HTML5 App Cache for an mobile chat application, it is working perfect in Desktop browsers, but not working in Android 2.2 default browser and last version of Opera Mobile. What I am doing wrong? Here is my index.appcache located on /www/:

CACHE MANIFEST
# 18-01-13 v1.0
style.css
script2.js
scriptRIndex.js

part of my .htaccess file, located on /

visible

ExpiresActive On
#0 segundos
ExpiresDefault A0

AddType text/cache-manifest .appcache
ExpiresByType text/cache-manifest A0

# 15 dias
ExpiresByType application/javascript M1296000
ExpiresByType application/x-javascript M1296000
ExpiresByType text/javascript M1296000
ExpiresByType text/x-javascript M1296000
ExpiresByType text/css M1296000
# 30 dias
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType application/pdf A2592000
# 90 dias
ExpiresByType image/x-icon A7776000

and the first 3 lines of index.html page, located on /www/:

<!DOCTYPE html>
<html manifest="index.appcache" lang="pt-br">
<head>

What I have to do? Many Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.