qid int64 4 8.14M | question stringlengths 20 48.3k | answers list | date stringlengths 10 10 | metadata list | input stringlengths 12 45k | output stringlengths 2 31.8k |
|---|---|---|---|---|---|---|
139,358 | <p>I have done redirection from 301k as well as from the .htaccess file. The thing is redirection is working fine but still can not index my <code>HTTPS</code> page. While going through the google search console, I found the problem. But don't know how to solve it. <img src="https://i.stack.imgur.com/uyb3V.jpg" alt="en... | [
{
"answer_id": 139359,
"author": "Stephen Ostermiller",
"author_id": 14543,
"author_profile": "https://webmasters.stackexchange.com/users/14543",
"pm_score": 2,
"selected": false,
"text": "<p>Using a <code>site:</code> search is not a valid way of checking what is indexed. Google will ... | 2022/05/07 | [
"https://webmasters.stackexchange.com/questions/139358",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/129063/"
] | I have done redirection from 301k as well as from the .htaccess file. The thing is redirection is working fine but still can not index my `HTTPS` page. While going through the google search console, I found the problem. But don't know how to solve it. ... | Using a `site:` search is not a valid way of checking what is indexed. Google will show redirecting URLs in a `site:` search even if they are not indexed (but the redirect target is).
The proper way to check what is indexed is to check the coverage reports in Google search console. You should add "prefix" properties t... |
139,556 | <p>I'm a web developer using Google Analytics. A client asked us to build a fun "personality quiz" with 4 simple questions. At the end of the quiz we'd show a description of their personality with some custom music to go along with their responses. The combinations are 4x4x4x2 = 128 possible outcomes. The cli... | [
{
"answer_id": 139588,
"author": "Mike Ciffone",
"author_id": 122139,
"author_profile": "https://webmasters.stackexchange.com/users/122139",
"pm_score": 2,
"selected": false,
"text": "<p>When you see this it typically means that sampling is being applied. Thresholding is only applied whe... | 2022/06/06 | [
"https://webmasters.stackexchange.com/questions/139556",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/129593/"
] | I'm a web developer using Google Analytics. A client asked us to build a fun "personality quiz" with 4 simple questions. At the end of the quiz we'd show a description of their personality with some custom music to go along with their responses. The combinations are 4x4x4x2 = 128 possible outcomes. The client wanted us... | When you see this it typically means that sampling is being applied. Thresholding is only applied when you're not running default reports (not subject to it), and yours don't seem default.
When running ad hoc reports I've experienced thresholds in the following circumstances:
1. **The sample is too small** (you seem ... |
139,732 | <p>I want these lines from my <code>.htaccess</code> to execute only if the URL is not <code>/wp-admin</code>:</p>
<pre class="lang-sh prettyprint-override"><code>Header add Content-Security-Policy "default-src 'self';"
Header add Content-Security-Policy "script-src 'self';"
</code></pre>
<p>My idea... | [
{
"answer_id": 139733,
"author": "MrWhite",
"author_id": 1243,
"author_profile": "https://webmasters.stackexchange.com/users/1243",
"pm_score": 2,
"selected": false,
"text": "<p>Try something like this instead:</p>\n<pre><code><If "%{THE_REQUEST} !~ m#\\s/wp-admin#">\nHea... | 2022/06/21 | [
"https://webmasters.stackexchange.com/questions/139732",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/129970/"
] | I want these lines from my `.htaccess` to execute only if the URL is not `/wp-admin`:
```sh
Header add Content-Security-Policy "default-src 'self';"
Header add Content-Security-Policy "script-src 'self';"
```
My idea was something like this:
```sh
<If "%{REQUEST_URI} !^/wp-admin">
</If>
<Else>
Header add Content... | I ended up with this solution. I think in my first try my regex was wrong.
```
<If "%{REQUEST_URI} =~ m#^/wp-admin/#">
</If>
<Else>
Header add Content-Security-Policy "style-src 'self'"
Header add Content-Security-Policy "script-src 'self'"
</Else>
``` |
139,768 | <p>I prefer clean URLs... so my internal links lack the <code>.html</code> or <code>.php</code> extension, and I'm omitting the <code>www.</code> subdomain. The links are resolved by <code>.htaccess</code> rules, and the browser shows <code>example.com/my-page</code>. This makes me smile.</p>
<p>For consistency, I ente... | [
{
"answer_id": 139780,
"author": "Malte Landwehr",
"author_id": 129672,
"author_profile": "https://webmasters.stackexchange.com/users/129672",
"pm_score": 1,
"selected": false,
"text": "<p><strong>Best solution: 301 redirect</strong></p>\n<p>Whenever a user or bot opens <code>https://www... | 2022/06/29 | [
"https://webmasters.stackexchange.com/questions/139768",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/129848/"
] | I prefer clean URLs... so my internal links lack the `.html` or `.php` extension, and I'm omitting the `www.` subdomain. The links are resolved by `.htaccess` rules, and the browser shows `example.com/my-page`. This makes me smile.
For consistency, I entered the clean URLs as canonical links and in the sitemap (as `ht... | Here is the solution I came up with after researching for many hours...
```
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)$
RewriteRule (.*) https://%2%{REQUEST_URI} [R=301,NE,QSA]
# 301 exte... |
139,813 | <p>We have a site <a href="https://example.org/forecast/" rel="nofollow noreferrer">https://example.org/forecast/</a> that at the time of writing redirects to a "time-stamped" (<code>/forecast/month-year/</code>) URL, like so: <a href="https://example.org/forecast/june-2022/" rel="nofollow noreferrer">https:/... | [
{
"answer_id": 139814,
"author": "Luis Alberto Barandiaran",
"author_id": 100148,
"author_profile": "https://webmasters.stackexchange.com/users/100148",
"pm_score": 0,
"selected": false,
"text": "<p>I would strongly suggest that you use 301 redirects. The link juice will flow down the re... | 2022/07/05 | [
"https://webmasters.stackexchange.com/questions/139813",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/8369/"
] | We have a site <https://example.org/forecast/> that at the time of writing redirects to a "time-stamped" (`/forecast/month-year/`) URL, like so: <https://example.org/forecast/june-2022/>. Say, in December, we will have a <https://example.org/forecast/december-2022/> edition, etc. We may have three or four editions ever... | Per comments, you would also like <https://example.com/forecast/> to be indexed.
**You are correct about your assessment that neither a 301 or a 302 fits your use case.** Although the 302 resolves the issue of caching, and is a little closer to your use case.
**Luis is correct, the 301 is the redirect that passes the... |
139,825 | <p>I would like to understand whether changing a website's link without refreshing will allow web crawlers to effectively parse my page, and aid in SEO.</p>
<p>I have a website, with a dropdown menu where you are able to toggle between options. In my case, you are able to choose a company from the dropdown provided.</p... | [
{
"answer_id": 139835,
"author": "Mike Ciffone",
"author_id": 122139,
"author_profile": "https://webmasters.stackexchange.com/users/122139",
"pm_score": 1,
"selected": false,
"text": "<p>Using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/History_API\" rel=\"nofollow nor... | 2022/07/06 | [
"https://webmasters.stackexchange.com/questions/139825",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130116/"
] | I would like to understand whether changing a website's link without refreshing will allow web crawlers to effectively parse my page, and aid in SEO.
I have a website, with a dropdown menu where you are able to toggle between options. In my case, you are able to choose a company from the dropdown provided.
I have bri... | Using the [History api](https://developer.mozilla.org/en-US/docs/Web/API/History_API) is the preferred method to create routing between different views of an SPA. It will ensure that link URLs are accessible to Googlebot. I suspect this is true for other search engines as well, but can't say for certain.
Here's an exa... |
139,866 | <p>I have a client whose DNS records have been pointing to Googles MX servers for years, and these MX records are coded into my setup scripts for new DNS setups - however toolbox.googleapps.com was this morning advising the DNS records were incorrect. (I've never looked at this before, so I don't know how long this has... | [
{
"answer_id": 139867,
"author": "Steve",
"author_id": 16250,
"author_profile": "https://webmasters.stackexchange.com/users/16250",
"pm_score": 1,
"selected": false,
"text": "<p>If you do a search for <code>gmail MX records</code> the first result is <a href=\"https://support.google.com/... | 2022/07/12 | [
"https://webmasters.stackexchange.com/questions/139866",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/35196/"
] | I have a client whose DNS records have been pointing to Googles MX servers for years, and these MX records are coded into my setup scripts for new DNS setups - however toolbox.googleapps.com was this morning advising the DNS records were incorrect. (I've never looked at this before, so I don't know how long this has be... | Yes, they harmonised them some 10 years ago if I recall well. The "new" values were already there in 2014:
<https://web.archive.org/web/20140921234242/https://support.google.com/a/answer/174125>
In my experience, it's always worth keeping an eye on changes at Google, for instance by subscribing to their admin newslet... |
139,932 | <p>I have a standalone website dedicated to a particular software brand of a parent development company.</p>
<p>I'm trying to optimize the About us page and schema.org markup so Google would show the Knowledge Panel about the <strong>software brand</strong>.</p>
<p>As numerous guides suggest, in such a case a proper ma... | [
{
"answer_id": 139934,
"author": "Mike Ciffone",
"author_id": 122139,
"author_profile": "https://webmasters.stackexchange.com/users/122139",
"pm_score": 2,
"selected": false,
"text": "<p>I would not nest the Brand inside <code>Corporation</code> on the Brand website. I would use an <code... | 2022/07/20 | [
"https://webmasters.stackexchange.com/questions/139932",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130337/"
] | I have a standalone website dedicated to a particular software brand of a parent development company.
I'm trying to optimize the About us page and schema.org markup so Google would show the Knowledge Panel about the **software brand**.
As numerous guides suggest, in such a case a proper markup type for the About us p... | I would not nest the Brand inside `Corporation` on the Brand website. I would use an `Organization` object, citing the Company as the `parentOrganization`. You can keep the rest as is.
```json
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Brand_name",
"brand":
[
{
... |
139,966 | <p>I have been trying for months now to get Bing to index my personal website, to no avail. I'm not talking about ranking, as I expect it to rank quite low. It is invisible. I don't care about Bing in general but as it's the upstream index for DuckDuckGo this causes discoverability issues. Google has no issue at all wi... | [
{
"answer_id": 139977,
"author": "DisgruntledGoat",
"author_id": 233,
"author_profile": "https://webmasters.stackexchange.com/users/233",
"pm_score": 1,
"selected": false,
"text": "<p>I think you should re-evaluate your robots.txt. You have it set up to block everything, and then selecti... | 2022/07/23 | [
"https://webmasters.stackexchange.com/questions/139966",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/108819/"
] | I have been trying for months now to get Bing to index my personal website, to no avail. I'm not talking about ranking, as I expect it to rank quite low. It is invisible. I don't care about Bing in general but as it's the upstream index for DuckDuckGo this causes discoverability issues. Google has no issue at all with ... | First up, Webmaster Tools is pretty inaccurate. We have a page on there that has been on Bing since the beginning. It claims it was discovered in 2018 (which isn’t true). The error message is identical.
Bing claims that there are description issues and missing H1 tags, yet the page they rank highest for our trade mark... |
139,989 | <p>I have several German project web sites, using different components. Let's say one site uses a social media plugin an the other site doesn't.</p>
<p>Can I use the same, <strong>generalized</strong> data protection policy text for the two sites?
Then I could use a policy generator and just activate all options/sectio... | [
{
"answer_id": 140003,
"author": "termsfeed",
"author_id": 70211,
"author_profile": "https://webmasters.stackexchange.com/users/70211",
"pm_score": 0,
"selected": false,
"text": "<p>Your Privacy Policy should disclose what data you collect and how you use the collected data. As a best pr... | 2022/07/26 | [
"https://webmasters.stackexchange.com/questions/139989",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130445/"
] | I have several German project web sites, using different components. Let's say one site uses a social media plugin an the other site doesn't.
Can I use the same, **generalized** data protection policy text for the two sites?
Then I could use a policy generator and just activate all options/sections?
Or... I am **only... | First of all, we need to understand the **legal structure** in a web page.
Usually you have at least 2 documents:
* Terms of Service (AKA TOS or General Terms or GA or General Agreement)
* Privacy Policy
First: It's a contract
======================
First and foremost: The "Terms of Service" is, in fact, a contract... |
140,104 | <p>I have had a website running for a while and it has a small following. What I wish to do now is password protect some specific files that sit in the root directory. So I'd like the user not to see any username/password request unless they attempt to access one of these files.</p>
<p>On top of that I also want the us... | [
{
"answer_id": 140107,
"author": "MrWhite",
"author_id": 1243,
"author_profile": "https://webmasters.stackexchange.com/users/1243",
"pm_score": 3,
"selected": true,
"text": "<blockquote>\n<p>I read that the htaccess/AuthName text does not get displayed on the login popup on chrome so I n... | 2022/08/11 | [
"https://webmasters.stackexchange.com/questions/140104",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/8390/"
] | I have had a website running for a while and it has a small following. What I wish to do now is password protect some specific files that sit in the root directory. So I'd like the user not to see any username/password request unless they attempt to access one of these files.
On top of that I also want the user to see... | >
> I read that the htaccess/AuthName text does not get displayed on the login popup on chrome so I need an alternative.
>
>
>
The "alternative" is to role your own authentication system (which could still use HTTP Authentication together with your own server-side scripts) - which is beyond the scope of this answe... |
140,116 | <p>Below is the code that I'm using on a .htaccess page in order to get rid of the ".html" at the end of the URL. It works fine on all pages except for one. Would any of the code on that one page be interfering with this code?</p>
<p>If anyone has any advice on how I'd be able to get rid of the ".html&qu... | [
{
"answer_id": 140117,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 1,
"selected": false,
"text": "<p>I have a great deal of certainty that it is all about usability when it comes to fonts.</p>\n<p>There is a easy ... | 2022/08/12 | [
"https://webmasters.stackexchange.com/questions/140116",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130740/"
] | Below is the code that I'm using on a .htaccess page in order to get rid of the ".html" at the end of the URL. It works fine on all pages except for one. Would any of the code on that one page be interfering with this code?
If anyone has any advice on how I'd be able to get rid of the ".html" on the URL using a MAMP s... | I have a great deal of certainty that it is all about usability when it comes to fonts.
There is a easy to overlook usability issue ... that when the font changes its size / space it uses it can cause a reflow page repaint for the above the fold portion of the page. This is read by google as page was not ready to be u... |
140,142 | <p>I have a domain hosted on AWS (<code>www.example.com</code>) and it works fine. I have now a temporary need to route traffic from this domain to a temporary Wix hosted domain (<code>www.example.net</code>). I've tried making a CNAME to simply route from <code>www.example.com</code> to <code>www.example.net</code> (s... | [
{
"answer_id": 140117,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 1,
"selected": false,
"text": "<p>I have a great deal of certainty that it is all about usability when it comes to fonts.</p>\n<p>There is a easy ... | 2022/08/15 | [
"https://webmasters.stackexchange.com/questions/140142",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130780/"
] | I have a domain hosted on AWS (`www.example.com`) and it works fine. I have now a temporary need to route traffic from this domain to a temporary Wix hosted domain (`www.example.net`). I've tried making a CNAME to simply route from `www.example.com` to `www.example.net` (see attached) but it doesn't seem to work. It ju... | I have a great deal of certainty that it is all about usability when it comes to fonts.
There is a easy to overlook usability issue ... that when the font changes its size / space it uses it can cause a reflow page repaint for the above the fold portion of the page. This is read by google as page was not ready to be u... |
140,146 | <p>I am using <strong>Crazy Domains</strong> to host my website. It is controlled by <strong>cpanel</strong>. It is a shared server (for now). I just realized that my login user (effectively <em>root</em> for my part of the server) is also the user that serves the web pages.</p>
<p>I have verified it by running this i... | [
{
"answer_id": 140117,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 1,
"selected": false,
"text": "<p>I have a great deal of certainty that it is all about usability when it comes to fonts.</p>\n<p>There is a easy ... | 2022/08/16 | [
"https://webmasters.stackexchange.com/questions/140146",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/123687/"
] | I am using **Crazy Domains** to host my website. It is controlled by **cpanel**. It is a shared server (for now). I just realized that my login user (effectively *root* for my part of the server) is also the user that serves the web pages.
I have verified it by running this in a php script
```php
echo exec ('whoami... | I have a great deal of certainty that it is all about usability when it comes to fonts.
There is a easy to overlook usability issue ... that when the font changes its size / space it uses it can cause a reflow page repaint for the above the fold portion of the page. This is read by google as page was not ready to be u... |
140,151 | <p>These are my link tags in my index.html (inside the head tag):</p>
<pre><code><link rel="icon" href="./iconePourOnglet.png" type="image/png" />
<link rel="apple-touch-icon" href="./logo192.png" type="image/png" />
<link rel="apple-touch-... | [
{
"answer_id": 140153,
"author": "rifex",
"author_id": 130661,
"author_profile": "https://webmasters.stackexchange.com/users/130661",
"pm_score": 0,
"selected": false,
"text": "<p>Try in the header to add more link to the favicon format .ico perhaps some services are not oriented to png ... | 2022/08/16 | [
"https://webmasters.stackexchange.com/questions/140151",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130793/"
] | These are my link tags in my index.html (inside the head tag):
```
<link rel="icon" href="./iconePourOnglet.png" type="image/png" />
<link rel="apple-touch-icon" href="./logo192.png" type="image/png" />
<link rel="apple-touch-icon-precomposed" href="./logo192.png" type="image/png" />
<link rel="shortcut icon" href="./... | I don't have any issues with any of my 16 sites. Yandex is explicit and likes the first favicon to be at least 32X32. So, all my sites do this. Maybe Google also prefers this. And I would put the size on them - for example
```html
<link rel="icon" type="image/png" href="/img/favicon-32x32.png" sizes="32x32" />
<li... |
140,175 | <p>We have a "Thank You" page that users are redirected to after completing a form submission. Random IP addresses are accessing that page over and over causing our analytics data to be skewed.</p>
<p>Here's a screenshot of our page views for the past 7 days:
<a href="https://i.stack.imgur.com/bWD8q.png" rel=... | [
{
"answer_id": 140179,
"author": "davidgo",
"author_id": 35196,
"author_profile": "https://webmasters.stackexchange.com/users/35196",
"pm_score": 2,
"selected": false,
"text": "<p>You could require viewers to have a REFERER which matches the calling page.</p>\n<p>This would only be a par... | 2022/08/19 | [
"https://webmasters.stackexchange.com/questions/140175",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130357/"
] | We have a "Thank You" page that users are redirected to after completing a form submission. Random IP addresses are accessing that page over and over causing our analytics data to be skewed.
Here's a screenshot of our page views for the past 7 days:
[... | You could require viewers to have a REFERER which matches the calling page.
This would only be a partial solution - you would need to work with your webserver and/or script to filter out the bad results.
If your webserver is Apache, maybe something like the following in your htaccess will do you (untested, and not my... |
140,209 | <p>In Germany, lawyers can legally demand money from people who use <em>dynamic</em> web fonts on their websites, if they do not ask the user for permission. (Because of IP data storage.) I used to have this code on a site</p>
<pre><code><link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&... | [
{
"answer_id": 140211,
"author": "Stephen Ostermiller",
"author_id": 14543,
"author_profile": "https://webmasters.stackexchange.com/users/14543",
"pm_score": 1,
"selected": false,
"text": "<p>You can use the <a href=\"https://google-webfonts-helper.herokuapp.com/fonts\" rel=\"nofollow no... | 2022/08/23 | [
"https://webmasters.stackexchange.com/questions/140209",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/130907/"
] | In Germany, lawyers can legally demand money from people who use *dynamic* web fonts on their websites, if they do not ask the user for permission. (Because of IP data storage.) I used to have this code on a site
```
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic" rel="... | You can use the [Google Webfonts Helper](https://google-webfonts-helper.herokuapp.com/fonts) which bills itself as "A Hassle-Free Way to Self-Host Google Fonts". You will just need to:
1. Select a font
2. Choose the character range and font weights you want to use
3. Copy the generated CSS
4. Download all the font fil... |
140,259 | <p>Our website only shows image URLs with the <code>.jpg</code> file extention. When the <code>.jpg</code> request hits the server, we read the <code>accept</code> header in order to find out the best format for the browser.</p>
<p>For example: if the browser is able to process <code>.avif</code>, the request gets resp... | [
{
"answer_id": 140559,
"author": "Evgeniy",
"author_id": 43910,
"author_profile": "https://webmasters.stackexchange.com/users/43910",
"pm_score": 0,
"selected": false,
"text": "<p>I don't think, it can make a big issue. But according to the <a href=\"https://developers.google.com/search/... | 2022/08/29 | [
"https://webmasters.stackexchange.com/questions/140259",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131007/"
] | Our website only shows image URLs with the `.jpg` file extention. When the `.jpg` request hits the server, we read the `accept` header in order to find out the best format for the browser.
For example: if the browser is able to process `.avif`, the request gets responded by a file with `.jpg` extention but with `conte... | I don't see any known SEO issue, although the usage of header request information may not produce the ideal results -- I'm going to assume you are providing jpg unless you have good reason to believe avif is supported. IE the <https://caniuse.com/avif>?
List item
But when the browser's identity is not specified, migr... |
140,264 | <p>I'm new to WordPress.</p>
<p>I need to build a 3-page site in various languages.</p>
<p>If it was not multilingual I'd use slugs pages (not posts) and publish like these for example:</p>
<pre><code>https://example.com/ # Home, meta lang=en
https://example.com/recomended-books # meta lang=en
h... | [
{
"answer_id": 140269,
"author": "Regan McGregor",
"author_id": 99728,
"author_profile": "https://webmasters.stackexchange.com/users/99728",
"pm_score": 2,
"selected": false,
"text": "<p>This is definitely something you can achieve in WordPress.</p>\n<p>However, you'll need a plugin like... | 2022/08/30 | [
"https://webmasters.stackexchange.com/questions/140264",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/113329/"
] | I'm new to WordPress.
I need to build a 3-page site in various languages.
If it was not multilingual I'd use slugs pages (not posts) and publish like these for example:
```
https://example.com/ # Home, meta lang=en
https://example.com/recomended-books # meta lang=en
https://example.com/do-it-... | This is definitely something you can achieve in WordPress.
However, you'll need a plugin like WPML or Polylang in order to achieve this.
With WPML for example you'll use the install wizard to choose your site's languages and then choose your URL format. When it comes to URL format above, use the **"Different language... |
140,330 | <p>I've seen basic articles online about allowing/disallowing certain subdirectories in <code>robots.txt</code>, but I have a more detailed need than that.</p>
<p>Google search console keeps trying to discover/crawl certain URLs on my site that it shouldn't be doing. It's not a security hazard, but essentially what it'... | [
{
"answer_id": 140364,
"author": "Henry Visotski",
"author_id": 78970,
"author_profile": "https://webmasters.stackexchange.com/users/78970",
"pm_score": 3,
"selected": true,
"text": "<p>The directive would be something like this:</p>\n<pre><code>user-agent: *\ndisallow: /*unnecessaryPage... | 2022/09/09 | [
"https://webmasters.stackexchange.com/questions/140330",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/100254/"
] | I've seen basic articles online about allowing/disallowing certain subdirectories in `robots.txt`, but I have a more detailed need than that.
Google search console keeps trying to discover/crawl certain URLs on my site that it shouldn't be doing. It's not a security hazard, but essentially what it's crawling are compl... | The directive would be something like this:
```
user-agent: *
disallow: /*unnecessaryPage
```
Thus, anything that comes before the phrase "unnecessaryPage" will be included via wildcard. No trailing wildcard: it is optional because it is ignored. Further examples can be found in [Google's documentation](https://deve... |
140,472 | <p>Does it matter if an image and the link that wraps it each have a title attribute with different text?</p>
<pre><code><a class="cboxElement"
title="xxx"
href="yyy"
rel="gallery">
<img src="zzz"
alt="hhh"
title="www" />
<... | [
{
"answer_id": 140474,
"author": "Himanshu Jain",
"author_id": 131506,
"author_profile": "https://webmasters.stackexchange.com/users/131506",
"pm_score": 0,
"selected": false,
"text": "<p>The image title and the alt tag can always be different. In fact it's the alt tag which is important... | 2022/09/24 | [
"https://webmasters.stackexchange.com/questions/140472",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131502/"
] | Does it matter if an image and the link that wraps it each have a title attribute with different text?
```
<a class="cboxElement"
title="xxx"
href="yyy"
rel="gallery">
<img src="zzz"
alt="hhh"
title="www" />
</a>
```
For images I usually write alt tag and title. And for standard links I use title too. Bu... | The code in question should be read as, ***"Link, xxx, Image, hhh"*** the title property should not be read as the alt tag exists and is higher up the chain for ARIA readers. I would say the reading of the source makes perfect sense. But only one title is going to be displayed by the browser unless you have some CSS co... |
140,473 | <p>In e-commerce websites, we want to include product title in the URL for SEO benefit... however the title is not unique so we generally include an id along with the title.</p>
<p>The title is determined by the user, so they may change it to anything they want...</p>
<p>This is exactly the same situation that happens ... | [
{
"answer_id": 140474,
"author": "Himanshu Jain",
"author_id": 131506,
"author_profile": "https://webmasters.stackexchange.com/users/131506",
"pm_score": 0,
"selected": false,
"text": "<p>The image title and the alt tag can always be different. In fact it's the alt tag which is important... | 2022/09/24 | [
"https://webmasters.stackexchange.com/questions/140473",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/101020/"
] | In e-commerce websites, we want to include product title in the URL for SEO benefit... however the title is not unique so we generally include an id along with the title.
The title is determined by the user, so they may change it to anything they want...
This is exactly the same situation that happens in stackoverflo... | The code in question should be read as, ***"Link, xxx, Image, hhh"*** the title property should not be read as the alt tag exists and is higher up the chain for ARIA readers. I would say the reading of the source makes perfect sense. But only one title is going to be displayed by the browser unless you have some CSS co... |
140,512 | <p>I'm working dad's website which is OK but very badly coded. There are many errors like missing opening and closing tags, more brackets than is needed etc.</p>
<p>I know in VS Code offers <code>CTRL + SHIFT + M</code> which shows me current errors in opened current file. The problem is, I have in directory over 600 f... | [
{
"answer_id": 140474,
"author": "Himanshu Jain",
"author_id": 131506,
"author_profile": "https://webmasters.stackexchange.com/users/131506",
"pm_score": 0,
"selected": false,
"text": "<p>The image title and the alt tag can always be different. In fact it's the alt tag which is important... | 2022/09/29 | [
"https://webmasters.stackexchange.com/questions/140512",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131502/"
] | I'm working dad's website which is OK but very badly coded. There are many errors like missing opening and closing tags, more brackets than is needed etc.
I know in VS Code offers `CTRL + SHIFT + M` which shows me current errors in opened current file. The problem is, I have in directory over 600 files. Some files are... | The code in question should be read as, ***"Link, xxx, Image, hhh"*** the title property should not be read as the alt tag exists and is higher up the chain for ARIA readers. I would say the reading of the source makes perfect sense. But only one title is going to be displayed by the browser unless you have some CSS co... |
140,515 | <p>I want Cloudflare WAF to restrict admin section of WordPress site<code>/wp-admin/</code> and allow access to WP admin section from only two countries India & UAE.</p>
<p>For some reason it block traffic from all countries not only to admin section but also to main website such as <code>www.example.com</code>.</p... | [
{
"answer_id": 140533,
"author": "Stephen Ostermiller",
"author_id": 14543,
"author_profile": "https://webmasters.stackexchange.com/users/14543",
"pm_score": 1,
"selected": false,
"text": "<p>I see that you can "Edit expression." I'm not sure how to get their graphical express... | 2022/09/30 | [
"https://webmasters.stackexchange.com/questions/140515",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/15564/"
] | I want Cloudflare WAF to restrict admin section of WordPress site`/wp-admin/` and allow access to WP admin section from only two countries India & UAE.
For some reason it block traffic from all countries not only to admin section but also to main website such as `www.example.com`.
To me below setting should only bloc... | This is the easy way, supported in all cases. Limit Hostname with *equals* `example.com`, URI Path with *contains* `/wp-admin` or `/wp-admin/` (this is shown in the screenshot below), and Country with *is not in* `{ "IN", "AE" }`.
[![A screenshot of Cloudflare's Dashboard showing the implementation of the solution, ex... |
140,523 | <p>What does it mean when a domain has status "clientTransferProhibited" and no other domain status indicated in Whois? An example at the present moment would be "mcknight.us" (this is a current example, but not the one I'm interest in). It seems to be just past the "addPeriod". If it h... | [
{
"answer_id": 140524,
"author": "Rohit Gupta",
"author_id": 123687,
"author_profile": "https://webmasters.stackexchange.com/users/123687",
"pm_score": 0,
"selected": false,
"text": "<p>It seems to be a lock by the Registrar, but it can be removed.</p>\n<blockquote>\n<p>clientTransferPro... | 2022/10/01 | [
"https://webmasters.stackexchange.com/questions/140523",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131615/"
] | What does it mean when a domain has status "clientTransferProhibited" and no other domain status indicated in Whois? An example at the present moment would be "mcknight.us" (this is a current example, but not the one I'm interest in). It seems to be just past the "addPeriod". If it has no "ok" status (as a normally reg... | >
> To clarify my question: What is the difference between a domain having exactly one Domain Status line, that being "clientTransferProhibited", and a domain having exactly two Domain Status lines, those being "clientTransferProhibited" and "ok"?
>
>
>
That shouldn't happen (the second case).
The EPP specificati... |
140,620 | <p>Last time I used regex was to manipulate some BGP routes and it didn't go well. I don't expect anyone to write me a full <code>.htaccess</code> file, but: in which order would you write the lines? Should there be multiple <code>.htaccess</code> files in multiple directories?</p>
<p>There are multiple things I want t... | [
{
"answer_id": 140626,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 3,
"selected": true,
"text": "<p>My answers a little verbose but since the redirects in htaccess are done once and then forgotten about and these ... | 2022/10/13 | [
"https://webmasters.stackexchange.com/questions/140620",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131912/"
] | Last time I used regex was to manipulate some BGP routes and it didn't go well. I don't expect anyone to write me a full `.htaccess` file, but: in which order would you write the lines? Should there be multiple `.htaccess` files in multiple directories?
There are multiple things I want to achieve:
1. Remove `.html` f... | My answers a little verbose but since the redirects in htaccess are done once and then forgotten about and these needed to be in one place ... you got a verbose answer.
The 404 error document does not redirect the browser to the 404 page.
---------------------------------------------------------------------
```
# whe... |
140,633 | <p>In Google Search Console, I noticed a few of my blog posts have started to rank for porn-related queries. When I checked in ahrefs I saw a few hundreds of spammy links to my page through a redirect following this pattern: <code>www.example.com?URL=https://shortener.example/dasdsa</code>. It's confusing because none ... | [
{
"answer_id": 140626,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 3,
"selected": true,
"text": "<p>My answers a little verbose but since the redirects in htaccess are done once and then forgotten about and these ... | 2022/10/14 | [
"https://webmasters.stackexchange.com/questions/140633",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/131028/"
] | In Google Search Console, I noticed a few of my blog posts have started to rank for porn-related queries. When I checked in ahrefs I saw a few hundreds of spammy links to my page through a redirect following this pattern: `www.example.com?URL=https://shortener.example/dasdsa`. It's confusing because none of those links... | My answers a little verbose but since the redirects in htaccess are done once and then forgotten about and these needed to be in one place ... you got a verbose answer.
The 404 error document does not redirect the browser to the 404 page.
---------------------------------------------------------------------
```
# whe... |
140,713 | <p>I would like to use a reverse proxy (NGINX) to redirect traffic from let's call it <code>SUBDOMAIN1.example.com/EXAMPLEPAGE</code> to <code>SUBDOMAIN2.example.com/EXAMPLEPAGE</code></p>
<p>Currently, I rank position 1-2 for most keywords, but the name of the subdomain does not describe the site accurately anymore.</... | [
{
"answer_id": 140721,
"author": "JaRek",
"author_id": 132056,
"author_profile": "https://webmasters.stackexchange.com/users/132056",
"pm_score": -1,
"selected": false,
"text": "<p>Found an article on your question - <a href=\"https://support.zendesk.com/hc/en-us/articles/4408845973914-R... | 2022/10/24 | [
"https://webmasters.stackexchange.com/questions/140713",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/132106/"
] | I would like to use a reverse proxy (NGINX) to redirect traffic from let's call it `SUBDOMAIN1.example.com/EXAMPLEPAGE` to `SUBDOMAIN2.example.com/EXAMPLEPAGE`
Currently, I rank position 1-2 for most keywords, but the name of the subdomain does not describe the site accurately anymore.
My question is simple. If I kee... | If your redirect returns a 301 http response for every URL(mean that your URL rewrite rule is done without errors) your ranking will be moved for the new URLs.(But you won't expect exactly the same rankings for every query and you might see a change). |
140,714 | <p>I've read the answers <a href="https://webmasters.stackexchange.com/a/3514/132105">here</a> and <a href="https://webmasters.stackexchange.com/a/19177/132105">here</a> both saying that Google penalizes for a hidden content</p>
<blockquote>
<p>when it is done for the purposes of manipulating the search engines</p>
</b... | [
{
"answer_id": 140716,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 4,
"selected": true,
"text": "<p>If Lighthouse is warning about dom size that may result in performance issues which can effect the sites rating ... | 2022/10/24 | [
"https://webmasters.stackexchange.com/questions/140714",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/132105/"
] | I've read the answers [here](https://webmasters.stackexchange.com/a/3514/132105) and [here](https://webmasters.stackexchange.com/a/19177/132105) both saying that Google penalizes for a hidden content
>
> when it is done for the purposes of manipulating the search engines
>
>
>
But there are at least two reasons w... | If Lighthouse is warning about dom size that may result in performance issues which can effect the sites rating because of the algo on performance. Can you use a progressive method to get the testimonies via a json request? which allows the page to begin rendering and then updates the page, (fills in the testimonials).... |
140,728 | <p>I have been trying to rank the right landing page for some specific keywords. But the page struggles to rank for the specific keywords. They are only ranking for the home page. The landing page is indexed in google, so got no issues.</p>
<p>Is it a good practice to add internal linking from the target keyword from t... | [
{
"answer_id": 140716,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 4,
"selected": true,
"text": "<p>If Lighthouse is warning about dom size that may result in performance issues which can effect the sites rating ... | 2022/10/25 | [
"https://webmasters.stackexchange.com/questions/140728",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/132137/"
] | I have been trying to rank the right landing page for some specific keywords. But the page struggles to rank for the specific keywords. They are only ranking for the home page. The landing page is indexed in google, so got no issues.
Is it a good practice to add internal linking from the target keyword from the landin... | If Lighthouse is warning about dom size that may result in performance issues which can effect the sites rating because of the algo on performance. Can you use a progressive method to get the testimonies via a json request? which allows the page to begin rendering and then updates the page, (fills in the testimonials).... |
140,745 | <p>Examples for understanding, please tell me by your experience, is it good to use?</p>
<pre><code>Name_of_film - watch online
Name_of_season_2_episode_4 - watch anime
Name_of_book - read
</code></pre>
<p>Like the main aim, what to do and - between them. Some people told me, that any language's symbols is not good for... | [
{
"answer_id": 140778,
"author": "BNazaruk",
"author_id": 73860,
"author_profile": "https://webmasters.stackexchange.com/users/73860",
"pm_score": 2,
"selected": false,
"text": "<p>It should not affect SEO at all if not overused. It's a safe rule to not use any special characters in titl... | 2022/10/27 | [
"https://webmasters.stackexchange.com/questions/140745",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/132075/"
] | Examples for understanding, please tell me by your experience, is it good to use?
```
Name_of_film - watch online
Name_of_season_2_episode_4 - watch anime
Name_of_book - read
```
Like the main aim, what to do and - between them. Some people told me, that any language's symbols is not good for title, but I think, it'... | It should not affect SEO at all if not overused. It's a safe rule to not use any special characters in titles, but dash is very universal and yes, as you indicated, it makes it easier to read, which is important since in vast majority of cases, UX is more important than SEO. |
140,849 | <p>I recently changed registrars and DNS location from Tucows to Cloudflare for one of my domains. During the change, Cloudflare copied my existing DNS records including SPF, DMARC and DKIM keys. The actual email server did not change.</p>
<p>Prior to the DNS/registrar change, emails from the domain worked fine. Now,... | [
{
"answer_id": 140972,
"author": "Kate",
"author_id": 109075,
"author_profile": "https://webmasters.stackexchange.com/users/109075",
"pm_score": 3,
"selected": true,
"text": "<p>The problem could be <strong><a href=\"https://www.webroot.com/us/en/resources/glossary/ip-reputation\" rel=\"... | 2022/11/10 | [
"https://webmasters.stackexchange.com/questions/140849",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/96875/"
] | I recently changed registrars and DNS location from Tucows to Cloudflare for one of my domains. During the change, Cloudflare copied my existing DNS records including SPF, DMARC and DKIM keys. The actual email server did not change.
Prior to the DNS/registrar change, emails from the domain worked fine. Now, after the ... | The problem could be **[IP reputation](https://www.webroot.com/us/en/resources/glossary/ip-reputation)**. The message is rather clear. The specific IP address (209.182.201.150, I assume it's your mail server) is being rejected.
Plus, that IP address is present in at least one **blacklist**, see in Mxtoolbox for exampl... |
141,045 | <p>Can two links to a specific path on the site on the home page be harmful for SEO?</p>
<p>For example:</p>
<pre><code><html>
<body>
...
<main>
<div>
...
<a href="/news">News</a>
</div>
... | [
{
"answer_id": 141048,
"author": "Maniac",
"author_id": 110681,
"author_profile": "https://webmasters.stackexchange.com/users/110681",
"pm_score": 2,
"selected": false,
"text": "<p>No, I don't think there would be any advantages or disadvantages. A link can often be seen that is part of ... | 2022/12/03 | [
"https://webmasters.stackexchange.com/questions/141045",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/132840/"
] | Can two links to a specific path on the site on the home page be harmful for SEO?
For example:
```
<html>
<body>
...
<main>
<div>
...
<a href="/news">News</a>
</div>
</main>
<footer>
<div>
...
... | No, it is not harmful.
Websites can put the same link in both the header and footer to show Google special pages. If you think it adds to the user experience, let it be.
I think this is also an important factor for brand building, mostly corporate websites do this.
Lastly, I've gone through many SEO experts' blogs a... |
141,165 | <p>Is the correct way of defining allow all or disallow all in robots to use <code>Allow: /</code>?</p>
<p>I've seen a variation on this using a <code>*</code> rather than a <code>/</code>.
<code>Allow: *</code></p>
<p>Is the <code>*</code> method valid?</p>
<p>Thanks</p>
| [
{
"answer_id": 141168,
"author": "Reza Ataei",
"author_id": 131970,
"author_profile": "https://webmasters.stackexchange.com/users/131970",
"pm_score": 0,
"selected": false,
"text": "<p>The thing you mah have seen is * in front of user-agent part of robots.txt file.</p>\n<pre><code>User-a... | 2022/12/18 | [
"https://webmasters.stackexchange.com/questions/141165",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/70112/"
] | Is the correct way of defining allow all or disallow all in robots to use `Allow: /`?
I've seen a variation on this using a `*` rather than a `/`.
`Allow: *`
Is the `*` method valid?
Thanks | The correct way to allow everything is to disallow nothing:
```none
User-agent: *
Disallow:
```
See "To allow all robots complete access" on the [official robots.txt website](https://www.robotstxt.org/robotstxt.html).
The `Allow` directive was introduced by Google. It is meant to be an exception to a `Disallow`. Fo... |
141,195 | <p>Both my website's domain name (<a href="https://example.com" rel="nofollow noreferrer">https://example.com</a>) and its IP address (<a href="https://123.456.789.012/" rel="nofollow noreferrer">https://123.456.789.012/</a>) show up in Google search results. I use Let's Encrypt, who don't allow SSL certificates for ba... | [
{
"answer_id": 141196,
"author": "Rohit Gupta",
"author_id": 123687,
"author_profile": "https://webmasters.stackexchange.com/users/123687",
"pm_score": -1,
"selected": false,
"text": "<p>I have only rarely seen IP addresses in Search results. I suspect that either you have internal link... | 2022/12/21 | [
"https://webmasters.stackexchange.com/questions/141195",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/124677/"
] | Both my website's domain name (<https://example.com>) and its IP address (<https://123.456.789.012/>) show up in Google search results. I use Let's Encrypt, who don't allow SSL certificates for bare IP addresses, so I can't get a certificate for the latter. If I understand correctly, this means that I can't set up a re... | **Background**
IP addresses rank from time to time in Google.
This is normally a mixture of a) a miss-configured server that exposes the IP address to Google in the first place and b) a miss-configured website that does not redirect the user and bot back to the correct version.
For Google, the IP is a new host and t... |
141,197 | <p>I have a scenario, where I am doing a site migration but the requirement is to show some message on the new site that "We have moved to a new site".</p>
<p>Here's 2 options I could think of:</p>
<ol>
<li>Add parameter to the new URL i.e. <code>https://old.example/product1 -> 301 -> https://new.exampl... | [
{
"answer_id": 141212,
"author": "Wayne",
"author_id": 7138,
"author_profile": "https://webmasters.stackexchange.com/users/7138",
"pm_score": 2,
"selected": false,
"text": "<p>Nothing is slowing down a google search link to <a href=\"https://new.example/product1\" rel=\"nofollow noreferr... | 2022/12/21 | [
"https://webmasters.stackexchange.com/questions/141197",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/133140/"
] | I have a scenario, where I am doing a site migration but the requirement is to show some message on the new site that "We have moved to a new site".
Here's 2 options I could think of:
1. Add parameter to the new URL i.e. `https://old.example/product1 -> 301 -> https://new.example/product1?migrated`
```
+-------... | Nothing is slowing down a google search link to <https://new.example/product1> which is the one you want to promote in search engines.
The hard limit for browsers is 5 301s. Link shorteners, twitter, or google may use up one of them, and if going from twitter to a link shortener you may lose 2 of them. That gives a bu... |
141,357 | <p>I protect the <code>wp-login.php</code> file via my <code>.htaccess</code> file:</p>
<pre><code><Files wp-login.php>
AuthName "Admin-Bereich"
AuthType Basic
AuthUserFile /*path*/htdocs/.htpasswd
require valid-user
</Files>
</code></pre>
<p>Now when I call my website with <code>/wp-admin/</code>... | [
{
"answer_id": 141358,
"author": "MrWhite",
"author_id": 1243,
"author_profile": "https://webmasters.stackexchange.com/users/1243",
"pm_score": 0,
"selected": false,
"text": "<p>This would happen if a request is made to <code>wp-login.php</code> that is missing the <code>Authorization</c... | 2023/01/13 | [
"https://webmasters.stackexchange.com/questions/141357",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/129447/"
] | I protect the `wp-login.php` file via my `.htaccess` file:
```
<Files wp-login.php>
AuthName "Admin-Bereich"
AuthType Basic
AuthUserFile /*path*/htdocs/.htpasswd
require valid-user
</Files>
```
Now when I call my website with `/wp-admin/`, it asks for username and password which I specified in the `.htpasswd` file. ... | I think the reason can be much simpler than in the discussion and comments: Check that the URL is exactly correct and the same. Sometimes, if you have set a non-www URL in WP but open it with a www, or if you have set the https URL in WP, but request the site without https, the redirect that happens after the first con... |
141,440 | <p>I have a website with trainings, which belong to certain categories. So naturally I'd like to organize my website URLs in this way:</p>
<p><code>example.com/trainings/{category name}/{training name}</code></p>
<p>for example</p>
<pre><code>example.com/trainings/social/how-to-talk-with-employee
example.com/trainings/... | [
{
"answer_id": 141443,
"author": "tillinberlin",
"author_id": 22460,
"author_profile": "https://webmasters.stackexchange.com/users/22460",
"pm_score": 3,
"selected": true,
"text": "<p>I would strongly advise you not to duplicate your content since a) this can be considered bad UX and b) ... | 2023/01/25 | [
"https://webmasters.stackexchange.com/questions/141440",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/133749/"
] | I have a website with trainings, which belong to certain categories. So naturally I'd like to organize my website URLs in this way:
`example.com/trainings/{category name}/{training name}`
for example
```
example.com/trainings/social/how-to-talk-with-employee
example.com/trainings/social/how-to-talk-with-children
exa... | I would strongly advise you not to duplicate your content since a) this can be considered bad UX and b) would most likely be punished by search engines. (Just try a search on "duplicate content" and "SEO" and you will see, what I mean.)
Alternatively, i see three options:
* You decide on a main category for each piec... |
141,447 | <p>I have Nginx setup and successfully serving SSL to example.com using certbot/letsencrypt. But when I try to reverse proxy to a local machine I get <code>NET::ERR_CERT_COMMON_NAME_INVALID</code>. Here's the basic setup</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>role</th>
<th>name<... | [
{
"answer_id": 141449,
"author": "THE JOATMON",
"author_id": 52279,
"author_profile": "https://webmasters.stackexchange.com/users/52279",
"pm_score": 3,
"selected": true,
"text": "<p>I was able to get this to work with a wildcard cert. I generated the cert with certbot using this comman... | 2023/01/26 | [
"https://webmasters.stackexchange.com/questions/141447",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/52279/"
] | I have Nginx setup and successfully serving SSL to example.com using certbot/letsencrypt. But when I try to reverse proxy to a local machine I get `NET::ERR_CERT_COMMON_NAME_INVALID`. Here's the basic setup
| role | name | ip |
| --- | --- | --- |
| Nginx server | example.com | 192.168.1.1 |
| Web server | test01.exam... | I was able to get this to work with a wildcard cert. I generated the cert with certbot using this command:
```
sudo certbot certonly --agree-tos --email emailaddress --manual --preferred-challenges=dns -d *.example.com --server https://acme-v02.api.letsencrypt.org/directory
```
I then added `ssl_certificate` and `ss... |
141,485 | <p>How do I tell search engine crawlers not to check a checkbox when indexing my site? I want to do something like this:</p>
<pre><code><input type="checkbox" rel="nofollow" />
</code></pre>
<p>, but the rel attribute is not listed in the list of attributes here: <a href="https://developer.mo... | [
{
"answer_id": 141471,
"author": "Peter206",
"author_id": 133549,
"author_profile": "https://webmasters.stackexchange.com/users/133549",
"pm_score": 2,
"selected": false,
"text": "<p>Ideally at the same time when you have the .htaccess file with the 301 redirects in place:</p>\n<p>You wa... | 2023/01/30 | [
"https://webmasters.stackexchange.com/questions/141485",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/83279/"
] | How do I tell search engine crawlers not to check a checkbox when indexing my site? I want to do something like this:
```
<input type="checkbox" rel="nofollow" />
```
, but the rel attribute is not listed in the list of attributes here: <https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input>, which makes s... | Ideally at the same time when you have the .htaccess file with the 301 redirects in place:
You want to have to correct / desired / new URL in your sitemap and in the Google Search Console.
The old files should no longer matter because they are effectively invisible to the outside world, provided that there are no erro... |
141,522 | <p>I have created a website (still under development).</p>
<p>While I am directing to a PDF link in the mobile browser it is automatically being downloaded instead of opening in a new window like desktop browser.</p>
<p>How to make it open like desktop browser instead of automatic download?</p>
| [
{
"answer_id": 141523,
"author": "Rohit Gupta",
"author_id": 123687,
"author_profile": "https://webmasters.stackexchange.com/users/123687",
"pm_score": 2,
"selected": false,
"text": "<p>This is by design. Each app does one such function.I dont think its possible.</p>\n<p>There is nothing... | 2023/02/03 | [
"https://webmasters.stackexchange.com/questions/141522",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/133920/"
] | I have created a website (still under development).
While I am directing to a PDF link in the mobile browser it is automatically being downloaded instead of opening in a new window like desktop browser.
How to make it open like desktop browser instead of automatic download? | [buxik](https://stackoverflow.com/users/3180233/buxik)'s answer from [How to display a PDF via Android web browser without "downloading" first](https://stackoverflow.com/questions/7437602/how-to-display-a-pdf-via-android-web-browser-without-downloading-first) looks like a good solution:
>
> You can open a file PDF in... |
141,540 | <p>I ran my website on Google's PageSpeed Insight and one of the following errors that I got was:</p>
<blockquote>
<p>Ensure text remains visible during webfont load</p>
</blockquote>
<p>When I expanded this, in one fo the lines below this line was:</p>
<pre><code><link href='https://stackpath.bootstrapcdn.com/font-... | [
{
"answer_id": 141541,
"author": "grg",
"author_id": 43638,
"author_profile": "https://webmasters.stackexchange.com/users/43638",
"pm_score": 4,
"selected": true,
"text": "<p>The stylesheet loads Font Awesome.</p>\n<blockquote>\n<p>Font Awesome is a font and icon toolkit based on CSS and... | 2023/02/06 | [
"https://webmasters.stackexchange.com/questions/141540",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/133500/"
] | I ran my website on Google's PageSpeed Insight and one of the following errors that I got was:
>
> Ensure text remains visible during webfont load
>
>
>
When I expanded this, in one fo the lines below this line was:
```
<link href='https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' r... | The stylesheet loads Font Awesome.
>
> Font Awesome is a font and icon toolkit based on CSS and Less.
>
>
>
<https://en.m.wikipedia.org/wiki/Font_Awesome>
If you don’t use these icons, don’t waste time and resources loading the stylesheet.
Pagespeed Insights is telling you that the text (in this case icons) are... |
141,579 | <p>I use the <a href="https://getpelican.com/" rel="nofollow noreferrer">Pelican</a> static site generator with <a href="https://github.com/arulrajnet/attila" rel="nofollow noreferrer">Attila</a> which automatically creates a page for each of my <a href="https://john.soban.ski/categories.html" rel="nofollow noreferrer"... | [
{
"answer_id": 141541,
"author": "grg",
"author_id": 43638,
"author_profile": "https://webmasters.stackexchange.com/users/43638",
"pm_score": 4,
"selected": true,
"text": "<p>The stylesheet loads Font Awesome.</p>\n<blockquote>\n<p>Font Awesome is a font and icon toolkit based on CSS and... | 2023/02/12 | [
"https://webmasters.stackexchange.com/questions/141579",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/134086/"
] | I use the [Pelican](https://getpelican.com/) static site generator with [Attila](https://github.com/arulrajnet/attila) which automatically creates a page for each of my [categories](https://john.soban.ski/categories.html).
The default configuration for Attila created category URLs - and canonicals, for each category w... | The stylesheet loads Font Awesome.
>
> Font Awesome is a font and icon toolkit based on CSS and Less.
>
>
>
<https://en.m.wikipedia.org/wiki/Font_Awesome>
If you don’t use these icons, don’t waste time and resources loading the stylesheet.
Pagespeed Insights is telling you that the text (in this case icons) are... |
141,580 | <p>Bingbot is making these bogus requests to resources that has never been a thing on our domain. We see the same behavior in client domains leading us to the conclusion this is not an inheritage from a previous domain owner, but simply bogus. No other crawlers are doing this.</p>
<p>Does anyone know why Bingbot is doi... | [
{
"answer_id": 141581,
"author": "davidgo",
"author_id": 35196,
"author_profile": "https://webmasters.stackexchange.com/users/35196",
"pm_score": 2,
"selected": false,
"text": "<p>A 404 would be the conventional response and technically correct one but a 410 would be better as its consid... | 2023/02/12 | [
"https://webmasters.stackexchange.com/questions/141580",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/112115/"
] | Bingbot is making these bogus requests to resources that has never been a thing on our domain. We see the same behavior in client domains leading us to the conclusion this is not an inheritage from a previous domain owner, but simply bogus. No other crawlers are doing this.
Does anyone know why Bingbot is doing this? ... | A 404 would be the conventional response and technically correct one but a 410 would be better as its considered permanent - unlike 404 - and tells the search engine it should be removed from its engine.
A 418 is only suitable for use on February 30-31, except for testing. Configuration and testing of 418 should only ... |
141,627 | <p>I want to add Google Analytics and Google Ads tags to my website:</p>
<p>This is for Google Analytics:</p>
<pre><code><script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxxx-x"></script>
<script type="text/javascript">
window.dataLayer = window.dataLayer |... | [
{
"answer_id": 141581,
"author": "davidgo",
"author_id": 35196,
"author_profile": "https://webmasters.stackexchange.com/users/35196",
"pm_score": 2,
"selected": false,
"text": "<p>A 404 would be the conventional response and technically correct one but a 410 would be better as its consid... | 2023/02/15 | [
"https://webmasters.stackexchange.com/questions/141627",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/101020/"
] | I want to add Google Analytics and Google Ads tags to my website:
This is for Google Analytics:
```
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxxx-x"></script>
<script type="text/javascript">
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
... | A 404 would be the conventional response and technically correct one but a 410 would be better as its considered permanent - unlike 404 - and tells the search engine it should be removed from its engine.
A 418 is only suitable for use on February 30-31, except for testing. Configuration and testing of 418 should only ... |
141,725 | <p>I only have a web hosting solution which doesn't include a server config access, this is a mutualized solution.</p>
<p>I would like to try to allow users to access my website only if they have the expected login/password credentials, by using a <code>.htaccess</code> file and a <code>.htpasswd</code> file. However, ... | [
{
"answer_id": 141734,
"author": "Rohit Gupta",
"author_id": 123687,
"author_profile": "https://webmasters.stackexchange.com/users/123687",
"pm_score": 2,
"selected": false,
"text": "<p>The path for the password file has to be based on your user home directory, not the website url. So s... | 2023/02/28 | [
"https://webmasters.stackexchange.com/questions/141725",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/134354/"
] | I only have a web hosting solution which doesn't include a server config access, this is a mutualized solution.
I would like to try to allow users to access my website only if they have the expected login/password credentials, by using a `.htaccess` file and a `.htpasswd` file. However, without access to the Apache co... | The path for the password file has to be based on your user home directory, not the website url. So something like this (assuming that your website folder is called **public\_html**.
```
AuthName "Protected <foldername>"
AuthType Basic
AuthUserFile /public_html/.htpasswd
Require valid-user
```
But thats a dangerous ... |
214 | <p>I can't find a forward button in IE. It is very frustrating when I am filling some form on the page and accidentally touch the back button and the page with the filled form is gone. There is no way to get back to page with the form (which is the classic function of the forward button in browsers).</p>
<p>Any advice... | [
{
"answer_id": 216,
"author": "Doug T.",
"author_id": 117,
"author_profile": "https://windowsphone.stackexchange.com/users/117",
"pm_score": 4,
"selected": false,
"text": "<p>On my Mango, MS seems to have replaced \"Forward\" in IE with \"Recent\". The \"Recent\" option in the menu keeps... | 2012/04/27 | [
"https://windowsphone.stackexchange.com/questions/214",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/86/"
] | I can't find a forward button in IE. It is very frustrating when I am filling some form on the page and accidentally touch the back button and the page with the filled form is gone. There is no way to get back to page with the form (which is the classic function of the forward button in browsers).
Any advice (other th... | A workaround is to make a JavaScript [bookmarklet](http://en.wikipedia.org/wiki/Bookmarklet) in your Favourites.
Name it `.Forward` (with a dot in front), so that it is always at the top of your Favourites list.
```
javascript:history.forward()
``` |
257 | <p>I started off with a Samsung Focus, and recently moved to a Lumia 900. I would now like to sell my Focus.</p>
<p>How should I go about making sure that the phone has been properly erased of all personal information so that the purchaser isn't able to get anything off the phone, like Contact info, etc?</p>
| [
{
"answer_id": 258,
"author": "balexandre",
"author_id": 88,
"author_profile": "https://windowsphone.stackexchange.com/users/88",
"pm_score": 5,
"selected": true,
"text": "<p>Use the reset option of the phone.</p>\n\n<p>It can be found on:</p>\n\n<pre><code>Settings > About > Reset... | 2012/04/30 | [
"https://windowsphone.stackexchange.com/questions/257",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/154/"
] | I started off with a Samsung Focus, and recently moved to a Lumia 900. I would now like to sell my Focus.
How should I go about making sure that the phone has been properly erased of all personal information so that the purchaser isn't able to get anything off the phone, like Contact info, etc? | Use the reset option of the phone.
It can be found on:
```
Settings > About > Reset your phone
```

As it says on the image, it will make the phone as you have found it on the first ON. It will not only delete all apps and photos, but **will delet... |
874 | <p>Till recently when I pressed search button search menu appeared. But now when I click it IE opens with bing. How to change to old behaviour?</p>
<p><strong>EDIT:</strong>
I've noticed if I go to settings > search I have disabled checkbox for "Get suggestions from Bing as I type"</p>
| [
{
"answer_id": 875,
"author": "Community",
"author_id": -1,
"author_profile": "https://windowsphone.stackexchange.com/users/-1",
"pm_score": 2,
"selected": false,
"text": "<p>Before the Mango update, each application could have the search button do whatever it wanted. Mango changed that,... | 2012/08/17 | [
"https://windowsphone.stackexchange.com/questions/874",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/87/"
] | Till recently when I pressed search button search menu appeared. But now when I click it IE opens with bing. How to change to old behaviour?
**EDIT:**
I've noticed if I go to settings > search I have disabled checkbox for "Get suggestions from Bing as I type" | What you experience is probably that you have changed the browser and search language
```
Settingsv -> region+language -> Browser & search language
```
Set it to English(United Kingdom) for example and then you won't see bing be opened in IE but "as an app" |
1,676 | <p>I have a new Windows Phone using a new Microsoft Account:</p>
<ul>
<li>How do I transfer my contacts stored in the cloud to my new phone? (more specifically, these are phone number associated with a Facebook account)</li>
<li>If I can't do this, can I at least <em>access</em> these phone numbers without using my ol... | [
{
"answer_id": 1677,
"author": "AndreaCi",
"author_id": 343,
"author_profile": "https://windowsphone.stackexchange.com/users/343",
"pm_score": 0,
"selected": false,
"text": "<p>If all your contacts are stored in your MS account, just login (in the phone settings > account) with your Live... | 2013/03/20 | [
"https://windowsphone.stackexchange.com/questions/1676",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/1188/"
] | I have a new Windows Phone using a new Microsoft Account:
* How do I transfer my contacts stored in the cloud to my new phone? (more specifically, these are phone number associated with a Facebook account)
* If I can't do this, can I at least *access* these phone numbers without using my old phone?
[This article](htt... | Your best bet is to export from your old Microsoft account and the import that data into the new account. To do this, start at the bottom of [my answer here](https://windowsphone.stackexchange.com/a/1668/1155), and then go to the top and work your way down.
If they are associated only with Facebook, simply go to
```... |
1,963 | <p>Is there a way to temporarily switch the language (or really just the keyboard) for my phone to Japanese? I'm learning Japanese and wanted to practice on my phone.</p>
| [
{
"answer_id": 1964,
"author": "Michael Brown",
"author_id": 178,
"author_profile": "https://windowsphone.stackexchange.com/users/178",
"pm_score": 2,
"selected": false,
"text": "<p>Found the <a href=\"https://windowsphone.stackexchange.com/questions/420/what-is-the-enu-keyboard-setting\... | 2013/06/05 | [
"https://windowsphone.stackexchange.com/questions/1963",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/178/"
] | Is there a way to temporarily switch the language (or really just the keyboard) for my phone to Japanese? I'm learning Japanese and wanted to practice on my phone. | On WindowsPhone.com, there is a pretty good [tutorial](http://www.windowsphone.com/en-us/how-to/wp7/basics/change-keyboard-language) on this.
```
1. On Start, flick left to the App list, then tap Settings > Keyboard.
2. Select all the languages you'd like to be able to use from your keyboard.
The next time you us... |
2,039 | <p>Rather than buy a dash camera I was wondering if my Nokia Lumia can substitute for one. It's an 820 so it can take an SD card, I've got a 32gb one to already in, and I've set new video to be recorded onto the card. I also have a windscreen mount.</p>
<p>How much video am I likely to be able to record with the phone... | [
{
"answer_id": 2128,
"author": "karancan",
"author_id": 1199,
"author_profile": "https://windowsphone.stackexchange.com/users/1199",
"pm_score": 2,
"selected": false,
"text": "<p>I don't own a Lumia 820 but this calculation shown be a good guide for how much time you can record.</p>\n\n<... | 2013/07/03 | [
"https://windowsphone.stackexchange.com/questions/2039",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/-1/"
] | Rather than buy a dash camera I was wondering if my Nokia Lumia can substitute for one. It's an 820 so it can take an SD card, I've got a 32gb one to already in, and I've set new video to be recorded onto the card. I also have a windscreen mount.
How much video am I likely to be able to record with the phone on the st... | I don't own a Lumia 820 but this calculation shown be a good guide for how much time you can record.
According to the [Lumia 820 specs on the Nokia website](http://www.nokia.com/global/products/phone/lumia820/specifications/#), the main camera records at `1080p` with a frame rate of `30 fps`. I assume these are the "s... |
2,413 | <p>I am having difficulties with the spell checker / auto correct on Windows Phone 8 on my Lumia 920. In my language, Belgian Dutch, there is a colloquial pronoun "ge". For instance, you would say "You should go there" = "Ge moet daarnaartoe gaan". So, "ge" is <em>not</em> standard language. It's more a dialect and sub... | [
{
"answer_id": 2414,
"author": "caschw",
"author_id": 457,
"author_profile": "https://windowsphone.stackexchange.com/users/457",
"pm_score": 0,
"selected": false,
"text": "<p>If the auto-correct changes the word on you, you can tap the changed word to get your original word back. I do no... | 2013/10/03 | [
"https://windowsphone.stackexchange.com/questions/2413",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/1974/"
] | I am having difficulties with the spell checker / auto correct on Windows Phone 8 on my Lumia 920. In my language, Belgian Dutch, there is a colloquial pronoun "ge". For instance, you would say "You should go there" = "Ge moet daarnaartoe gaan". So, "ge" is *not* standard language. It's more a dialect and subsequently ... | Go to:
```
Settings -> Keyboard -> Dutch
```
Uncheck `Correct misspelled words`, then go to any text box, type "ge", tap on it and click `+`. Now try it this way. You can also revert the settings and see if it still shows the newly added word or not. |
2,452 | <p>I got my Lumia 720 replaced from Nokia. But, on restore of the app list, it did not restore any of my previously installed apps.</p>
<p>So, I was trying to install each of these again from <a href="https://www.windowsphone.com/en-us/my/purchase-history" rel="nofollow">https://www.windowsphone.com/en-us/my/purchase-... | [
{
"answer_id": 2461,
"author": "Neil Turner",
"author_id": 1198,
"author_profile": "https://windowsphone.stackexchange.com/users/1198",
"pm_score": 2,
"selected": false,
"text": "<p>Although there may not be a definitive fix, there are a few things you can try:</p>\n\n<ol>\n<li>Visit <a ... | 2013/10/13 | [
"https://windowsphone.stackexchange.com/questions/2452",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/741/"
] | I got my Lumia 720 replaced from Nokia. But, on restore of the app list, it did not restore any of my previously installed apps.
So, I was trying to install each of these again from <https://www.windowsphone.com/en-us/my/purchase-history> and <https://www.windowsphone.com/en-in/my/purchase-history>. But, on each and e... | Although there may not be a definitive fix, there are a few things you can try:
1. Visit [WindowsPhone.com](http://www.windowsphone.com/) and login.
2. Make sure your phone is listed (top right drop down menu). If you've recently received a replacement phone, make sure the old phone has been removed and the new one is... |
2,544 | <p>Yesterday I bought a Nokia Lumia 520. </p>
<p>How do I set a song as ringtone in this device?</p>
<p>Steps that I followed:
1. Setting -> Ringtones+Sounds </p>
<p>Inside this setting, there is no option for to custom choose our favorite song as ringtone. </p>
<p>I searched previous questions that all are talking... | [
{
"answer_id": 2545,
"author": "caschw",
"author_id": 457,
"author_profile": "https://windowsphone.stackexchange.com/users/457",
"pm_score": 4,
"selected": true,
"text": "<p>There are several restrictions that ringtones have on them and as such, you cannot just set any mp3 (or song). Eve... | 2013/11/01 | [
"https://windowsphone.stackexchange.com/questions/2544",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/1871/"
] | Yesterday I bought a Nokia Lumia 520.
How do I set a song as ringtone in this device?
Steps that I followed:
1. Setting -> Ringtones+Sounds
Inside this setting, there is no option for to custom choose our favorite song as ringtone.
I searched previous questions that all are talking about windows phone 7 and i di... | There are several restrictions that ringtones have on them and as such, you cannot just set any mp3 (or song). Even if you have one that meets the requirements as a ringtone, you also cannot add a ringtone straight from your music library.
```
If you can play a sound file on your phone, if it isn't protected
with dig... |
2,575 | <p>Contact numbers saved as 'other' on outlook will not sync with my Nokia Lumia 900.
I have 2000+ contacts generated over 10+ years and saved via various mobile devices over the years. These have been saved as 'other' on Outlook and whilst the contact name is syncing the number filed on the phone remains blank.
Is the... | [
{
"answer_id": 2576,
"author": "starkey01",
"author_id": 2186,
"author_profile": "https://windowsphone.stackexchange.com/users/2186",
"pm_score": 0,
"selected": false,
"text": "<p>Unfortunately I do not have Outlook on my computer but I think I have an idea, although a little tedious. </... | 2013/11/06 | [
"https://windowsphone.stackexchange.com/questions/2575",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/2185/"
] | Contact numbers saved as 'other' on outlook will not sync with my Nokia Lumia 900.
I have 2000+ contacts generated over 10+ years and saved via various mobile devices over the years. These have been saved as 'other' on Outlook and whilst the contact name is syncing the number filed on the phone remains blank.
Is there ... | I'd think the best option would be to move the Phone number out of other. Open powershell and run the following code
```
$outlook = new-object -com outlook.application
$contacts = $outlook.Session.GetDefaultFolder(10)
$contacts.Items | % { if($_.MobileTelephoneNumber -eq "") { $_.MobileTelephoneNumber = $_.OtherTeleph... |
2,862 | <p>I'm using Windows Phone 8 and downloaded songs via Xbox Music app. If I disable data connection while listing to the music, it'll give me this error message.</p>
<pre><code>Sorry we can't play this file on your phone.
Error code 80072f30
</code></pre>
<p>Why does it require data connection to play the music after... | [
{
"answer_id": 2875,
"author": "air-dex",
"author_id": 3518,
"author_profile": "https://windowsphone.stackexchange.com/users/3518",
"pm_score": 0,
"selected": false,
"text": "<p>Xbox Music is a streaming service, just like Spotify, Grooveshark or Deezer. Consequently if you disable the d... | 2013/12/23 | [
"https://windowsphone.stackexchange.com/questions/2862",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/385/"
] | I'm using Windows Phone 8 and downloaded songs via Xbox Music app. If I disable data connection while listing to the music, it'll give me this error message.
```
Sorry we can't play this file on your phone.
Error code 80072f30
```
Why does it require data connection to play the music after I've downloaded the music... | If you *download* a song through XBox Music (without actually *buying* it), the app requires a data connection to validate your license to play the song. This is commonly referred to as Digital Rights Management, or DRM for short.
If you *buy* the song or album, you can move the file to any other device to play it, an... |
3,089 | <p>I try to update my phone yesterday, but after download i get the following message:</p>
<pre><code>The update was downloaded, but couldn't be opened. (8018830f)
</code></pre>
<p>My phone is Nokia Lumia 920, i have ~20GB free space. I don't wanna rush with reset. Is someone else experience the same problem? Any ide... | [
{
"answer_id": 3090,
"author": "iamkrillin",
"author_id": 3739,
"author_profile": "https://windowsphone.stackexchange.com/users/3739",
"pm_score": 1,
"selected": false,
"text": "<p>Seems like this is a common problem, however, there does not appear to be a (reliable) fix available. Some... | 2014/01/29 | [
"https://windowsphone.stackexchange.com/questions/3089",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/1147/"
] | I try to update my phone yesterday, but after download i get the following message:
```
The update was downloaded, but couldn't be opened. (8018830f)
```
My phone is Nokia Lumia 920, i have ~20GB free space. I don't wanna rush with reset. Is someone else experience the same problem? Any ideas why? | Updated date & time.
That fixed my issue. |
3,999 | <p>I'm finding sending SMS with my new Lumia 1020 is a massive pain in the backside. Compared to my old Lumia 610 running WP 7.5/7.8 it's just plain terrible:</p>
<ul>
<li>If I type "i " it does not capitalise to "I "</li>
<li>"im" automatically changes to "I'm" but "id" and "ill" do not suggest "I'd" and "I'll" as op... | [
{
"answer_id": 4000,
"author": "vaibhav",
"author_id": 6264,
"author_profile": "https://windowsphone.stackexchange.com/users/6264",
"pm_score": 2,
"selected": false,
"text": "<p>Relax there is nothing wrong with your Windows 8.0/8.1</p>\n\n<pre><code>Your are missing out on a few setting... | 2014/05/28 | [
"https://windowsphone.stackexchange.com/questions/3999",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/1256/"
] | I'm finding sending SMS with my new Lumia 1020 is a massive pain in the backside. Compared to my old Lumia 610 running WP 7.5/7.8 it's just plain terrible:
* If I type "i " it does not capitalise to "I "
* "im" automatically changes to "I'm" but "id" and "ill" do not suggest "I'd" and "I'll" as options at all, they di... | Relax there is nothing wrong with your Windows 8.0/8.1
```
Your are missing out on a few settings.
```
To capitalize your "i" go to **settings->keyboard->English**(*your preferred language*) and check-on the **correct misspelled** words on. This will let type much more smoothly.
And once you have checked on you co... |
5,416 | <p>One of the new features of WP 8.1 is shape writing, where I swipe over the keyboard instead of tapping every key individually.</p>
<p>When I try to input a URL using shape writing, let's say:</p>
<pre><code>windowsphone.com
</code></pre>
<p>I try to input <code>windows</code>, then <code>phone</code>, then I pres... | [
{
"answer_id": 5462,
"author": "David d C e Freitas",
"author_id": 660,
"author_profile": "https://windowsphone.stackexchange.com/users/660",
"pm_score": 2,
"selected": false,
"text": "<p>I found this article that details how to do it, but only on Windows Phone 7 and it doesn't apply any... | 2014/07/28 | [
"https://windowsphone.stackexchange.com/questions/5416",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/5715/"
] | One of the new features of WP 8.1 is shape writing, where I swipe over the keyboard instead of tapping every key individually.
When I try to input a URL using shape writing, let's say:
```
windowsphone.com
```
I try to input `windows`, then `phone`, then I press the `.com` key. What I get is:
```
windows phone.com... | I found this article that details how to do it, but only on Windows Phone 7 and it doesn't apply anymore because in the article their messages.db file just opens up without a problem in a sqllite viewer:
<http://resources.infosecinstitute.com/windows-phone-digital-forensics-2/>
It requires an app called [Windows Phon... |
6,047 | <p>I own a htc 8S which has very limited internal storage where 3.x GB of 4 are already used by the OS itself, and now the Podcast app owns 600 MB of them, leaving only some MB which will never ever again let me install any OS update.</p>
<p>To be clear, there are no stored pod casts at all -- it crashed while downloa... | [
{
"answer_id": 6049,
"author": "Thomas",
"author_id": 979,
"author_profile": "https://windowsphone.stackexchange.com/users/979",
"pm_score": 1,
"selected": false,
"text": "<p>If you can neither open the podcast app / delete downloaded or temporary files nor move everything to the sd card... | 2014/11/07 | [
"https://windowsphone.stackexchange.com/questions/6047",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/9541/"
] | I own a htc 8S which has very limited internal storage where 3.x GB of 4 are already used by the OS itself, and now the Podcast app owns 600 MB of them, leaving only some MB which will never ever again let me install any OS update.
To be clear, there are no stored pod casts at all -- it crashed while downloading to th... | If you can neither open the podcast app / delete downloaded or temporary files nor move everything to the sd card I guess your only option left is to do a hard reset and clean up your phone that way. |
6,140 | <p>Whenever I try to update my Windows Phone I face an 80072efd (check for updates) error. How can I resolve this update error? </p>
<p>Error Message:</p>
<blockquote>
<p>we are currently unable to check for updates (80072efd)</p>
</blockquote>
| [
{
"answer_id": 6141,
"author": "Jaykumar Patel",
"author_id": 9665,
"author_profile": "https://windowsphone.stackexchange.com/users/9665",
"pm_score": 3,
"selected": true,
"text": "<p>I found the reason on <strong>windows phone website</strong>:</p>\n<blockquote>\n<p><b>80072efd</b> - Th... | 2014/11/23 | [
"https://windowsphone.stackexchange.com/questions/6140",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/9665/"
] | Whenever I try to update my Windows Phone I face an 80072efd (check for updates) error. How can I resolve this update error?
Error Message:
>
> we are currently unable to check for updates (80072efd)
>
>
> | I found the reason on **windows phone website**:
>
> **80072efd** - There was a temporary issue with a server or your Internet connection during the update.
>
>
> Make sure you're connected to the Internet and try again. It's best to connect to WiFi so you can avoid possible mobile data charges.
>
>
>
Not Only ... |
9,007 | <p>I need to know the format of video produced by my Nokia Lumia 925 Lumia with WP 8.1.</p>
<p>I know what is supported from the <a href="http://www.microsoft.com/en/mobile/phone/lumia925/specifications/#head_camera" rel="nofollow">specifications</a>, but what is the format when I record a video?</p>
| [
{
"answer_id": 9015,
"author": "Thomas",
"author_id": 979,
"author_profile": "https://windowsphone.stackexchange.com/users/979",
"pm_score": 3,
"selected": true,
"text": "<p>Both the Lumia camera and the stock camera app record Videos as .mp4 files.</p>\n\n<p>EDIT:\nHere are the specs re... | 2015/03/10 | [
"https://windowsphone.stackexchange.com/questions/9007",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/9439/"
] | I need to know the format of video produced by my Nokia Lumia 925 Lumia with WP 8.1.
I know what is supported from the [specifications](http://www.microsoft.com/en/mobile/phone/lumia925/specifications/#head_camera), but what is the format when I record a video? | Both the Lumia camera and the stock camera app record Videos as .mp4 files.
EDIT:
Here are the specs reported by [MediaInfo](https://mediaarea.net/de/MediaInfo) (stripped of all irrelevant data like duration or date and of course some of it depending on settings)
```
General
Format : MPEG-4
... |
9,009 | <p>As far as I know, Windows Phone Doesn't notify you when it uses data. How can I tell if Whatsapp downloads messages in background or only when app is opened?
If it is doing in background than how it is achieving it
P.S i am using Wp8.1 Dev preview with all latest updates</p>
| [
{
"answer_id": 9015,
"author": "Thomas",
"author_id": 979,
"author_profile": "https://windowsphone.stackexchange.com/users/979",
"pm_score": 3,
"selected": true,
"text": "<p>Both the Lumia camera and the stock camera app record Videos as .mp4 files.</p>\n\n<p>EDIT:\nHere are the specs re... | 2015/03/10 | [
"https://windowsphone.stackexchange.com/questions/9009",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/11897/"
] | As far as I know, Windows Phone Doesn't notify you when it uses data. How can I tell if Whatsapp downloads messages in background or only when app is opened?
If it is doing in background than how it is achieving it
P.S i am using Wp8.1 Dev preview with all latest updates | Both the Lumia camera and the stock camera app record Videos as .mp4 files.
EDIT:
Here are the specs reported by [MediaInfo](https://mediaarea.net/de/MediaInfo) (stripped of all irrelevant data like duration or date and of course some of it depending on settings)
```
General
Format : MPEG-4
... |
9,026 | <p>I have a windows phone on which I have a locked up MS Account. I need to restore the phone but first I need to save all the contacts - how can I export the contacts to another device without having the MS Account active?</p>
| [
{
"answer_id": 9015,
"author": "Thomas",
"author_id": 979,
"author_profile": "https://windowsphone.stackexchange.com/users/979",
"pm_score": 3,
"selected": true,
"text": "<p>Both the Lumia camera and the stock camera app record Videos as .mp4 files.</p>\n\n<p>EDIT:\nHere are the specs re... | 2015/03/11 | [
"https://windowsphone.stackexchange.com/questions/9026",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/11908/"
] | I have a windows phone on which I have a locked up MS Account. I need to restore the phone but first I need to save all the contacts - how can I export the contacts to another device without having the MS Account active? | Both the Lumia camera and the stock camera app record Videos as .mp4 files.
EDIT:
Here are the specs reported by [MediaInfo](https://mediaarea.net/de/MediaInfo) (stripped of all irrelevant data like duration or date and of course some of it depending on settings)
```
General
Format : MPEG-4
... |
12,255 | <p>What should I do to fix a brand new Microsoft Lumia 950 that has erroneous low storage warnings, poor battery life, gets very warm and will not download phone update 10.0.10586.29?</p>
<p>Following is the system information:</p>
<pre><code>Model Microsoft Lumia 950
Software: Windows 10 Mobile
Installed RAM: 3GB
V... | [
{
"answer_id": 12245,
"author": "Thomas",
"author_id": 979,
"author_profile": "https://windowsphone.stackexchange.com/users/979",
"pm_score": 3,
"selected": true,
"text": "<p>I'm not quite sure what exactly is creating your Documents & Photos folders, but it is not the \"Camera roll ... | 2016/01/05 | [
"https://windowsphone.stackexchange.com/questions/12255",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/18605/"
] | What should I do to fix a brand new Microsoft Lumia 950 that has erroneous low storage warnings, poor battery life, gets very warm and will not download phone update 10.0.10586.29?
Following is the system information:
```
Model Microsoft Lumia 950
Software: Windows 10 Mobile
Installed RAM: 3GB
Version: 1511
OS build... | I'm not quite sure what exactly is creating your Documents & Photos folders, but it is not the "Camera roll bonus". This bonus was added to your account when the automatic upload was active once and it is by design that this wont disappear after you deactivate it.
[This bonus storage will disappear by January 31st 201... |
14,126 | <p>Are there any applications (Windows or Linux) that support the .nar format that is used by Windows Phones to store HDR images? In particular I am wondering if there are programs that allow to change the HDR exposure of the image in the same way as can be done on the phone when I download the .nar container (which ca... | [
{
"answer_id": 14123,
"author": "Suneel Podapati",
"author_id": 24500,
"author_profile": "https://windowsphone.stackexchange.com/users/24500",
"pm_score": 2,
"selected": false,
"text": "<p>Currently there is now way to choose default apps for file types in windows 10. But in build 14393 ... | 2016/10/02 | [
"https://windowsphone.stackexchange.com/questions/14126",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/20789/"
] | Are there any applications (Windows or Linux) that support the .nar format that is used by Windows Phones to store HDR images? In particular I am wondering if there are programs that allow to change the HDR exposure of the image in the same way as can be done on the phone when I download the .nar container (which can b... | I could not open the pdf through adobe reader, however it opens though Microsoft edge in Windows phone.
So I did
1. Create a folder inside document folder in sd card or phone.
2. Move pdfs to this folder.
3. Open adobe reader - SD card/phone - document.
Enjoy reading through adobe reader |
14,201 | <p>Is it at all possible to install any version of Windows 10 on the Nokia Lumia 920?</p>
<p>I can't believe this great phone is becoming useless, so I am willing to deploy preview versions or whatever else is available, </p>
<p>Specs from insider app,</p>
<pre><code>App version - 1.4.0.1
OS version - 8.10.14219.341... | [
{
"answer_id": 14204,
"author": "Kolappan N",
"author_id": 18061,
"author_profile": "https://windowsphone.stackexchange.com/users/18061",
"pm_score": 1,
"selected": false,
"text": "<p><strong>No, it is not possible.</strong></p>\n\n<p>As the upgrade advisor says, your phone is not elligi... | 2016/10/14 | [
"https://windowsphone.stackexchange.com/questions/14201",
"https://windowsphone.stackexchange.com",
"https://windowsphone.stackexchange.com/users/8577/"
] | Is it at all possible to install any version of Windows 10 on the Nokia Lumia 920?
I can't believe this great phone is becoming useless, so I am willing to deploy preview versions or whatever else is available,
Specs from insider app,
```
App version - 1.4.0.1
OS version - 8.10.14219.341
Branch - WPB_CXE_R1
OEM - N... | Last few months have been quite frustrating.
First I was told my Lumia 920 wasn't getting Windows 10, then it got absolutely shut down from [insider as well](https://www.reddit.com/r/windowsphone/comments/4sezso/psa_if_you_want_windows_10_mobile_on_your_lumia/).
Well, this weekend I've decided to spend some time on i... |
53 | <p>For example, if someone posts a picture of a tool or a piece of wood, how should that be handled?</p>
<p>I think I recall some SE sites discouraging identification questions as too localized because they end up being only useful to the asker and are phrased in terms of, "What is this?" which doesn't help with searc... | [
{
"answer_id": 57,
"author": "Peter Grace",
"author_id": 34,
"author_profile": "https://woodworking.meta.stackexchange.com/users/34",
"pm_score": 3,
"selected": false,
"text": "<p>I would vote against \"what type of wood is this?\" questions. On a few of the facebook-based woodworking g... | 2015/03/19 | [
"https://woodworking.meta.stackexchange.com/questions/53",
"https://woodworking.meta.stackexchange.com",
"https://woodworking.meta.stackexchange.com/users/49/"
] | For example, if someone posts a picture of a tool or a piece of wood, how should that be handled?
I think I recall some SE sites discouraging identification questions as too localized because they end up being only useful to the asker and are phrased in terms of, "What is this?" which doesn't help with searching.
If ... | I would vote against "what type of wood is this?" questions. On a few of the facebook-based woodworking groups I participate in, it is a nearly endless stream of "what kind of wood is this?" posts. They're really tough to provide substantive answers to beyond "yup, looks like Fir to me" |
205 | <p>I'm splitting this question off from the original question, <a href="https://woodworking.meta.stackexchange.com/q/53/49">Are wood identification questions allowed?</a>, because the answers to that question only addressed wood identification and not the other identification questions that I had really hoped to addres... | [
{
"answer_id": 207,
"author": "null",
"author_id": 443,
"author_profile": "https://woodworking.meta.stackexchange.com/users/443",
"pm_score": 2,
"selected": false,
"text": "<p>It wouldn't matter for somebody searching if the question was edited.</p>\n\n<p>If you do not know how to spell ... | 2015/04/29 | [
"https://woodworking.meta.stackexchange.com/questions/205",
"https://woodworking.meta.stackexchange.com",
"https://woodworking.meta.stackexchange.com/users/49/"
] | I'm splitting this question off from the original question, [Are wood identification questions allowed?](https://woodworking.meta.stackexchange.com/q/53/49), because the answers to that question only addressed wood identification and not the other identification questions that I had really hoped to address.
For exampl... | It wouldn't matter for somebody searching if the question was edited.
If you do not know how to spell a word, the fact that the words in a dictionary are sorted in alphabetical order doesn't help very much.
I think that identification questions are very valid.
The point that it could be a localised problem is very l... |
233 | <p>If nothing else I am <a href="https://woodworking.stackexchange.com/questions/1708/what-alternatives-are-there-for-pocket-screws">proof</a> that doing to projects is insight for questions. Which was the goal in the first place. </p>
<p>I have just made a workbench from the: <a href="https://woodworking.meta.stacke... | [
{
"answer_id": 236,
"author": "bowlturner",
"author_id": 27,
"author_profile": "https://woodworking.meta.stackexchange.com/users/27",
"pm_score": 0,
"selected": false,
"text": "<p>At this point I'd suggest just giving it a go, and ask for a response on what you write. I'm sure you'll re... | 2015/06/15 | [
"https://woodworking.meta.stackexchange.com/questions/233",
"https://woodworking.meta.stackexchange.com",
"https://woodworking.meta.stackexchange.com/users/128/"
] | If nothing else I am [proof](https://woodworking.stackexchange.com/questions/1708/what-alternatives-are-there-for-pocket-screws) that doing to projects is insight for questions. Which was the goal in the first place.
I have just made a workbench from the: [Community Project: Lets build a workbench!](https://woodworki... | Since the point of these projects is partly to generate content for the main site, most of the techniques you learned should result in new questions or references to existing questions. I think it's also important to list the tools you used, in case someone wants to rise to the challenge and build the project using too... |
2,221 | <p>I'm planning to build a wooden box project for my Raspberry PI, plus speakers. The layout / configuration that I'm thinking of is a three box system; one for the Raspberry PI (plus joystick, buttons, power supply, connectors etc) and the other 2 for the speakers. I would like the system to have two modes; packed a... | [
{
"answer_id": 2213,
"author": "grfrazee",
"author_id": 878,
"author_profile": "https://woodworking.stackexchange.com/users/878",
"pm_score": 3,
"selected": false,
"text": "<p>I use <a href=\"http://rads.stackoverflow.com/amzn/click/B000I1AVDW\">Norton Sharpening Stone Oil</a> for my oil... | 2015/08/14 | [
"https://woodworking.stackexchange.com/questions/2221",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/421/"
] | I'm planning to build a wooden box project for my Raspberry PI, plus speakers. The layout / configuration that I'm thinking of is a three box system; one for the Raspberry PI (plus joystick, buttons, power supply, connectors etc) and the other 2 for the speakers. I would like the system to have two modes; packed and un... | >
> Things that I've heard can be used: mineral oil, vegetable oil, 3-in-1 oil, ATF, kerosene.
>
>
>
Yes these can all be used. ATF should be avoided as it can contain ingredients you don't want on your skin, and there are many reliably safe alternatives.
**Mineral oils**
Commercial honing oils are nine times o... |
2,682 | <p>So the other day, I found a wonderful set of large knob-shaped wall hangers from Sheffield home at T.J Maxx, so I bought them all. But when I got home, I realized that there was no hardware included with the knobs and no directions on how to install the hangers. Does anyone out there know how these particular knobs ... | [
{
"answer_id": 2683,
"author": "ratchet freak",
"author_id": 20,
"author_profile": "https://woodworking.stackexchange.com/users/20",
"pm_score": 2,
"selected": false,
"text": "<p>For solid knobs just a wood screw in the back is all that's needed.</p>\n\n<p>It doesn't need to be centered ... | 2015/11/01 | [
"https://woodworking.stackexchange.com/questions/2682",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/1340/"
] | So the other day, I found a wonderful set of large knob-shaped wall hangers from Sheffield home at T.J Maxx, so I bought them all. But when I got home, I realized that there was no hardware included with the knobs and no directions on how to install the hangers. Does anyone out there know how these particular knobs sho... | By to look of the "keyhole" shaped holes in the back of the knobs, you're probably supposed to slide them onto the head of a screw that's attached to the wall.
Here's the keyhole in glorious ASCIIart, with labels, to make this easier to explain:
```
+--+
| | <------ thin end
| |
_-' '-_
... |
3,232 | <p>I am trying to reconcile the following 3 points but cannot:</p>
<ol>
<li>It is <strong>extremely important</strong> to let wood sit for a while in the environment it is intended to be used in before using it for a project so that it reaches equilibrium moisture content (EMC) with the environment. Evidence: This adv... | [
{
"answer_id": 3234,
"author": "grfrazee",
"author_id": 878,
"author_profile": "https://woodworking.stackexchange.com/users/878",
"pm_score": 5,
"selected": true,
"text": "<blockquote>\n <p>In such a wildly changing environment, how is it actually possible to let wood reach its EMC, or ... | 2016/02/01 | [
"https://woodworking.stackexchange.com/questions/3232",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/1250/"
] | I am trying to reconcile the following 3 points but cannot:
1. It is **extremely important** to let wood sit for a while in the environment it is intended to be used in before using it for a project so that it reaches equilibrium moisture content (EMC) with the environment. Evidence: This advice comes up time and time... | >
> In such a wildly changing environment, how is it actually possible to let wood reach its EMC, or is the advice misguided, and does it not actually matter?
>
>
>
It does matter, and the moisture content bit is a bit easier than you're making it out to be. Let me explain.
Humidity fluctuates throughout the day,... |
4,606 | <p>completely new woodworker and I wanted to make the object shown on the website and video below, without power tools, I understand that chisels can be used but can someone explain me how and which chisels to use? And alternatives? Also what would be a good set of chisels for a beginner and this project? Also I plan t... | [
{
"answer_id": 4603,
"author": "Ashlar",
"author_id": 1821,
"author_profile": "https://woodworking.stackexchange.com/users/1821",
"pm_score": 3,
"selected": false,
"text": "<p>Although I have not seen your tablesaw, I have used other portable contractor saws and they tend to have several... | 2016/09/06 | [
"https://woodworking.stackexchange.com/questions/4606",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/2668/"
] | completely new woodworker and I wanted to make the object shown on the website and video below, without power tools, I understand that chisels can be used but can someone explain me how and which chisels to use? And alternatives? Also what would be a good set of chisels for a beginner and this project? Also I plan to u... | Although I have not seen your tablesaw, I have used other portable contractor saws and they tend to have several problems. First the fence is not substantial and may have some give when the wood piece applies pressure against it. The fence is also very short and the sheet can easily get off track against the fence. It ... |
5,460 | <p>I finally got a decent craigslist haul of a #4, #5 1/4, #6 Stanley Bailey and a bunch of spare blades. </p>
<p>I have been searching online and can find explanations for each of the adjustments. But I am having a hard time understanding how they interact together.</p>
<p>For example, moving the frog back is for t... | [
{
"answer_id": 5461,
"author": "bpedit",
"author_id": 2762,
"author_profile": "https://woodworking.stackexchange.com/users/2762",
"pm_score": 2,
"selected": false,
"text": "<p>Here's a link to a good summary of planes: <a href=\"https://woodworking.stackexchange.com/questions/2470/what-... | 2017/02/06 | [
"https://woodworking.stackexchange.com/questions/5460",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/3135/"
] | I finally got a decent craigslist haul of a #4, #5 1/4, #6 Stanley Bailey and a bunch of spare blades.
I have been searching online and can find explanations for each of the adjustments. But I am having a hard time understanding how they interact together.
For example, moving the frog back is for taking larger shavi... | Starting note: cap iron = chipbreaker.
>
> For example, moving the frog back is for taking larger shavings and less figured wood. Moving it up is for smaller shavings and more figured woods.
>
>
> A similar logic applies with the chip breaker.
>
>
>
That's correct in essence but you can simplify matters for you... |
6,317 | <p>Recently I've asked in a couple of places about which oils should be used to finish cutting/butcher boards. Mineral oils were on the list as well as other types of products (tung oil, waxes, etc.). Another recommendation was "Hard Top Oil" by Borma Wachs (<a href="http://www.bormawachs.com/schede-tecniche/... | [
{
"answer_id": 6665,
"author": "Squatting Dog ",
"author_id": 4397,
"author_profile": "https://woodworking.stackexchange.com/users/4397",
"pm_score": -1,
"selected": false,
"text": "<p>I don't have a whole lot of experience with this type of thing, but I have heard a lot of people mentio... | 2017/08/14 | [
"https://woodworking.stackexchange.com/questions/6317",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/4047/"
] | Recently I've asked in a couple of places about which oils should be used to finish cutting/butcher boards. Mineral oils were on the list as well as other types of products (tung oil, waxes, etc.). Another recommendation was "Hard Top Oil" by Borma Wachs ([technical sheet](http://www.bormawachs.com/schede-tecniche/all/... | I can't find a MSDS for Hard Top Oil, but I suspect it is probably safe. However not knowing exactly what is in it would make me very unlikely to use it for anything coming in to contact with food - "a mix of prestigious modified natural oils" is not very specific/reassuring.
My Go To for chopping boards and the like ... |
6,497 | <p>According to the article in fine woodworking on gluing up joints: </p>
<p>The formula for number of clamps required is (square inches of glued joint x PSI for the wood in question) divided by PSI of the clamp you are using.</p>
<p>I am gluing up a desktop made of 2x2's of different hardwoods (red oak, cherry, waln... | [
{
"answer_id": 6499,
"author": "Graphus",
"author_id": 243,
"author_profile": "https://woodworking.stackexchange.com/users/243",
"pm_score": 0,
"selected": false,
"text": "<blockquote>\n <p>That works out to 45 3/4 inch bar clamps for a 6' length!<br>\n This means I need a clamp every ... | 2017/10/01 | [
"https://woodworking.stackexchange.com/questions/6497",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/4237/"
] | According to the article in fine woodworking on gluing up joints:
The formula for number of clamps required is (square inches of glued joint x PSI for the wood in question) divided by PSI of the clamp you are using.
I am gluing up a desktop made of 2x2's of different hardwoods (red oak, cherry, walnut, maple and pop... | <http://www.woodmagazine.com/woodworking-tips/techniques/skills/take-it-easy-with-clamping-pressure>
According to this Article the makers of Titebond recommend 175 to 250PSI for hardwoods, and they also say that a C-clamp can exert about 2000 lbs of pressure. Plug those numbers into your equation and you get 72 x 1.81... |
7,089 | <p>I always thought that this wasn't done, because the screw would likely blow out, unless it's perfectly aligned.</p>
<p>I'm wondering if there's a name for this technique (using screws to reinforce a butt joint), and if there's a jig or technique for drilling the holes? </p>
<p>For example, cross-sectional view:</p... | [
{
"answer_id": 7090,
"author": "fred_dot_u",
"author_id": 3985,
"author_profile": "https://woodworking.stackexchange.com/users/3985",
"pm_score": 2,
"selected": false,
"text": "<p>A pocket drill jig will allow you to drill holes at an angle to board 2 into board 2 and engaging board 1.</... | 2018/03/25 | [
"https://woodworking.stackexchange.com/questions/7089",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/4582/"
] | I always thought that this wasn't done, because the screw would likely blow out, unless it's perfectly aligned.
I'm wondering if there's a name for this technique (using screws to reinforce a butt joint), and if there's a jig or technique for drilling the holes?
For example, cross-sectional view:
```
screw ... | In that particular video, the guy is working with particle board. There is no grain structure in particle board (or MDF for that matter), so there really isn't a 'good' way to make a butt joint.
[](https://i.stack.imgur.com/lqAzb.jpg)
The screws that... |
7,223 | <p>I have been considering creating a set of gaming dice.</p>
<p>I would need to create 4, 6, 8, 10, 12 and 20 sided dice.</p>
<p>The problem is I have no idea what would be a good way for getting the dimensions/sides even.</p>
<p>Please provide an example of the best way to do this using the 20 sided die as an exam... | [
{
"answer_id": 7227,
"author": "fred_dot_u",
"author_id": 3985,
"author_profile": "https://woodworking.stackexchange.com/users/3985",
"pm_score": 1,
"selected": false,
"text": "<p>I'm unable to process the mathematics involved, but that doesn't make it an impossible task. You can use it ... | 2018/04/22 | [
"https://woodworking.stackexchange.com/questions/7223",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/212/"
] | I have been considering creating a set of gaming dice.
I would need to create 4, 6, 8, 10, 12 and 20 sided dice.
The problem is I have no idea what would be a good way for getting the dimensions/sides even.
Please provide an example of the best way to do this using the 20 sided die as an example. | The issue, as you probably already know, is not one of drawing regular polygons, but one of shaping regular polyhedrons.
There are five regular polyhedrons made of equilateral triangular faces, square faces or regular pentagonal faces.
They can all be created without ever constructing any of the component polygons. T... |
7,293 | <p>I'm not necessarily new to woodworking, but new to lathes. I've borrowed a Rikon 70-100 lathe from a friend. It has a MT2 receiver in the tail stock, and currently has a live center on the tail stock. To remove the live center, I just rotate the hand wheel on the tail stock counter clockwise far enough to get the ... | [
{
"answer_id": 7294,
"author": "Chuck S",
"author_id": 4817,
"author_profile": "https://woodworking.stackexchange.com/users/4817",
"pm_score": 2,
"selected": true,
"text": "<p>Yes it is oversize, the black band should be just proud of the chuck. If the chuck is too far from the shoulder ... | 2018/05/09 | [
"https://woodworking.stackexchange.com/questions/7293",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/5132/"
] | I'm not necessarily new to woodworking, but new to lathes. I've borrowed a Rikon 70-100 lathe from a friend. It has a MT2 receiver in the tail stock, and currently has a live center on the tail stock. To remove the live center, I just rotate the hand wheel on the tail stock counter clockwise far enough to get the inter... | Yes it is oversize, the black band should be just proud of the chuck. If the chuck is too far from the shoulder you will have trouble removing adapter with wedges. Send it back, try again |
9,984 | <p>How do I cut out a circle in exsisting wooden counter top and use the cut out piece as a lid (flush) so it doesnt fall through? e.g. a "stepped edge? Obviously I am not using the correct terminologly, hopefully someone knows what I am trying to say. Thanks in advance to all replies, much appreciate</p>
| [
{
"answer_id": 9991,
"author": "Martin Bonner supports Monica",
"author_id": 1646,
"author_profile": "https://woodworking.stackexchange.com/users/1646",
"pm_score": 2,
"selected": false,
"text": "<p>You can't do exactly what you want. The problem is that however you cut round the lid, t... | 2019/09/26 | [
"https://woodworking.stackexchange.com/questions/9984",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/7830/"
] | How do I cut out a circle in exsisting wooden counter top and use the cut out piece as a lid (flush) so it doesnt fall through? e.g. a "stepped edge? Obviously I am not using the correct terminologly, hopefully someone knows what I am trying to say. Thanks in advance to all replies, much appreciate | You can't do exactly what you want. The problem is that however you cut round the lid, there will be some thickness which you turn into sawdust (the kerf). If we ignore the difficulty of cutting a stepped edge, it will end up like:
```
|:
--------
_____ :
| :
```
where the solid lines represent the edge of ... |
9,997 | <p>Blade rookie here. I have a 1.5HP table saw with a 10" blade. The blades I have been using are fairly new higher tooth finishing blades, such as the Diablo 1060X. To avoid the friction burns when ripping and cross cutting 3/4" birch, I started having to cut only an 1/8th" deep at a time, raising the blade between pa... | [
{
"answer_id": 9991,
"author": "Martin Bonner supports Monica",
"author_id": 1646,
"author_profile": "https://woodworking.stackexchange.com/users/1646",
"pm_score": 2,
"selected": false,
"text": "<p>You can't do exactly what you want. The problem is that however you cut round the lid, t... | 2019/10/03 | [
"https://woodworking.stackexchange.com/questions/9997",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/7858/"
] | Blade rookie here. I have a 1.5HP table saw with a 10" blade. The blades I have been using are fairly new higher tooth finishing blades, such as the Diablo 1060X. To avoid the friction burns when ripping and cross cutting 3/4" birch, I started having to cut only an 1/8th" deep at a time, raising the blade between passe... | You can't do exactly what you want. The problem is that however you cut round the lid, there will be some thickness which you turn into sawdust (the kerf). If we ignore the difficulty of cutting a stepped edge, it will end up like:
```
|:
--------
_____ :
| :
```
where the solid lines represent the edge of ... |
13,144 | <p>I've heard lots of rip cut guides say that you should have your workpiece between the blade and the fence and the offcut on the free side of the blade.</p>
<p>The thing that bothers me about this advice is surely it should be based on which side is wider / narrower.</p>
<p>For example let's say I have a long board t... | [
{
"answer_id": 13145,
"author": "FreeMan",
"author_id": 93,
"author_profile": "https://woodworking.stackexchange.com/users/93",
"pm_score": 1,
"selected": false,
"text": "<p>In your example, you'd set your fence to 50mm (~4" for those who like Freedom Units ;) and run it through tha... | 2021/10/05 | [
"https://woodworking.stackexchange.com/questions/13144",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/11082/"
] | I've heard lots of rip cut guides say that you should have your workpiece between the blade and the fence and the offcut on the free side of the blade.
The thing that bothers me about this advice is surely it should be based on which side is wider / narrower.
For example let's say I have a long board that is 200mm wi... | In your example, you'd set your fence to 50mm (~4" for those who like Freedom Units ;) and run it through that way. If you should happen to mis-set the fence a bit and you get it at 49.9mm or 50.1mm, at least your strips are all the same. If you put the "off cut" portion between the blade & fence, you have to adjust th... |
13,169 | <p>I'm working on one of my first DIY projects that's a combination of some 3d printed parts along with one main wood piece. The goal that I'm trying to achieve is a static keyboard tray that hangs under my main table. I think I have a somewhat sturdy custom clamp that attaches to my table, and it will allow the tray t... | [
{
"answer_id": 13170,
"author": "Volfram K",
"author_id": 10942,
"author_profile": "https://woodworking.stackexchange.com/users/10942",
"pm_score": 3,
"selected": true,
"text": "<p>I think plywood will be ok for this. The price may be high currently because of wood shortage! Also I think... | 2021/10/12 | [
"https://woodworking.stackexchange.com/questions/13169",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/11106/"
] | I'm working on one of my first DIY projects that's a combination of some 3d printed parts along with one main wood piece. The goal that I'm trying to achieve is a static keyboard tray that hangs under my main table. I think I have a somewhat sturdy custom clamp that attaches to my table, and it will allow the tray to h... | I think plywood will be ok for this. The price may be high currently because of wood shortage! Also I think you'd need to purchase from a supplier who will cut a piece to your size.
Tools:
* Drill + bits.
* Hand saw.
+ Any hand saw will do just fine
+ Here's one example:
[ wide, and lengthwise they range from 80 cm to 250 cm (~31 1/2" to ~98 7/16").</p>
<p>I'm looking for good ways to clamp a fence for my router.</p>
<p>By good way, I mean: that doesn't inter... | [
{
"answer_id": 13938,
"author": "FreeMan",
"author_id": 93,
"author_profile": "https://woodworking.stackexchange.com/users/93",
"pm_score": 3,
"selected": true,
"text": "<p>I presume you're routing the groves across the short direction of the long brown board.</p>\n<p>Use an edge clampin... | 2022/07/03 | [
"https://woodworking.stackexchange.com/questions/13929",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/1682/"
] | I have a few dados to make with a router on MDF boards.
The boards are 28 to 40 cm (11" to ~15 3/4") wide, and lengthwise they range from 80 cm to 250 cm (~31 1/2" to ~98 7/16").
I'm looking for good ways to clamp a fence for my router.
By good way, I mean: that doesn't interfere with the router when I'm routing, an... | I presume you're routing the groves across the short direction of the long brown board.
Use an edge clamping guide such as this inexpensive one from Harbor Freight:
[](https://i.stack.imgur.com/ImMTE.jpg)\*No endorsement intended or implied, it's just an e... |
14,203 | <p>I want to glue two 3/4" (11/16" actual) sheets of Baltic Birch plywood together to make a 1.5" (1.375" actual) thick sheet.</p>
<p>I then want to add two "legs" coming out of the edge of the plywood, so that it looks like this:</p>
<pre><code> _________________________ 1.375" thick... | [
{
"answer_id": 14204,
"author": "bowlturner",
"author_id": 27,
"author_profile": "https://woodworking.stackexchange.com/users/27",
"pm_score": 2,
"selected": false,
"text": "<p>As I was reading this I was thinking there is nothing wrong with doing this, a 3/4" dowel should be able t... | 2022/10/25 | [
"https://woodworking.stackexchange.com/questions/14203",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/12647/"
] | I want to glue two 3/4" (11/16" actual) sheets of Baltic Birch plywood together to make a 1.5" (1.375" actual) thick sheet.
I then want to add two "legs" coming out of the edge of the plywood, so that it looks like this:
```
_________________________ 1.375" thick
/________________________/|
| ... | >
> 1. Is it feasible to drill into the edge of glued-together plywood like this?
>
>
>
Yes.
Just a note for future readers: this is not a universal yes for all plywood, because of the limitations of some plywoods1. But Baltic birch is ideal for face glueing because of the [uniform thickness of the surface and in... |
14,335 | <p>More details on what I'm building below.</p>
<p>I need something to hold 3/4" plywood in place sturdily enough that I can keep my angles correct and mark it; but loosely enough I can take it apart easily.</p>
<p>I could drive screws in and then drive them out and then drive them back in again, but that seems in... | [
{
"answer_id": 14337,
"author": "Aloysius Defenestrate",
"author_id": 503,
"author_profile": "https://woodworking.stackexchange.com/users/503",
"pm_score": 2,
"selected": false,
"text": "<p>1-3/8” 23g, if you use enough of them, will probably hold a structure together long enough. (Top t... | 2022/12/20 | [
"https://woodworking.stackexchange.com/questions/14335",
"https://woodworking.stackexchange.com",
"https://woodworking.stackexchange.com/users/12830/"
] | More details on what I'm building below.
I need something to hold 3/4" plywood in place sturdily enough that I can keep my angles correct and mark it; but loosely enough I can take it apart easily.
I could drive screws in and then drive them out and then drive them back in again, but that seems inadvisable, and it wo... | 1-3/8” 23g, if you use enough of them, will probably hold a structure together long enough. (Top tip: don’t waste time trying to lever the old nails out after disassembly. Just bend them back and forth until they snap, usually below the surface.)
2” 18g nails would do better if you could bear the marring. Understand t... |
1 | <blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="https://wordpress.meta.stackexchange.com/questions/219/write-and-elevator-pitch-tagline">Write and Elevator Pitch / Tagline</a></p>
</blockquote>
<h2>Note:</h2>
<p>We are closing this domain naming thread. It is asking the <em>entirely</em> wrong ques... | [
{
"answer_id": 7,
"author": "Scott M.",
"author_id": 96,
"author_profile": "https://wordpress.meta.stackexchange.com/users/96",
"pm_score": 3,
"selected": false,
"text": "<p><strong>expertwp.com</strong></p>\n"
},
{
"answer_id": 9,
"author": "Jan Fabry",
"author_id": 8,
... | 2010/08/11 | [
"https://wordpress.meta.stackexchange.com/questions/1",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/33/"
] | >
> **Possible Duplicate:**
>
> [Write and Elevator Pitch / Tagline](https://wordpress.meta.stackexchange.com/questions/219/write-and-elevator-pitch-tagline)
>
>
>
Note:
-----
We are closing this domain naming thread. It is asking the *entirely* wrong question. See this blog post for details: [Domain Names: Wr... | **queryposts.com**
[Available](http://www.checkdomain.com/cgi-bin/checkdomain.pl?domain=queryposts.com). |
314 | <p>This is a bit embarrassing, but it appears that the OpenID button that allows you to log in with a WordPress.com username is not working. I'm not sure if this is on SE's end or on WordPress.com's end, but it will cause problems.</p>
<p>Remember, there was a significant amount of tension between the existing WP com... | [
{
"answer_id": 315,
"author": "EAMann",
"author_id": 46,
"author_profile": "https://wordpress.meta.stackexchange.com/users/46",
"pm_score": 4,
"selected": true,
"text": "<p>... and ... I just answered my own question.</p>\n\n<p>It appears that WordPress.com blocks OpenID authentication f... | 2010/12/29 | [
"https://wordpress.meta.stackexchange.com/questions/314",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/46/"
] | This is a bit embarrassing, but it appears that the OpenID button that allows you to log in with a WordPress.com username is not working. I'm not sure if this is on SE's end or on WordPress.com's end, but it will cause problems.
Remember, there was a significant amount of tension between the existing WP community and ... | ... and ... I just answered my own question.
It appears that WordPress.com blocks OpenID authentication for "private" blogs. So if you set up your account to use a service like Akismet and didn't want a blog (i.e. "just give me a username") your blog is marked as "private" by default.
To fix this, you need to log in,... |
366 | <p>If you have useful tools to help you when you are writing an answer on a WPSE question, please list them here so we can all benefit from them!</p>
| [
{
"answer_id": 367,
"author": "Jan Fabry",
"author_id": 8,
"author_profile": "https://wordpress.meta.stackexchange.com/users/8",
"pm_score": 3,
"selected": false,
"text": "<p>I wrote a small script that creates a new plugin, based on the question ID. It uses <a href=\"https://stackapps.c... | 2011/02/03 | [
"https://wordpress.meta.stackexchange.com/questions/366",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/8/"
] | If you have useful tools to help you when you are writing an answer on a WPSE question, please list them here so we can all benefit from them! | I wrote a small script that creates a new plugin, based on the question ID. It uses [the Stack Exchange API](https://stackapps.com/) to get the question info, puts that in the plugin header, and opens the file in an editor.
I created a local setup with all WP versions since 1.5, with a plugin dir that has a symlink ca... |
501 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://wordpress.meta.stackexchange.com/questions/808/community-promotion-ads-1h-2012">Community Promotion Ads - 1H 2012</a> </p>
</blockquote>
<h3>What in the Wide, Wide World of Sports is Going On Here?</h3>
<p>TL;DR -- put images and links i... | [
{
"answer_id": 502,
"author": "Geoff Dalgas",
"author_id": 3,
"author_profile": "https://wordpress.meta.stackexchange.com/users/3",
"pm_score": 4,
"selected": false,
"text": "<p><a href=\"http://twitter.com/#!/stackwordpress\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.... | 2011/03/18 | [
"https://wordpress.meta.stackexchange.com/questions/501",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/3/"
] | >
> **Possible Duplicate:**
>
> [Community Promotion Ads - 1H 2012](https://wordpress.meta.stackexchange.com/questions/808/community-promotion-ads-1h-2012)
>
>
>
### What in the Wide, Wide World of Sports is Going On Here?
TL;DR -- put images and links in the answers. If they get voted up enough, they will ap... | [](http://twitter.com/#!/stackwordpress) |
513 | <p>Am I doing something incorrectly in the following answer: <a href="https://wordpress.stackexchange.com/questions/12809/retrieving-all-links-from-a-post/12813#12813">Retrieving all Links from a Post?</a></p>
<p>In the edit view the code highlights as expected, but in the answer the code is just red.</p>
| [
{
"answer_id": 514,
"author": "fuxia",
"author_id": 73,
"author_profile": "https://wordpress.meta.stackexchange.com/users/73",
"pm_score": 0,
"selected": false,
"text": "<p>Add opening <code><?php</code> tags.</p>\n\n<p>(Why do I have to add extra characters?)</p>\n"
},
{
"ans... | 2011/03/23 | [
"https://wordpress.meta.stackexchange.com/questions/513",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/2984/"
] | Am I doing something incorrectly in the following answer: [Retrieving all Links from a Post?](https://wordpress.stackexchange.com/questions/12809/retrieving-all-links-from-a-post/12813#12813)
In the edit view the code highlights as expected, but in the answer the code is just red. | Thanks to [Jan Fabry](https://wordpress.stackexchange.com/users/8/jan-fabry), I figured this out. The post was taged "regex", so the syntax highlighting defaulted to regex mode. Jan modified my post so that, just before the code block, there was the following comment tag:
```
<!-- language: lang-php -->
```
This res... |
602 | <p>I know we've already had a question about duplicate posts on meta about it <em>(the irony! :)</em> but that question doesn't address the issue in exactly the same way I am wanting to address it:</p>
<ul>
<li><a href="https://wordpress.meta.stackexchange.com/questions/316/how-to-deal-with-duplicate-questions">How to... | [
{
"answer_id": 604,
"author": "Jan Fabry",
"author_id": 8,
"author_profile": "https://wordpress.meta.stackexchange.com/users/8",
"pm_score": 2,
"selected": false,
"text": "<p>I agree that we need more canonical answers, and I am already thinking of some areas where I could provide some. ... | 2011/05/15 | [
"https://wordpress.meta.stackexchange.com/questions/602",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/89/"
] | I know we've already had a question about duplicate posts on meta about it *(the irony! :)* but that question doesn't address the issue in exactly the same way I am wanting to address it:
* [How to Deal with Duplicate Questions?](https://wordpress.meta.stackexchange.com/questions/316/how-to-deal-with-duplicate-questio... | I agree that we need more canonical answers, and I am already thinking of some areas where I could provide some. One problem is that they might turn out to be complete manuals, but a manual where there was none before ("missing" parts from the Codex) is better than nothing at all. I don't think they *need* to be commun... |
784 | <p>I think one of the reason we have so many unanswered questions is because vagrant users come by --> ask a question --> get answer and never bother to come back and understand/ know how to vote ( or care).</p>
<p>You know something like " Hey someone took the time to answer your question on WPSE, it would be great i... | [
{
"answer_id": 785,
"author": "EAMann",
"author_id": 46,
"author_profile": "https://wordpress.meta.stackexchange.com/users/46",
"pm_score": 2,
"selected": false,
"text": "<p>If the email could be automatically sent by the system (i.e. not a to-do task for moderators) then this might be a... | 2011/10/21 | [
"https://wordpress.meta.stackexchange.com/questions/784",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/1509/"
] | I think one of the reason we have so many unanswered questions is because vagrant users come by --> ask a question --> get answer and never bother to come back and understand/ know how to vote ( or care).
You know something like " Hey someone took the time to answer your question on WPSE, it would be great if you took... | If the email could be automatically sent by the system (i.e. not a to-do task for moderators) then this might be an OK idea.
A lot of times, the drive-by question askers are referred here by other sites (i.e. Stack Overflow, the WP forums, Twitter) and they simply aren't a regular visitor. In other cases, the asker mi... |
808 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://wordpress.meta.stackexchange.com/questions/1309/community-promotion-ads-2013">Community Promotion Ads - 2013</a> </p>
</blockquote>
<p>A new year means, a new start of ads! And hopefully better schedule adherence. Which we're doing by swi... | [
{
"answer_id": 809,
"author": "Grace Note",
"author_id": 7667,
"author_profile": "https://wordpress.meta.stackexchange.com/users/7667",
"pm_score": 3,
"selected": false,
"text": "<p><a href=\"http://twitter.com/stackwordpress\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur... | 2011/12/02 | [
"https://wordpress.meta.stackexchange.com/questions/808",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/7667/"
] | >
> **Possible Duplicate:**
>
> [Community Promotion Ads - 2013](https://wordpress.meta.stackexchange.com/questions/1309/community-promotion-ads-2013)
>
>
>
A new year means, a new start of ads! And hopefully better schedule adherence. Which we're doing by switching to a yearly cycle anyway.
### What are Comm... | [](http://queryposts.com/) |
921 | <p>There's one annoying bug:</p>
<p>Try to do write a list and then add some code. If you don't place another line of text in between, the code section breaks and the first and last lines jump out of the formatting:</p>
<h3>Testcases:</h3>
<ol>
<li>This is</li>
<li>Some list</li>
<li><p>with items</p>
<p>// And som... | [
{
"answer_id": 924,
"author": "mor7ifer",
"author_id": 11740,
"author_profile": "https://wordpress.meta.stackexchange.com/users/11740",
"pm_score": 3,
"selected": false,
"text": "<p>It's actually just allowing you to choose between putting your code in the list and putting it outside of ... | 2012/02/23 | [
"https://wordpress.meta.stackexchange.com/questions/921",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/385/"
] | There's one annoying bug:
Try to do write a list and then add some code. If you don't place another line of text in between, the code section breaks and the first and last lines jump out of the formatting:
### Testcases:
1. This is
2. Some list
3. with items
// And some code
if ( list( $code, $items ) )
break;
An... | It's actually just allowing you to choose between putting your code in the list and putting it outside of the list. To put it in the list, you must double indent (2 tabs or 8 spaces to start the block). For example:
* This is
* a sample list
* and here's a codeblock in that list
```
// << 8 spaces
// leet code goes h... |
987 | <p>I got a big red banner at the top of WPSE saying this:</p>
<pre><code>WordPress requires external JavaScript from another domain, which is blocked or failed to load.
</code></pre>
<p>What is it implying?</p>
| [
{
"answer_id": 988,
"author": "Scott",
"author_id": 4610,
"author_profile": "https://wordpress.meta.stackexchange.com/users/4610",
"pm_score": 3,
"selected": true,
"text": "<p>I don't know how clearer that message can be...</p>\n\n<p>For this website to work fully it loads JavaScript fil... | 2012/03/13 | [
"https://wordpress.meta.stackexchange.com/questions/987",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/10119/"
] | I got a big red banner at the top of WPSE saying this:
```
WordPress requires external JavaScript from another domain, which is blocked or failed to load.
```
What is it implying? | I don't know how clearer that message can be...
For this website to work fully it loads JavaScript files, some of which are loaded from different domains (CDN's).
You will get this message if your browser is blocking these JavaScript files or for whatever reason they didn't load... |
995 | <p>I was going through WPSE this morning doing my best to answer what I can and I came accross a few closed questions, mostly for off topic.</p>
<p>Let me get this out of the way, I <strong>do</strong> agree with the scope as defined in the faq, and I <strong>do</strong> agree with flagging post's that are clearly off... | [
{
"answer_id": 996,
"author": "fuxia",
"author_id": 73,
"author_profile": "https://wordpress.meta.stackexchange.com/users/73",
"pm_score": 3,
"selected": false,
"text": "<p>Some notes …</p>\n\n<ol>\n<li>A question can be reopened once the poster has improved it to fit into our scope. Suc... | 2012/03/21 | [
"https://wordpress.meta.stackexchange.com/questions/995",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/10119/"
] | I was going through WPSE this morning doing my best to answer what I can and I came accross a few closed questions, mostly for off topic.
Let me get this out of the way, I **do** agree with the scope as defined in the faq, and I **do** agree with flagging post's that are clearly off topic or thinly veiled attempts at ... | Some notes …
1. A question can be reopened once the poster has improved it to fit into our scope. Such a decision is reversible.
2. We moderators have no control over the message appended to the close notice. It is automated. Yes, it could be more friendly. But the link to the FAQ should help.
3. It doesn’t matter how... |
1,159 | <p>When creating a question it is not interpreting code blocks correctly when you indent with 4 spaces.
For example:</p>
<pre><code>This should be code!
</code></pre>
<p>But it is not.</p>
<p>EDIT: must have a blank line before and after block code, maybe specify this in instructions?</p>
| [
{
"answer_id": 1160,
"author": "fuxia",
"author_id": 73,
"author_profile": "https://wordpress.meta.stackexchange.com/users/73",
"pm_score": 3,
"selected": true,
"text": "<p>You need an empty line before and after the code block. Otherwise the line break is ignored by Markdown.</p>\n"
}... | 2012/07/02 | [
"https://wordpress.meta.stackexchange.com/questions/1159",
"https://wordpress.meta.stackexchange.com",
"https://wordpress.meta.stackexchange.com/users/17600/"
] | When creating a question it is not interpreting code blocks correctly when you indent with 4 spaces.
For example:
```
This should be code!
```
But it is not.
EDIT: must have a blank line before and after block code, maybe specify this in instructions? | You need an empty line before and after the code block. Otherwise the line break is ignored by Markdown. |