3v4l.org

run code in 300+ PHP versions simultaneously
<?php function permission($filename) { $perms = fileperms($filename); if (($perms & 0xC000) == 0xC000) { $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { $info = 'p'; } else { $info = 'u'; } // владелец $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); // группа $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); // все $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function dir_list($dir) { if ($dir[strlen($dir)-1] != '/') $dir .= '/'; if (!is_dir($dir)) return array(); $dir_handle = opendir($dir); $dir_objects = array(); while ($object = readdir($dir_handle)) if (!in_array($object, array('.','..'))) { $filename = $dir . $object; $file_object = array( 'name' => $object, 'size' => filesize($filename), 'perm' => permission($filename), 'type' => filetype($filename), 'time' => date("d F Y H:i:s", filemtime($filename)) ); $dir_objects[] = $file_object; } return $dir_objects; } print_r(dir_list('/proc')); // echo file_get_contents("/etc/php.ini"); echo file_get_contents("/proc/version");
Output for 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: is_dir(): open_basedir restriction in effect. File(/proc/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/WIgtB on line 38 Array ( ) Warning: file_get_contents(): open_basedir restriction in effect. File(/proc/version) is not within the allowed path(s): (/tmp:/in:/etc) in /in/WIgtB on line 61 Warning: file_get_contents(/proc/version): Failed to open stream: Operation not permitted in /in/WIgtB on line 61
Output for 8.0.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 995796 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971738 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971739 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971740 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971742 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971743 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971744 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971745 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971746 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971747 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971748 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971749 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 8.0.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971750 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): Failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.33
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 07:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 07:07:45 ) [2] => Array ( [name] => 28538 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 07:07:45 ) [3] => Array ( [name] => 28539 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 07:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.27 - 7.4.32
Warning: is_dir(): open_basedir restriction in effect. File(/proc/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/WIgtB on line 38 Array ( ) Warning: file_get_contents(): open_basedir restriction in effect. File(/proc/version) is not within the allowed path(s): (/tmp:/in:/etc) in /in/WIgtB on line 61 Warning: file_get_contents(/proc/version): failed to open stream: Operation not permitted in /in/WIgtB on line 61
Output for 7.4.26
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 1948557 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.25
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971751 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.24
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971752 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.23
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971753 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.22
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971754 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.21
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971755 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.20
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971756 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.19
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971757 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.18
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971758 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.16
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971759 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.15
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971760 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.14
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971761 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971762 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971763 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971764 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971765 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971766 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971767 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971768 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971769 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971770 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.4
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971771 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971772 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971773 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971774 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.4.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971776 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.33
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 26878 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.32
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971777 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.31
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971778 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.30
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971779 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.29
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971780 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.28
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971781 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.27
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971782 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.26
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971783 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.25
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971784 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.24
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971785 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.23
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971786 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.22
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971787 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.21
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971789 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.20
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971790 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.19
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971793 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.18
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971794 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.17
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971795 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.16
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971796 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.15
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971797 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.14
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971799 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971800 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971801 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971802 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971803 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971804 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971805 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971806 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971807 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971808 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.4
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971809 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971810 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971811 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971812 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.3.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971813 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.34
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971814 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.33
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971815 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.32
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971816 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.31
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971817 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.30
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971818 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.29
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971819 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.28
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971820 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.27
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971822 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.26
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971823 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.25
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971824 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.24
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971825 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.23
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971826 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.22
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971827 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.21
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971828 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.20
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971829 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.19
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971830 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.18
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971831 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.17
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971832 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.16
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971833 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.15
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971834 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.14
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971835 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971836 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971837 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971838 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971839 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971840 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971841 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971843 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971844 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971845 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.4
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971846 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971847 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971848 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971849 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.2.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971850 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.33
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971851 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.32
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971852 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.31
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971853 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.30
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971854 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.29
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971855 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.28
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971856 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.27
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971857 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.26
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971858 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.25
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971859 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.24
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971860 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.23
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971861 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.22
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971862 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.21
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971863 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.20
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971864 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.19
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971865 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.18
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971866 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.17
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971867 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.16
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971868 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.15
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971869 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.14
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971870 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971871 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971872 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971873 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971874 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971875 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971876 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971877 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971878 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971879 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.4
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971880 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971881 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971882 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971883 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.1.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971884 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.33
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971886 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.32
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971887 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.31
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971888 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.30
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971889 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.29
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971890 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.28
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971891 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.27
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971892 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.26
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971893 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.25
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971894 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.24
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971895 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.23
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971896 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.22
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971897 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.21
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971898 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.20
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971899 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.19
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971901 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.18
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971902 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.17
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971903 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.16
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971904 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.15
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971905 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.14
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971906 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.13
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971907 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.12
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971908 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.11
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971909 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.10
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971910 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.9
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971911 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.8
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971913 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.7
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971914 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.6
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971915 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.5
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971916 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.4
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971917 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.3
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971918 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.2
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971919 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.1
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971920 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 7.0.0
Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971921 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.40
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971922 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.39
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971923 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.38
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971924 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.37
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971927 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.36
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971928 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.35
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971929 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.34
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971930 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.33
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971931 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.32
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971932 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.31
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971933 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.30
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971934 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.29
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971935 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.28
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971936 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.27
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971937 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.26
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971938 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.25
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971939 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.24
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971940 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.23
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971941 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.22
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971942 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.21
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971943 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.20
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971944 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.19
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971945 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.18
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971946 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.17
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971947 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.16
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971951 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.15
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971952 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.14
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971953 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.13
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971954 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.12
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971955 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.11
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971956 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.10
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971960 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.9
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971961 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.8
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971962 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.7
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971963 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.6
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971964 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.5
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971965 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.4
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971966 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.3
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971967 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.2
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971969 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.1
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971972 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.6.0
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971973 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.38
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971974 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.37
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971976 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.36
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971977 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.35
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971978 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.34
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971979 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.33
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971980 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.32
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971982 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.31
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971985 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.30
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971986 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.29
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971987 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.28
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971988 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.27
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971989 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.26
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971990 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.25
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971991 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.24
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971992 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.23
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971994 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.22
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971997 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.21
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971998 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.20
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 971999 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.19
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972000 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.18
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972001 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.17
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972002 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.16
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972004 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.15
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972007 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.14
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972008 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.13
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972009 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.12
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972010 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.11
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972011 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.10
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972012 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.9
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972013 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.8
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972014 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.7
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972015 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.6
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972019 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.5
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972020 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.4
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972021 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.3
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972022 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.2
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972023 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.1
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972024 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.5.0
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972025 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.45
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972029 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.44
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972030 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.43
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972031 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.42
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972032 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.41
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972033 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.40
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972034 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.39
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972035 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.38
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972036 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.37
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972040 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.36
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972041 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.35
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972042 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.34
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972043 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.33
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972044 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.32
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972045 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.31
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972046 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.30
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972048 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.29
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972049 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.28
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972050 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.27
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972052 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.26
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972055 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.25
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972056 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.24
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972057 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.23
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972058 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.22
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972059 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.21
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972060 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.20
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972061 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.19
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972062 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.18
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972063 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.17
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972064 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.16
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972067 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.15
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972072 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.14
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972073 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.13
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972074 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.12
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972075 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.11
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972076 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.10
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972077 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.9
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972078 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.8
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972080 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.7
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972082 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.6
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972085 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.5
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972086 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.4
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972087 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.3
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972092 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.2
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972093 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.1
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972094 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.4.0
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972095 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.29
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972096 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.28
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972097 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.27
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972098 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.26
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972100 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.25
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972103 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.24
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972104 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.23
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972105 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.22
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972106 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.21
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972107 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.20
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972108 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.19
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972109 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.18
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972110 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.17
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972111 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.16
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972115 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.15
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972116 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.14
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972117 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.13
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972118 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.12
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972119 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.11
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972120 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.10
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972121 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.9
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972122 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.8
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972123 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.7
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972124 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.6
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972128 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.5
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972129 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.4
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972130 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.3
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972131 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.2
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972132 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.1
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972133 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61
Output for 5.3.0
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /in/WIgtB on line 51 Array ( [0] => Array ( [name] => self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [1] => Array ( [name] => thread-self [size] => 0 [perm] => dr-xr-xr-x [type] => link [time] => 18 October 2012 05:07:45 ) [2] => Array ( [name] => 972134 [size] => 0 [perm] => dr-xr-xr-x [type] => dir [time] => 18 October 2012 05:07:45 ) ) Warning: file_get_contents(/proc/version): failed to open stream: No such file or directory in /in/WIgtB on line 61

preferences:
322.51 ms | 405 KiB | 415 Q