My entire website is not being displayed on github [closed] - github

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm not sure as to why my entire website is not displaying, i've tried everything that was recommended but still nothing works. My banner image and text is not showing up when I published the website on github.
What my website should look like:
file:///Users/tamannahoque/Documents/Skincare/index.html#products
(if that works)
The code:
https://github.com/TamannaHoque/the-ordinary.github.io
The website when published on github:
https://tamannahoque.github.io/the-ordinary.github.io/

The basic website is being displayed on GitHub; but, your images and other items the website refers to contain links that don't refer to the "GitHub published" locations, so all you are getting is the HTML.

Related

Need help scraping a website in perl [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new into the world of perl and right now I am trying to scrape a webpage. I have done some scraping before and used WWW::Mechanize. The pages that I scraped before were somehow simple, so I took the page source and then extracted the data I needed from there. But now I have a different website that seems to contain frames. http://www.usgbc-illinois.org/membership/directory/
I am not asking for any code, but some ideas or modules I could use to extract data from the website above.
Thank1s
You may find some useful information on this website Web Scraping and also you can take look at this module Web Scraper Module

how to display my website on facebook page [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have added my website on page info but it is not displayed on page.
I have tried viewing it from another profile but it is displaying only description and no link.
You might have just added your website in website tab but there is another and simple method to add your website link after description,You just need to edit description and add your website link at last , that's it now just refresh your page and you will get what you want.

TWiki page to Google Sites [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I've managed to extract the HTML source of a TWiki with its URL and Perl's LWP::Simple module.
What I want to do now is to use that HTML and put into my Google Site as a new page (via a program, NOT manually).
How do i go about doing this using Perl? Any ideas would be highly appreciated.
This question probably will be closed in his current form.
You should read https://developers.google.com/google-apps/sites/docs/1.0/developers_guide_protocol#CreatingContent and ask a specific question, what doesn't works for you.
The basics:
you should auth yourself with oAuth2 protocol to google (search metacpan for oauth2)
and send a POST request to specified URL (read the 1st link).
You probably will need too, at least:
change all URL's in your pages from the TWIKI
change all IMG SRC links

Wrong picture/thumbnail when we paste the link to our post from our blog [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
We run the blog Tracasseur http://www.tracasseur.com and been doing it for 4 years. We have the blog at Blogger. Always when we post the link to our latest post on our Facebook page https://www.facebook.com/tracasseur the right picture from the post has been chosen. But suddenly the other day it has stopped working. Now Facebook only give us the opportunity to choose between 2 pictures that are not included in the post, but they are on the blog in the right column. How can we solve this problem? And why has this problem suddenly occurred, we haven't changed anything?
You need to specify the image to use in your blog's HTML meta tags, see http://developers.facebook.com/docs/opengraphprotocol/
Edit: Looks like your blog is handled by blogger, there are more specific instructions for that here: http://www.bloggerhow.com/2012/07/implement-open-graph-in-blogger-blogs.html

Dynamically generated page URLs don't work this morning [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
This morning dynamically generated links to FB pages from our app stopped working. Link to a page like this http://www.facebook.com/pages/125567350861413 used to work just fine, now it requires page name http://www.facebook.com/pages/Daniels-Real-Estate/125567350861413
Why would this be changed? Was there a problem with old pages link format?
We tweaked our code to take into account page name and made it work. But if a user changes the name of a page the link to this page will break, until we refresh the list of pages in our db. We'll write a chron job that will refresh the list of page names for all users using our app multiple times a day, but we'd prefer not having to do that.
Anyone else ran into this issue? What was your workaround (other than the above)?
While this is probably an off-topic question, you can get the page url using the graph api:
http://graph.facebook.com/125567350861413 and looking at the link property. As to why Facebook changed this, you would have to ask them at their developer group or log a bug.