WOW !!! What happened with php.net???

Status
Not open for further replies.

Porsche_maniak

Active Member
283
2009
0
40
I get the following text when try to enter php.net.

503: Stop SOPA/PIPA

The SOPA/PIPA bills threaten the open nature of the Web and thus threaten Open Source projects like ours. If you have the ability to vote in the United States, help us out and contact your representatives. If you are not able to vote in the United States, you can help by petitioning the U.S. state department. Bills like these have a habit of spreading to other countries if we don't stop them at their source. Visit AmericanCensorship.org to learn how to do both.

:facepalm:
 
6 comments
PHP:
<?php // vim: et

// show beta home page if user has requested the beta site.
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
if (myphpnet_beta()) {
    include $_SERVER['DOCUMENT_ROOT'] . '/index-beta.php';
} else {
    $ts = time();
    // Hardcode 11am Jan.18 UTC to 5am Jan.19 UTC time window
    if($ts>=1326884400 && $ts<1326949200) {
        include $_SERVER['DOCUMENT_ROOT'] . '/index-sopa.php';
    } else {
        include $_SERVER['DOCUMENT_ROOT'] . '/index-stable.php';
    }
}

To access php.net for now use:
http://php.net/index-stable.php
 
Status
Not open for further replies.
Back
Top