Please check the link:
http://kotinos.com.gr/index.php/en/2016-09-20-12-44-31/rings/ring-012498-detail
and if someone can tell me why on earth i get debug errors for not having type or image as meta, i will be grateful.
The issue is that i don't get Title, description or image at all and as you can see from page source i have it all (they are produced through php and added as meta values)
Debug errors from https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fkotinos.com.gr%2Findex.php%2Fen%2F2016-09-20-12-44-31%2Frings%2Fring-012498-detail is based on the URL before 303 HTTP Redirect, and the page source you view is from the URL after 303 HTTP Redirect.
Related
I'm a beginner of AMP from Japan.
Now I'm in trouble dealing with a error that is output when I introduce AMP into my WordPress webpage.
I cloud activate the AMP plugin and display an AMP of the post page without problem.
But the following error was output on my browser console when I added #development=1 to the end of URL of the post AMP to confirm whether the post AMP was configured as a valid AMP on Google.
Failed to load resource: the server responded with a status of 404 ()
https://cdn.ampproject.org/v0/validator_minified.js.sourcemap
Then I accessed to the above URL described in the error message, the following error page was displayed.
Google
404. That’s an error.
The requested URL /v0/validator_minified.js.sourcemap was not found on this server. That’s all we know.
I guess the output post AMP may not be recognized by Google as a structure of AMP if this error page was displayed.
But I have no idea to resolve the 404 error and can't progress any more.
In other words, I'd like to know some solution and hints to resolve the 404 error in order that Google recognizes my post AMP.
If you have some solution or hints, I'd be very helpful if you provide them for me.
Thanks in advance.
clear your cache in the server and delete your log. Blocking an malicious IP trafics and your see the IP in 30 per connection then you want blocked the IP.
Using proxy or like mitigation
I am building a wordpress blog and using yoast seo plugin which automatically integrates the open graph, and on debugging my url i got..
Time Scraped 2 seconds ago
Response Code 206
Fetched URL http://www.fizzxo.com/will-tigers-taste-kiwis-time-overview- predictions-squad-many/
Canonical URL http://www.fizzxo.com/will-tigers-taste-kiwis-time-overview-predictions-squad-many/ (42 likes, shares and comments More Info )
Server IP 52.53.254.185
so can someone tell why i am getting this and not 200?
thanks
206 Partial Content
https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
Facebook does not need the whole Page to get the Open Graph tags.
More information:
https://serverfault.com/questions/571554/what-does-http-code-206-partial-content-really-mean
HTTP Status Code 206: When should it be used?
I've a view with an URL: "/a" so that if I visit www.example.com/a the view is showed.
The problem is that the view shows even on all "/a/something" or "/a/something/apple" addresses so that no 404 error shows up.
Is the a way to limit view to its URL so that URL like: "/a/something" results in 404 error?
Thank you all!
When sharing the following URL to Facebook
www.magicsoftware.com
You will get outdated information. Facebook refers to the site (magicsoftware.com/en) and takes all the information from the cache.
I tried to clear the cache by going to the dubugger-
https://developers.facebook.com/tools/debug/og/object?q=www.magicsoftware.com
But that didn't help much.
Someone has an idea what I can do?
P.S - if you checked the debugger link, you would see that there are two critical errors mentioned:
Could Not Follow Redirect: URL requested a HTTP redirect, but it could
not be followed. Errors That Must Be Fixed
Circular Redirect Path: Circular redirect path detected (see 'Redirect
Path' section for details).
What does that mean?
Your server is issuing redirect to the same URL as visited based on some condition, actually according to my tests on any requests that came without Accept-Language header get redirected.
See with Accept-Language header, and without any headers
Facebook linter doesn't seems to pass this header while crawling your OpenGraph meta and hung due to redirection loop.
You should avoid that redirection (or at least have some fallback) for Facebook linter to be able to collect updated data and update the cached version.
Same thing is happening to me now. I have no redirect in place. but I am getting this message " there was an error following the redirect path." when using the debugger on this URL http://www.mmaid.co/cleaning-services/offers/coupons/social-discount.php I will give it time and see if it fixes itself.
I found the solution myself - and it's only patience :)
Facebook just needs time to remove their cache files. So the solution is simply to use the Facebook Debugger to enter your URL and then to wait. Facebook will automatically refresh this URL cache.
I'm a noob when it comes to ASP.NET. I know few basic commands such as Response.Redirect("URL") to redirect my application web page to a different location.
However i receive HTTP Error 400 - Bad Request, whenever i try to use the code shown below
Response.Redirect(Server.UrlEncode(this.Downloadlink));
where this.Downloadlink is a user defined property which returns something like this
http://mdn.vatsag.net/fp;files/DOWNLOAD/VTSetup.exe
If i post this link in the browser, the .exe file pops up (means the link is good)
However this error comes when i use the ASP.NET code.
Any form of response on this issue/reason is deeply appreciated.
See here: http://www.kirit.com/Response.Redirect%20and%20encoded%20URIs
In short: if you quickly want to fix the issue, remove the part of your code that is UrlEncoding the URL!