This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tyrael@thor:~/checkouts$ nslookup -type=NS php.net | |
Server: 109.74.194.20 | |
Address: 109.74.194.20#53 | |
Non-authoritative answer: | |
php.net nameserver = remote2.easydns.com. | |
php.net nameserver = ns2.easydns.com. | |
php.net nameserver = remote1.easydns.com. | |
php.net nameserver = ns1.easydns.com. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<title>[windows|wiki].php.net is down for maintenance</title> | |
<style type="text/css"> | |
body { | |
font-family: Verdana, Arial, Helvetica, Sans-Serif; | |
font-size: 85%; | |
margin: 0; | |
padding: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* SplClassLoader implementation that implements the technical interoperability | |
* standards for PHP 5.3 namespaces and class names. | |
* | |
* http://groups.google.com/group/php-standards/web/final-proposal | |
* | |
* // Example which loads classes for the Doctrine Common package in the | |
* // Doctrine\Common namespace. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps auxfw|egrep -i "apache|httpd"|egrep -iv "root|grep"|head -1|cut -f1 -d | |
# how to apply multiple patches, suhosin patches for example: | |
for patchfile in `find ./php-5.3.4/ -type f -print`;do | |
filename=${patchfile/php-5.3.4/php-5.3.6}; | |
filename=${filename//\.diff}; | |
patch $filename $patchfile; | |
done; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: ext/standard/tests/file/bug39863.phpt | |
=================================================================== | |
--- ext/standard/tests/file/bug39863.phpt (revision 311062) | |
+++ ext/standard/tests/file/bug39863.phpt (working copy) | |
@@ -14,11 +14,6 @@ | |
echo "PASS\n"; | |
} | |
?> | |
-===DONE=== | |
<?php exit(0); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install some PEAR dependencies | |
pear install Html_Form Net_Url Net_URL2-beta Pager HTML_Table HTTP HTML_TreeMenu DB | |
# check out the code | |
svn co https://svn.php.net/repository/web/pecl/trunk pecl.php.net | |
# create and configure the vhost | |
# add the following line to the sql/data.php | |
# require_once "../include/pear-prepend.php"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: include/pear-format-html.php | |
=================================================================== | |
--- include/pear-format-html.php (revision 312027) | |
+++ include/pear-format-html.php (working copy) | |
@@ -160,8 +160,8 @@ | |
<option value="packages">Packages</option> | |
<option value="site">This site (using Google)</option> | |
<option value="developers">Developers</option> | |
- <option value="pear-dev">Developer mailing list</option> | |
- <option value="pear-cvs">CVS commits mailing list</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: data.php | |
=================================================================== | |
--- data.php (revision 312067) | |
+++ data.php (working copy) | |
@@ -1,5 +1,6 @@ | |
<?php | |
+require_once "../include/pear-prepend.php"; | |
require_once "DB.php"; | |
require_once "../include/pear-database.php"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$url = 'http://svn.php.net/viewvc/SVNROOT/global_avail?revision=HEAD&view=co'; | |
$file = file_get_contents($url); | |
$avail_lines = array(); | |
$pattern = '/^avail\|(.*?)\|(.*?)$/sm'; | |
$repos = array(); | |
$users = array(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: www/bug.php | |
=================================================================== | |
--- www/bug.php (revision 312577) | |
+++ www/bug.php (working copy) | |
@@ -37,6 +37,14 @@ | |
// Set edit mode | |
$edit = isset($_REQUEST['edit']) ? (int) $_REQUEST['edit'] : 0; | |
+if ($edit && $bug_id < 60000 ) { | |
+ $errors[] = 'Editing old bugs is temporary unavailable!'; |
OlderNewer