google-search

Google is ignoring my robots.txt [closed]

不羁岁月 提交于 2019-12-23 19:24:01
问题 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 5 years ago . Here is content of my robots.txt file: User-agent: * Disallow: /images/ Disallow: /upload/ Disallow: /admin/ As you can see, I explicitly disallowed all robots to index the folders images , upload and admin . The problem is that one of my clients sent request for removing the content from the images folder

How to show page title on Google with Angular Precomposition?

淺唱寂寞╮ 提交于 2019-12-23 16:25:19
问题 Based on superluminary response here I've set up an Angular 1 app without Hashbangs and html5Mode(true) and rely on Google to execute javascript. The page is being indexed by Google but dynamic titles and description tags are not. My index.html head is the following: <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <base href="/"> <meta name="author" content="me"> <meta name="robots" content="index,follow"> <title ng-bind="meta.title">Temp

Retrieving an entire website using Google Cache?

白昼怎懂夜的黑 提交于 2019-12-23 07:35:07
问题 There is a site that I want to retrieve from Google Cache that had thousands of pages. Is there any way I can get it back quickly using Google Cache or some other web crawler/archiver? 回答1: You can see what Google (still) knows about a website by using a site restrict: http://www.google.com/search?q=site:[domain] You might also check out the Internet Archive. (In either case, you’d probably want to do some heavy-duty automating to fetch thousands of pages.) 回答2: I created a free service to

Is there a way to prevent Googlebot from indexing certain parts of a page?

霸气de小男生 提交于 2019-12-23 07:27:31
问题 Is it possible to fine-tune directives to Google to such an extent that it will ignore part of a page, yet still index the rest? There are a couple of different issues we've come across which would be helped by this, such as: RSS feed/news ticker-type text on a page displaying content from an external source users entering contact phone etc. details who want them visible on the site but would rather they not be google-able I'm aware that both of the above can be addressed via other techniques

Google sitelink search box [closed]

a 夏天 提交于 2019-12-23 06:20:06
问题 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 last month . We are implementing search box within the search result in Google for our site. We have our own search feature on website, and dont want to use Google custom search. We are following instructions on the following page, but finding it difficult to set it up. Google developer site. I added the following JSON-LD in

Way to Create Keyboard Shortcuts for Google Search Results? [closed]

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-23 06:13:36
问题 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 3 years ago . I was wondering if anybody knows a way to create keyboard shortcuts for google search results. For instance, I'm looking for a way open up the first google search result with the number 1, on my keyboard, and for each successive entry to be opened with the next number. I've

Updated approach to Google search with python

混江龙づ霸主 提交于 2019-12-22 18:16:43
问题 I was trying to use xgoogle but I has not been updated for 3 years and I just keep getting no more than 5 results even if I set 100 results per page. If anyone uses xgoogle without any problem please let me know. Now, since the only available(apparently) wrapper is xgoogle, the option is to use some sort of browser, like mechanize, but that is gonna make the code entirely dependant on google HTML and they might change it a lot. Final option is to use the Custom search API that google offers,

Error with Google search in Python: 503 Service Unavailable

笑着哭i 提交于 2019-12-22 14:54:22
问题 When I try to do in a python console: from google import search urls = search("site:facebook.com inurl:login", stop=20) for url in urls: print(url) In order to search login pages, I obtain an error: urllib.error.HTTPError: HTTP Error 503: Service Unavailable However, if I try to search it in Google manually it works, might google be blocking my query? 回答1: Google does try to prevent "unexpected" queries from going through. In the normal browser UI it would serve a captcha. It will take into

Google's Function Plotter

本小妞迷上赌 提交于 2019-12-22 11:29:40
问题 If you make a search at google.com for a mathematical equation google will in most cases automatically plot it for you. For example, you can type in sin(x)/x or even a comma separated list such as sin(x)/x, cos(x), x to plot multiple functions on the same graph. I know there's other Javascript plotting libraries, and I know that google offers other apis for charting, maps, etc. So does google offer an api or way to embed this math plotter into other sites/applications? I wasn't able to find

Creating a Google search box using HTML form

假如想象 提交于 2019-12-21 17:50:50
问题 So I am trying to insert a search form on my website that will redirect the user with their query to Google Search. I used to be able to do this using: <form role="search" method="get" id="searchform" class="searchform" action="http://www.google.co.uk/search?hl=en-GB&source=hp&q="> <div id="gform"> <label class="screen-reader-text" for="s"></label> <input type="text" value="" name="s" id="s"> <input type="submit" class="btn fa-input" value="" style="font-family: FontAwesome;"> </div> </form>