Web help to Sharepoint site - html

I've some basic project documentation (help).
It is a index page with frames and a lot of html files with images.
To make a better use i want to deploy it on Sharepoint site (with configured search).
Easiest way to do this its a iframe webpart, but it's not a good decision.

Put the help files under _layouts directory.
Use the Page Viewer WebPart to place each of this page in its individual SharePoint pages.
Crawl the SharePoint pages only.

Related

when people go to my website it shows all my files and not the landing page of my website -mclosed

when I go to my website directory it shows all my files and not to my landing page, is there a way to fix this? I have tried everything even looked through the internet without any clear response. I am close to finishing my website I only need to resolve this problem.
Thank you!
The issue seems to be that you are not on the HTML file, but on the folder.
To fix this issue, you have to redirect yourself to the HTML landing page.
/ar/home.html
This should show your HTML landing page correctly rendered.
Tip: Normally, the main page is called index.html by convention. This can be helpful. For example, the Live Server extension on Visual Studio Code will automatically go to index.html if the file isn't specified. Other hosting services, like GitHub Pages, also do the same.
None of the extensions, IDEs and hosting services listed above are sponsored! They are just used for the sole purpose of examples.
In conclusion, you need to go to the HTML file, instead of the folder.

How to host static html page on SharePoint online

We have a simple HTML page with some embedded JS. We used to host the pages with the .aspx extension on the on-premises SharePoint where you can click on the file and it opens like a regular page. When doing so on an online version of SharePoint it turns out that instead of opening a page it downloads it. I tried to use SharePoint designer to point it to the page but no luck, also I tried to embed the page with the embedded plugin on SharePoint but it is very limited in usage (no scripts, no header with the stylesheet, etc).
So the question is how to make an online version of SharePoint to open HTML files as a regular HTML and display its content instead of downloading the pages?
We've found the odd behavior of SharePoint in conjunction with OneDrive.
It turns out that when you upload your HTML files (with changed extension to .aspx) into someone's shared OneDrive or SharePoint folder directly - it will just download the pages.
But if you first upload your files into your own OneDrive and then copy/move the content to the shared folder or SharePoint's folder - it starts to open the page as it would behave in the on-premises version of SharePoint.
So the solution is to upload files directly into your own OneDrive and then copy/move the files to SharePoint's folder.

Finding unused image files from web server

recently I have a task. There are many image files (of format .jpg/.gif) uploaded to a web server. However, actually not all image in the web server is shown on the real web site. Now I want to list out the image files that is not on the web site but in the web server, so I want to find a tool that can generate a list of images of a web site, I have found a firefox extention call Link Gopher which may help to generate all links from a web page, but since the web site has many pages, I must do the task page by page if I use Link Gopher.
As a result, I want to know is there any method that can do the task faster?

Search All Files in a Website

I am working on a project in which I need to find all files in a website. For example my webpage contains index.html and a PDF file.
How others can find out that there is a PDF file in my website domain?
You need a scraper of some sort.
ex) http://scrapy.org/
You can traverse a webpage by their links.
If you think of a page as a node and link as children
you can easily cover all files of that website.
If that specific website shows every link in its pages,
this method is possible, if not then you have to use
other means such as search engine to look through it's indexed pages.

convert my website to a sharepoint site

I am new to sharepoint online 2013.
I have a simple mapping application(webmap with html5/css/js (javascript/jquery) that I would like to move into a sharepoint subsite/master site available to my sharepoint users (that they must be logged in to see)
How do I import the html5, css, and js to sharepoint as set up the page?
It keeps trying to get me to use templates and I am not sure where to put these files for my site. I am using sharepoint online 2013 and sharepoint designer 2013.
Please help Thanks.
The easiest way to get your site up and hosted inside SharePoint would be to rename all your .html files to .aspx and upload the entire thing into a document library including folders with your js and css files.
Your users would need to be logged in to see the pages and you would only need to modify your existing solution to change any .html links in the content to .aspx (I would just write a quick batch file to do this).
You can keep the exact format and structure you currently have so you don't need your supporting css and js to be in the Style Library, they can just be in the same document library in their own folders so your existing relative links will keep working.
You can create normal web part pages/blank pages in "Site Pages" and copy your html design structure.All the scripts,css will need to be uploaded to "style library" of SharePoint site.Below is link to create web part pages using SharePoint designer.
http://office.microsoft.com/en-us/sharepoint-designer-help/create-sharepoint-site-pages-HA101782505.aspx