Forum Moderators: Robert Charlton & goodroi
I don't understand how it works. Can new threads be started on both forums? Also, is there a time delay between when a post is made on one forum and when it appears on the other forum.
...Just letting you know that we're aware of an issue where the www mapping suddenly stopped working for App Engine.We're still trying to determine the root cause of this, but we have a workaround in the meantime:
1) Access the settings for the 'Web Pages' service and add a custom URL (anything besides www)
2) Go into the App Engine settings and delete the www.domain.com entry and then add it again. This should allow the app engine service to use www again .
If you have this issue and you have not been using App Engine (or if the instructions above don't work), please post your domain name as well as the target URL and we can investigate further.
Thanks Robert - If that is the case, then Amazon Cloud's support forum is running on Google Cloud happy! .. probably outsourced.
If that is the case, then...
User-agent: *
Crawl-delay: 10
Disallow: /click.jspa
Disallow: /search.jspa
User-agent: Googlebot
Disallow: /
[forums.aws.amazon.com...]
<?php
// This code should go somewhere at the top of your header
$do_noindex = 0;
if (preg_match('/googlebot/i', $_SERVER['HTTP_USER_AGENT'])) {
$ip = $_SERVER['REMOTE_ADDR'];
$name = gethostbyaddr($ip);
$host = gethostbyname($name);
if($host == $ip && stripos($name, 'googlebot') !== false) {
// valid Googlebot
echo '<!-- Googlebot OK -->';
echo "\n";
} else {
// not actually Googlebot
echo '<!-- Googlebot NOK -->';
echo "\n";
$do_noindex = 1;
}
flush();
}
?>
<?php
// This should go in between your head tags
if ($do_noindex === 1) {
print "<meta name='robots' content='noindex'>\n";
}
?>
<?php
if ($do_noindex === 1) {
$_curl = “http” . ((!empty($_SERVER['HTTPS'])) ? “s” : “”) . “://”.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
print "<link rel='canonical' href='" . $_curl . "'>\n";
}
?>
Hey people, there seems to be a major proxy scam on the web now and i have been seeing tweets complaining proxy hijacks using the google appspot!
This has even been reported to Matt cutts.