html5 cache manifest setting up - html

According to the manual I read online, in order to use cache manifest, I need to do the following two steps:
1. I need to add 'AddType text/cache-manifest .manifest' in a .htaccess file.
the question is where can I find .htaccess file?
2. compose a new file called offline(DIY name).manifest.
Question is: where should I put this file? Is it under www file or somewhere else?

If I am right, both files should be in your root of that page. Same place where your HTML file is.

Related

Can't change Apache2 shared folder's file

I'd like to change the page that shows what files I've uploaded. I never found the editable file. Can it be changed at all?? I have read a bunch article about this problem but I haven't found the solution.
I am talking about this page: Index of /--
Here is my shared folder: Location
Change the index file (probably: index.html or index.php) or add one yourself, if it does not exist yet. You can use .htaccess for example, if the directory or files inside should be access protected. You can also redirect the user when he is accessing the directory or a file inside.
The images that you have provided show the fallback display of a directory for apache.

what kind of attribute does '#' represent in Mac OS

I'm using nginx to build a web server. By default, there is a folder named html, which contains an index.html and a 50.html. If we visit localhost, the index.html in the folder html will be shown.
Now I need to create my own folder containing all of my .html files. But when I configure nginx and try to visit them, I always get an 403 error.
For now I'm considering it's the problem of attributes of .html files.
I've found that the attributes of html folder contain an #, whereas my folder doesn't. I want to know what does it mean and how to add such an attribute for my own folder.
The # signifies that the file has extended permissions attributes beyond the standard U/G/O. It could be related to metadata or quarantine functionality. You can view the attributes by using the xattr command:
xattr file.jpg
You can remove the extended attributes like so:
xattr -d file.jpg
https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/xattr.1.html

How to make doxygen copy a folder without changes into generated HTML docs?

I have a folder with bla.html file and some assets (*.png and *.json) it it.
I want doxygen to copy it into HTML documentation root.
How to make it do such thing in doxygen configuration file (not using external script)?
Upon request:
How about (from the documentation / Doxyfile):
HTML_EXTRA_FILES The HTML_EXTRA_FILES tag can be used to specify one
or more extra images or other source files which should be copied to
the HTML output directory. Note that these files will be copied to the
base HTML output directory. Use the $relpath^ marker in the
HTML_HEADER and/or HTML_FOOTER files to load these files. In the
HTML_STYLESHEET file, use the file name only. Also note that the files
will be copied as-is; there are no commands or markers available. This
tag requires that the tag GENERATE_HTML is set to YES.
The full doxygen documentation can be found at : http://doxygen.nl/manual/index.html and the referred part at: http://doxygen.nl/manual/config.html#cfg_html_extra_files

How to change the look of the "Index Of" page

I am creating a site that allows the person to download the file. The way im doing it now is just uploading the files and folders so if the person wanted something they would go to that folder and download it.
If i wanted to style it like add text how would I do that. If it is done with a html file, i have to create a new .html file for every single file on the server.
If you're running apache, you should configure .htaccess files.
check also this : http://adamwhitcroft.com/apaxy/

More than 1 cache manifest file?

Is it possible to use more than one cache manifest file?
Does the html manifest attribute support more than one file?
If it does, how can i do that?
The idea is to include files in the cache list whitout losing the cache of the earlier files. That's because when we change the manifest file, the files in the list are downloaded again.
No, for a given page you can only have 1 cache manifest file.