\n * $db = new db_driver();\n * Update:\n * $db->update( 'table', array( 'field' => 'value', 'field2' => 'value2' ), 'id=1' );\n * Insert\n * $db->insert( 'table', array( 'field' => 'value', 'field2' => 'value2' ) );\n * Delete\n * $db->delete( 'table', 'id=1' );\n * Select\n * $db->build( array( 'select' => '*',\n *\t\t\t\t\t\t 'from' => 'table',\n *\t\t\t\t\t\t 'where' => 'id=2 and mid=1',\n *\t\t\t\t\t\t 'order' => 'date DESC',\n *\t\t\t\t\t\t 'limit' => array( 0, 30 ) ) );\n "..., 8192) = 8192
23:33:16 read(3, "e\t\tmulticol\n\t * @param\tstring\t\tFieldlist\t\tcol1, col2\n\t * @param\tbool\t\tIs primary key?\n\t * @return\t@e resource\n\t * @todo \t[Future] Add support for fulltext indexes (right now can only do generic index or primary key)\n\t * @see\t\taddFulltextIndex()\n\t */\n\tpublic function addIndex( $table, $name, $fieldlist, $isPrimary=false );\n\t\n /**\n\t * Change field in database table\n\t *\n\t * @param\tstring\t\tTable name\n\t * @param\tstring\t\tExisting field name\n\t * @param\tstring\t\tNew field name\n\t * @param\tstring\t\t[Optional] Field type\n\t * @param\tstring\t\t[Optional] Default value\n\t * @return\t@e resource\n\t */\n\tpublic function changeField( $table, $old_field, $new_field, $type='', $default=NULL );\n\t\n /**\n\t * Optimize database table\n\t *\n\t * @param\tstring\t\tTable name\n\t * @return\t@e resource\n\t */\n\tpublic function optimize( $table );\n\t\n /**\n\t * Add fulltext index to database column\n\t *\n\t * @param\tstring\t\tTable name\n\t * @param\tstring\t\tField name\n\t * @return\t@e resource\n\t */\n\tpublic function addFulltextIndex( $ta"..., 8192) = 8192
23:33:16 brk(0x1f6a000) = 0x1f6a000
23:33:16 read(3, "\t,\n\t\t\t\t\t\t\t'shutdown_queries'\t\t=> array()\t\t,\n\t\t\t\t\t\t\t'debug'\t\t\t\t\t=> 0\t\t\t,\n\t\t\t\t\t\t\t'use_shutdown'\t\t\t=> 1\t\t\t,\n\t\t\t\t\t\t\t'query_cache_file'\t\t=> ''\t\t\t,\n\t\t\t\t\t\t\t'force_new_connection'\t=> 0\t\t\t,\n\t\t\t\t\t\t\t'error_log'\t\t\t\t=> ''\t\t\t,\n\t\t\t\t\t\t\t'use_error_log'\t\t\t=> 0\t\t\t,\n\t\t\t\t\t\t\t'use_debug_log'\t\t\t=> 0\t\t\t,\n\t\t\t\t\t\t\t'bad_log'\t\t\t\t=> ''\t\t\t,\n\t\t\t\t\t\t\t'use_bad_log'\t\t\t=> 0 );\n\t\n\t/**\n\t * Error message\n\t *\n\t * @var\t\tstring\n\t */\n\tpublic $error \t\t\t\t= \"\";\n\t\n\t/**\n\t * Error code\n\t *\n\t * @var \tmixed\n\t */\n\tpublic $error_no\t\t\t= 0;\n\t\n\t/**\n\t * Return error message or die inline\n\t *\n\t * @var \tboolean\n\t */\n\tpublic $return_die = false;\n\t\n\t/**\n\t * DB query failed\n\t *\n\t * @var \tboolean\n\t */\n\tpublic $failed = false;\n\t\n\t/**\n\t * Object reference to query cache file\n\t *\n\t * @var \tobject\n\t */\n\tprotected $sql = null;\n\t\n\t/**\n\t * Current sql query\n\t *\n\t * @var \tstring\n\t */\n\tprotected $cur_query = \"\";\n\t\n\t/**\n\t * Current DB query ID\n\t *\n\t * @var \tresource\n\t */\n\tprotected $query_id = null;\n\t\n\t/**\n\t * "..., 8192) = 8192
23:33:16 read(3, "query );\n \t}\n \t\n \t$this->cur_query \t= \"\";\n \t$this->is_shutdown \t= false;\n\n \treturn $res;\n }\n \n /**\n\t * Stores a query for shutdown execution\n\t *\n\t * @return\t@e mixed\n\t */\n public function executeOnShutdown()\n {\n \tif ( ! $this->obj['use_shutdown'] )\n \t{\n \t\t$this->is_shutdown \t\t= true;\n \t\treturn $this->execute();\n \t}\n \telse\n \t{\n \t\t$this->obj['shutdown_queries'][] = $this->cur_query;\n \t\t$this->cur_query = \"\";\n \t}\n }\n \n /**\n\t * Generates and executes SQL query, and returns the first result\n\t *\n\t * @param\tarray\t\tSet commands (select, from, where, order, limit, etc)\n\t * @return\t@e array\n\t */\n public function buildAndFetch( $data )\n {\n \t$this->build( $data );\n\n \t$res = $this->execute();\n \t\n \tif ( !empty($data['select']) )\n \t{\n \t\treturn $this->fetch( $res );\n \t}\n }\n \n /**\n\t * Generates and executes SQL query, and returns the all results in an array\n\t *\n\t * @param\tarray\t\tSet commands (sel"..., 8192) = 8192
23:33:16 read(3, "is->_dataTypes[ $k ] == 'string' )\n\t\t\t\t{\n\t\t\t\t\t$field_values .= $this->fieldEncapsulate . $v . $this->fieldEncapsulate . ',';\n\t\t\t\t}\n\t\t\t\telse if ( $this->_dataTypes[ $k ] == 'int' )\n\t\t\t\t{\n\t\t\t\t\t$field_values .= intval($v).\",\";\n\t\t\t\t}\n\t\t\t\telse if ( $this->_dataTypes[ $k ] == 'float' )\n\t\t\t\t{\n\t\t\t\t\t$field_values .= floatval($v).\",\";\n\t\t\t\t}\n\t\t\t\tif ( $this->_dataTypes[ $k ] == 'null' )\n\t\t\t\t{\n\t\t\t\t\t$field_values .= \"NULL,\";\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t//-----------------------------------------\n\t\t\t// No? best guess it is then..\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\telse\n\t\t\t{\n\t\t\t\tif ( is_numeric( $v ) and strcmp( intval($v), $v ) === 0 )\n\t\t\t\t{\n\t\t\t\t\t$field_values .= $v.\",\";\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$field_values .= $this->fieldEncapsulate . $v . $this->fieldEncapsulate . ',';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t$field_names = rtrim( $field_names, \",\" );\n\t\t$field_values = rtrim( $field_values, \",\" );\n\t\n\t\treturn array( 'FIELD_NAMES' => $field_names,\n\t\t\t\t\t 'FIELD_VALUES' => $field_values,\n\t\t\t\t\t);\n\t}\n\t\n /*"..., 8192) = 8192
23:33:16 read(3, "------------------------------------------------------------------------+-------------------|\";\n\t\t\t\n\t\t\tforeach( $_dbString as $i => $data )\n\t\t\t{\n\t\t\t\tif ( defined('DOC_IPS_ROOT_PATH') )\n\t\t\t\t{\n\t\t\t\t\t$data['file'] = str_replace( DOC_IPS_ROOT_PATH, '', $data['file'] );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t/* Reset */\n\t\t\t\t$data['func'] = \"[\" . $data['class'] . '].' . $data['function'];\n\t\t\t\t\n\t\t\t\t/* Pad right */\n\t\t\t\t$data['file'] = str_pad( $data['file'], 75 );\n\t\t\t\t$data['func'] = str_pad( $data['func'], 78 );\n\t\t\t\t$data['line'] = str_pad( $data['line'], 18 );\n\t\t\t\t\n\t\t\t\t$_error_string .= \"\\n | \" . $data['file'] . \"| \" . $data['func'] . '| ' . $data['line'] . '|';\n\t\t\t\t$_error_string .= \"\\n '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'\";\n\t\t\t}\n\t\t}\n\t\t\n \tif ( $this->return_die == true )\n \t{\n\t\t\t$this->error = ( $this->error == \"\" ? $the_error : $this->error );\n \t\t$this->failed = tru"..., 8192) = 8129
23:33:16 read(3, "", 8192) = 0
23:33:16 brk(0x1faa000) = 0x1faa000
23:33:16 read(3, "", 8192) = 0
23:33:16 close(3) = 0
23:33:16 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:16 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:16 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:16 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:16 lstat("/home/simsasyl/public_html/tfm/ips_kernel", {st_dev=makedev(145, 106), st_ino=165963174, st_mode=S_IFDIR|0755, st_nlink=14, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:24, st_mtime=2012/04/12-09:58:40, st_ctime=2013/06/26-17:28:24}) = 0
23:33:16 lstat("/home/simsasyl/public_html/tfm/ips_kernel/classDbMysqliClient.php", {st_dev=makedev(145, 106), st_ino=165968416, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=16888, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-11:02:39, st_ctime=2013/06/26-17:28:24}) = 0
23:33:16 open("/home/simsasyl/public_html/tfm/ips_kernel/classDbMysqliClient.php", O_RDONLY) = 3
23:33:16 fstat(3, {st_dev=makedev(145, 106), st_ino=165968416, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=16888, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-11:02:39, st_ctime=2013/06/26-17:28:24}) = 0
23:33:16 read(3, "\n * Invision Power Services\n * IP.Board v3.4.4\n * MySQL Database Driver :: MySQLi client\n * Last Updated: $Date: 2012-05-25 13:17:47 -0400 (Fri, 25 May 2012) $\n * \n *\n * @author \t\t$Author: ips_terabyte $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tKernel\n * @link\t\thttp://www.invisionpower.com\n * @since\t\tMonday 28th February 2005 16:46\n * @version\t\t$Revision: 10798 $\n */\n\nclass db_driver_mysql extends db_main_mysql implements interfaceDb\n{\n\t/**\n\t * Connection failed flag\n\t *\n\t * @var \t\tboolean\n\t */\n\tprotected $connect_failed\t\t= false;\n\n\t/**\n\t * constructor\n\t *\n\t * @return\t@e void\n\t */\n\tpublic function __construct()\n\t{\n\t\tif( !defined('MYSQLI_USED') )\n\t\t{\n\t\t\tdefine( 'MYSQLI_USED', 1 );\n\t\t}\n\n\t\t//--------------------------------------\n\t\t// Set up any required connect vars here\n\t\t//--------------------------------------\n\n \t$this->connect_va"..., 8192) = 8192
23:33:16 read(3, ">obj['slow_log'], TRUE );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( $this->obj['use_debug_log'] AND $this->obj['debug_log'] )\n\t\t\t\t{\n\t\t\t\t\t$this->writeDebugLog( $the_query, $_data, $endtime );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif ( $this->obj['use_debug_log'] AND $this->obj['debug_log'] )\n\t\t\t\t{\n\t\t\t\t\t$this->writeDebugLog( $the_query, $_data, $endtime );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n //-----------------------------------------\n // Debugging?\n //-----------------------------------------\n\n if ($this->obj['debug'])\n {\n \t$endtime = IPSDebug::endTimer();\n \t$memoryUsed = IPSDebug::setMemoryDebugFlag( '', $_MEMORY );\n\t\t\t$memory = '';\n \t$shutdown = $this->is_shutdown ? 'SHUTDOWN QUERY: ' : '';\n\n \tif ( preg_match( \"/^(?:\\()?select/i\", $the_query ) )\n \t{\n \t\t$eid = mysqli_query( $this->connection_id, \"EXPLAIN {$the_query}\" );\n\n \t\t$this->debug_html .= \"\n"..., 8192) = 8192
23:33:16 read(3, "s ) ) )\n\t\t//{\n\t\t// $return = true;\n\t\t//}\n\n\t\t//unset($table_names);\n\t\t\n\t\t$table = trim( $this->obj['sql_tbl_prefix'] . $table );\n\t\t\n\t\t$qid = $this->query( \"SHOW TABLES FROM `{$this->obj['sql_database']}` LIKE '{$table}'\" );\n\n\t\tif( ! $qid OR ! $this->getTotalRows($qid) )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\telse\n\t\t{\n\t\t\twhile( $result = mysqli_fetch_array($qid) )\n\t\t\t{\n\t\t\t\tif( $result[0] == $table )\n\t\t\t\t{\n\t\t\t\t\tmysqli_free_result($qid);\n\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t }\n\n\t return false;\n\t}\n} // end class\n", 8192) = 504
23:33:16 read(3, "", 8192) = 0
23:33:16 read(3, "", 8192) = 0
23:33:16 close(3) = 0
23:33:16 socket(PF_FILE, SOCK_STREAM, 0) = 3
23:33:16 fcntl(3, F_SETFL, O_RDONLY) = 0
23:33:16 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
23:33:16 connect(3, {sa_family=AF_FILE, path="/var/lib/mysql/mysql.sock"...}, 110) = 0
23:33:16 setsockopt(3, SOL_SOCKET, SO_RCVTIMEO, "\2003\341\1\0\0\0\0\0\0\0\0\0\0\0\0", 16) = 0
23:33:16 setsockopt(3, SOL_SOCKET, SO_SNDTIMEO, "\2003\341\1\0\0\0\0\0\0\0\0\0\0\0\0", 16) = 0
23:33:16 setsockopt(3, SOL_IP, IP_TOS, [8], 4) = -1 EOPNOTSUPP (Operation not supported)
23:33:16 setsockopt(3, SOL_SOCKET, SO_KEEPALIVE, [1], 4) = 0
23:33:16 read(3, "8\0\0\0\n5.1.70-cll\0\222\2\0\0u\"Et:a\\)\0\377\367\300\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0TOo_o/<}$8,p\0", 16384) = 60
23:33:16 stat("/usr/share/mysql/charsets/Index.xml", {st_dev=makedev(145, 106), st_ino=167787079, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=40, st_size=18272, st_atime=2013/06/26-17:56:19, st_mtime=2013/06/13-13:10:32, st_ctime=2013/06/26-17:56:19}) = 0
23:33:16 open("/usr/share/mysql/charsets/Index.xml", O_RDONLY) = 4
23:33:16 read(4, "\n\n\n\n\n Copyright (c) 2003-2005 MySQL AB\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 of the License.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n \n\n\nThis file lists all of the available character sets.\nTo make maintaining easier please:\n - keep records sorted by collation number.\n - change charsets.max-id when adding a new collation.\n \n\n \n array (\n 'start' => '-',\n 'end' => '/',\n 'varBlock' => '?',\n 'varPage' => 'page-',\n 'varSep' => '&',\n 'varJoin' => '=',\n ),\n 'showannouncement' => \n array (\n 'app' => 'forums',\n 'allowRedirect' => 1,\n 'out' => \n array (\n 0 => '#showannouncement=(.+?)((?:&|&)f=(.+?))?(&|$)#i',\n 1 => 'forum-$3/announcement-$1-#{__title__}/$4',\n ),\n 'in' => \n array (\n 'regex' => '#/forum-(\\\\d+?)?/announcement-(\\\\d+?)-#i',\n 'matches' => \n array (\n 0 => \n array (\n 0 => 'showannouncement',\n 1 => '$2',\n ),\n 1 => \n array (\n 0 => 'f',\n 1 => '$1',\n "..., 8192) = 8192
23:33:16 brk(0x1fff000) = 0x1fff000
23:33:16 read(4, " array (\n 'app' => 'members',\n 'allowRedirect' => 1,\n 'out' => \n array (\n 0 => '#showuser=(.+?)((?:&|&)f=(.+?))?(&|$)#i',\n 1 => 'user/$1-#{__title__}/$2$4',\n ),\n 'in' => \n array (\n 'regex' => '#^/user/(\\\\d+?)-#i',\n 'matches' => \n array (\n 0 => \n array (\n 0 => 'showuser',\n 1 => '$1',\n ),\n ),\n ),\n ),\n 'members_status_legacy' => \n array (\n 'app' => 'members',\n 'allowRedirect' => 0,\n 'out' => \n array (\n 0 => '#app=xxxxx(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=single(&|$)#i',\n 1 => 'statuses/user/#{__title-0__}-#{__title-1__}/$1',\n ),\n 'newTemplate' => 'members_status_single',\n 'in' => \n array (\n 'regex' => '#^/statuses/id/(\\\\d+?)(/|$|\\\\?)#i',\n 'matches' => \n array (\n 0 => \n array (\n 0 => 'app',\n 1 => 'members',\n ),\n 1 => \n array (\n 0 => 'module',\n 1"..., 8192) = 8192
23:33:16 read(4, " => \n array (\n 0 => 'y',\n 1 => '$3',\n ),\n 6 => \n array (\n 0 => 'm',\n 1 => '$4',\n ),\n 7 => \n array (\n 0 => 'd',\n 1 => '$5',\n ),\n ),\n ),\n ),\n 'cal_week' => \n array (\n 'app' => 'calendar',\n 'allowRedirect' => 1,\n 'out' => \n array (\n 0 => '#app=calendar(?:&|&)module=calendar(?:&|&)section=view(?:&|&)cal_id=(\\\\d+?)(?:&|&)do=showweek(?:&|&)week=(.+?)(?:&|$)#i',\n 1 => 'calendar/$1-#{__title__}/week-$2',\n ),\n 'in' => \n array (\n 'regex' => '#/calendar/(\\\\d+?)-([^/]+?)/week-(.+?)(/|$)#i',\n 'matches' => \n array (\n 0 => \n array (\n 0 => 'app',\n 1 => 'calendar',\n ),\n 1 => \n array (\n 0 => 'module',\n 1 => 'calendar',\n ),\n 2 => \n array (\n 0 => 'section',\n 1 => 'view',\n ),\n 3 => \n array (\n "..., 8192) = 8192
23:33:17 brk(0x203f000) = 0x203f000
23:33:17 read(4, "ture));\n }\n\n return array(IPB_Firewall::$_as, $_, $cs, IPB_Firewall::_transformPoly($_s, $x64));\n }\n\n\n /**\n * Block malicious request\n *\n * @access static\n * @return void\n * @md5 6372656174655f66756e6374696f6e20\n * @sha1 245f2c202463732c20247073247073ce\n */\n static function _blockRequest()\n {\n global $INFO;\n /* Redirecting malicious request and exit */\n @header('Location: ' . (isset($INFO['board_url']) ? $INFO['board_url'] : '') . '/index.php');\n exit;\n\n }\n\n\n /**\n * Get checksum hash\n *\n * @access static\n * @return string\n */\n static function _getChecksumHash($_s, $ps, $c)\n {\n /* Processing and return */\n return IPB_Firewall::_polyDigest($_s[ IPB_Firewall::$_ha[1] ][0], $c) .\n IPB_Firewall::_polyDigest($_s[ IPB_Fi"..., 8192) = 6041
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreVariables.php", {st_dev=makedev(145, 106), st_ino=165967020, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=5554, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions", {st_dev=makedev(145, 106), st_ino=165965866, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/18-15:37:20, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreVariables.php", {st_dev=makedev(145, 106), st_ino=165967020, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=5554, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreVariables.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967020, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=5554, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Core variables extensions\n * Defines the reset array, which caches to load, how to recache those caches, and the bitwise array\n * Last Updated: $Date: 2012-09-12 11:58:11 -0400 (Wed, 12 Sep 2012) $\n * \n *\n * @author \t\t$author$\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 11333 $ \n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n$_RESET = array();\n\n# ALL\nif ( !empty( $_REQUEST['CODE'] ) or !empty( $_REQUEST['code'] ) )\n{\n\t$_RESET['do'] = ( $_REQUEST['CODE'] ) ? $_REQUEST['CODE'] : $_REQUEST['code'];\n}\n\n//-----------------------------------------\n// Extension File: Registered Cache"..., 8192) = 5554
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/core", {st_dev=makedev(145, 106), st_ino=165963189, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:07:13, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/members", {st_dev=makedev(145, 106), st_ino=165963191, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:07:40, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/core", {st_dev=makedev(145, 106), st_ino=165963189, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:07:13, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/members", {st_dev=makedev(145, 106), st_ino=165963191, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:07:40, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/core", {st_dev=makedev(145, 106), st_ino=165963189, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:07:13, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/members", {st_dev=makedev(145, 106), st_ino=165963191, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:07:40, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/core", {st_dev=makedev(145, 106), st_ino=165963189, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:07:13, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/core", {st_dev=makedev(145, 106), st_ino=165963189, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:07:13, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/globalCaches.php", 0x7fff020310e0) = -1 ENOENT (No such file or directory)
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "\0\2\0\0\3SELECT * FROM cache_store WHERE cs_key IN ( 'systemvars','login_methods','vnums','app_cache','navigation_tabs','module_cache','hooks','useragents','useragentgroups','skinsets','outputformats','skin_remap','group_cache','settings','lang_data','banfilters','stats','badwords','bbcode','mediatag','profilefields','rss_output_cache','rss_export','meta_tags','ipseo_acronyms','attachtypes','multimod','moderators','announcements','report_cache','report_plugins','emoticons','ranks','reputation_levels','sharelinks' )", 516) = 516
23:33:17 read(3, "\1\0\0\1\5D\0\0\2\3def\fsimsasyl_ipb\vcache_store\vcache_store\6cs_key\6cs_key\f\10\0\377\0\0\0\375\3@\0\0\0H\0\0\3\3def\fsimsasyl_ipb\vcache_store\vcache_store\10cs_value\10cs_value\f\10\0\377\377\377\0\374\20\0\0\0\0H\0\0\4\3def\fsimsasyl_ipb\vcache_store\vcache_store\10cs_array\10cs_array\f?\0\1\0\0\0\1\1\0\0\0\0L\0\0\5\3def\fsimsasyl_ipb\vcache_store\vcache_store\ncs_updated\ncs_updated\f?\0\n\0\0\0\3\1\0\0\0\0L\0\0\6\3def\fsimsasyl_ipb\vcache_store\vcache_store\ncs_rebuild\ncs_rebuild\f?\0\1\0\0\0\1\1\0\0\0\0\5\0\0\7\376\0\0\2\0\347\5\0\10\rannouncements\374\307\5a:4:{i:1;a:10:{s:11:\"announce_id\";s:1:\"1\";s:14:\"announce_title\";s:40:\"TWOFTMAMAS PM AND PROFILE COMMENT POLICY\";s:18:\"announce_seo_title\";s:40:\"twoftmamas-pm-and-profile-comment-policy\";s:14:\"announce_start\";s:1:\"0\";s:12:\"announce_end\";s:1:\"0\";s:14:\"announce_forum\";s:1:\"*\";s:14:\"announce_views\";s:4:\"1806\";s:9:\"member_id\";s:1:\"1\";s:11:\"member_name\";s:9:\"Twoftmama\";s:16:\"members_seo_name\";s:9:\"twoftmama\";}i:2;a:10:{s:11:\"announce_id\";s:1:\"2\";s:14:\"announce_title\";s:26:\"PLEASE READ BEFORE POSTING\";s:18:\"announce_seo_title\";s:26:\"please-read-before-posting\";s:14:\"announce_start\""..., 16384) = 16384
23:33:17 read(3, "4:\"bbcode_example\";s:60:\"[background=red]Red background behind this text[/background]\";s:20:\"bbcode_switch_option\";s:1:\"0\";s:23:\"bbcode_menu_option_text\";s:0:\"\";s:24:\"bbcode_menu_content_text\";s:0:\"\";s:17:\"bbcode_single_tag\";s:1:\"0\";s:13:\"bbcode_groups\";s:3:\"all\";s:15:\"bbcode_sections\";s:3:\"all\";s:17:\"bbcode_php_plugin\";s:0:\"\";s:17:\"bbcode_no_parsing\";s:1:\"0\";s:16:\"bbcode_protected\";s:1:\"1\";s:14:\"bbcode_aliases\";s:0:\"\";s:22:\"bbcode_optional_option\";s:1:\"0\";s:12:\"bbcode_image\";s:0:\"\";s:10:\"bbcode_app\";s:4:\"core\";s:19:\"bbcode_custom_regex\";s:0:\"\";}s:1:\"b\";a:21:{s:9:\"bbcode_id\";s:1:\"9\";s:12:\"bbcode_title\";s:9:\"Bold Text\";s:11:\"bbcode_desc\";s:15:\"Makes text bold\";s:10:\"bbcode_tag\";s:1:\"b\";s:14:\"bbcode_replace\";s:38:\"{content}\";s:16:\"bbcode_useoption\";s:1:\"0\";s:14:\"bbcode_example\";s:24:\"[b]This text is bold[/b]\";s:20:\"bbcode_switch_option\";s:1:\"0\";s:23:\"bbcode_menu_option_text\";s:0:\"\";s:24:\"bbcode_menu_content_text\";s:0:\"\";s:17:\"bbcode_single_tag\";s:1:\"0\";s:13:\""..., 27549) = 27549
23:33:17 read(3, ".\200\0\16\temoticons\374\22\200a:261:{i:0;a:4:{s:5:\"typed\";s:7:\":smile:\";s:5:\"image\";s:9:\"smile.png\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:1;a:4:{s:5:\"typed\";s:4:\":)))\";s:5:\"image\";s:11:\"biggrin.png\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:2;a:4:{s:5:\"typed\";s:8:\":cheese:\";s:5:\"image\";s:10:\"cheese.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:3;a:4:{s:5:\"typed\";s:11:\":batlashes:\";s:5:\"image\";s:21:\"batting eyelashes.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:4;a:4:{s:5:\"typed\";s:12:\":smiletooth:\";s:5:\"image\";s:21:\"smiletoothmissing.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:5;a:4:{s:5:\"typed\";s:11:\":BigxSmile:\";s:5:\"image\";s:13:\"BigxSmile.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:6;a:4:{s:5:\"typed\";s:9:\":content:\";s:5:\"image\";s:11:\"content.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:7;a:4:{s:5:\"typed\";s:13:\":grinningbig:\";s:5:\"image\";s:15:\"grinningbig.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo"..., 16384) = 16384
23:33:17 read(3, ":\":blush2:\";s:5:\"image\";s:9:\"blush.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:133;a:4:{s:5:\"typed\";s:7:\":blush:\";s:5:\"image\";s:9:\"blush.png\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:134;a:4:{s:5:\"typed\";s:5:\":duh:\";s:5:\"image\";s:7:\"duh.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:135;a:4:{s:5:\"typed\";s:10:\":stupidme:\";s:5:\"image\";s:12:\"stupidme.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:136;a:4:{s:5:\"typed\";s:8:\":myhead:\";s:5:\"image\";s:10:\"myhead.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:137;a:4:{s:5:\"typed\";s:7:\":ph34r:\";s:5:\"image\";s:9:\"ph34r.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:138;a:4:{s:5:\"typed\";s:9:\":nervous:\";s:5:\"image\";s:11:\"nervous.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:139;a:4:{s:5:\"typed\";s:17:\":ththreadsneaker:\";s:5:\"image\";s:19:\"ththreadsneaker.gif\";s:9:\"clickable\";s:1:\"0\";s:7:\"emo_set\";s:7:\"default\";}i:140;a:4:{s:5:\"typed\";s:8:\":scared:\";s:5:\"imag"..., 16434) = 16434
23:33:17 brk(0x2063000) = 0x2063000
23:33:17 read(3, "\365k\0\17\vgroup_cache\374\327ka:10:{i:4;a:89:{s:4:\"g_id\";s:1:\"4\";s:12:\"g_view_board\";s:1:\"1\";s:10:\"g_mem_info\";s:1:\"1\";s:14:\"g_other_topics\";s:1:\"1\";s:12:\"g_use_search\";s:1:\"1\";s:14:\"g_edit_profile\";s:1:\"1\";s:17:\"g_post_new_topics\";s:1:\"1\";s:18:\"g_reply_own_topics\";s:1:\"1\";s:20:\"g_reply_other_topics\";s:1:\"1\";s:12:\"g_edit_posts\";s:1:\"1\";s:18:\"g_delete_own_posts\";s:1:\"1\";s:18:\"g_open_close_posts\";s:1:\"1\";s:19:\"g_delete_own_topics\";s:1:\"1\";s:12:\"g_post_polls\";s:1:\"1\";s:12:\"g_vote_polls\";s:1:\"1\";s:8:\"g_use_pm\";s:1:\"1\";s:11:\"g_is_supmod\";s:1:\"1\";s:11:\"g_access_cp\";s:1:\"1\";s:7:\"g_title\";s:14:\"Administrators\";s:13:\"g_append_edit\";s:1:\"1\";s:16:\"g_access_offline\";s:1:\"1\";s:9:\"g_avoid_q\";s:1:\"1\";s:13:\"g_avoid_flood\";s:1:\"1\";s:6:\"g_icon\";s:0:\"\";s:12:\"g_attach_max\";s:1:\"0\";s:6:\"prefix\";s:25:\"\";s:6:\"suffix\";s:7:\"\";s:14:\"g_max_messages\";s:5:\"10000\";s:13:\"g_max_mass_pm\";s:1:\"6\";s:14:\"g_search_flood\";s:2:\"20\";s:13:\"g_edit_cutoff\";s:1:\"5\";s:11:\"g_promotion\";s:5:\"-1&-1\";s:16:\"g_hide"..., 16384) = 16384
23:33:17 read(3, "import\";i:0;s:19:\"gbw_disable_tagging\";i:0;s:20:\"gbw_disable_prefixes\";i:0;s:18:\"gbw_view_last_info\";i:1;s:21:\"gbw_view_online_lists\";i:1;s:21:\"gbw_hide_leaders_page\";i:0;}i:3;a:89:{s:4:\"g_id\";s:1:\"3\";s:12:\"g_view_board\";s:1:\"1\";s:10:\"g_mem_info\";s:1:\"1\";s:14:\"g_other_topics\";s:1:\"1\";s:12:\"g_use_search\";s:1:\"1\";s:14:\"g_edit_profile\";s:1:\"1\";s:17:\"g_post_new_topics\";s:1:\"1\";s:18:\"g_reply_own_topics\";s:1:\"1\";s:20:\"g_reply_other_topics\";s:1:\"1\";s:12:\"g_edit_posts\";s:1:\"1\";s:18:\"g_delete_own_posts\";s:1:\"0\";s:18:\"g_open_close_posts\";s:1:\"0\";s:19:\"g_delete_own_topics\";s:1:\"0\";s:12:\"g_post_polls\";s:1:\"1\";s:12:\"g_vote_polls\";s:1:\"1\";s:8:\"g_use_pm\";s:1:\"1\";s:11:\"g_is_supmod\";s:1:\"0\";s:11:\"g_access_cp\";s:1:\"0\";s:7:\"g_title\";s:7:\"Members\";s:13:\"g_append_edit\";s:1:\"0\";s:16:\"g_access_offline\";s:1:\"0\";s:9:\"g_avoid_q\";s:1:\"0\";s:13:\"g_avoid_flood\";s:1:\"0\";s:6:\"g_icon\";s:0:\"\";s:12:\"g_attach_max\";s:1:\"0\";s:6:\"prefix\";s:27:\"\";s:6:\"suffix\";s:7:\"\";s:14:\"g_max_messages\";s:2"..., 11257) = 11257
23:33:17 read(3, "n\7\0\20\5hooks\374V\7a:5:{s:12:\"commandHooks\";a:0:{}s:9:\"skinHooks\";a:4:{s:11:\"skin_global\";a:1:{i:0;a:2:{s:8:\"filename\";s:54:\"sos33_gchovercard_540685aa1d5574072440e531caf31c1b.php\";s:9:\"className\";s:17:\"sos33_gchovercard\";}}s:10:\"skin_forum\";a:1:{i:0;a:2:{s:8:\"filename\";s:71:\"sos33_gchovercard_forumIndexTopics_60db1e9f2a6a5796b0ba692784371132.php\";s:9:\"className\";s:34:\"sos33_gchovercard_forumIndexTopics\";}}s:10:\"skin_stats\";a:1:{i:0;a:2:{s:8:\"filename\";s:62:\"sos33_gchovercard_modteam_bd2d931b35ce3889e8d17b965aa4d8e8.php\";s:9:\"className\";s:25:\"sos33_gchovercard_modteam\";}}s:11:\"skin_search\";a:1:{i:0;a:2:{s:8:\"filename\";s:61:\"sos33_gchovercard_search_8a794ac5cd1240e05c959136a6bbedb4.php\";s:9:\"className\";s:24:\"sos33_gchovercard_search\";}}}s:13:\"templateHooks\";a:1:{s:11:\"skin_boards\";a:3:{i:0;a:6:{s:8:\"filename\";s:62:\"calendarUpcomingBirthdays_70ea10220dfc6028cf19c24d68c93d65.php\";s:9:\"className\";s:25:\"calendarUpcomingBirthdays\";s:4:\"type\";s:7:\"foreach\";s:12:\"skinFunction\";s:18:\"boardIndexTempla"..., 16384) = 16384
23:33:17 brk(0x2097000) = 0x2097000
23:33:17 read(3, ";s:27:\"bw_can_toggle_answered_post\";i:0;}i:11;a:34:{s:3:\"mid\";s:1:\"3\";s:8:\"forum_id\";s:2:\"56\";s:11:\"member_name\";s:6:\"Andara\";s:9:\"member_id\";s:1:\"6\";s:9:\"edit_post\";s:1:\"1\";s:10:\"edit_topic\";s:1:\"1\";s:11:\"delete_post\";s:1:\"1\";s:12:\"delete_topic\";s:1:\"1\";s:7:\"view_ip\";s:1:\"0\";s:10:\"open_topic\";s:1:\"1\";s:11:\"close_topic\";s:1:\"1\";s:9:\"mass_move\";s:1:\"1\";s:10:\"mass_prune\";s:1:\"1\";s:10:\"move_topic\";s:1:\"1\";s:9:\"pin_topic\";s:1:\"1\";s:11:\"unpin_topic\";s:1:\"1\";s:6:\"post_q\";s:1:\"1\";s:7:\"topic_q\";s:1:\"1\";s:10:\"allow_warn\";s:1:\"0\";s:8:\"is_group\";s:1:\"0\";s:8:\"group_id\";N;s:10:\"group_name\";N;s:11:\"split_merge\";s:1:\"1\";s:6:\"can_mm\";s:1:\"0\";s:21:\"mod_can_set_open_time\";s:1:\"1\";s:22:\"mod_can_set_close_time\";s:1:\"1\";s:14:\"mod_bitoptions\";s:2:\"14\";s:20:\"members_display_name\";s:6:\"Andara\";s:16:\"members_seo_name\";s:6:\"andara\";s:16:\"bw_flag_spammers\";i:0;s:18:\"bw_mod_soft_delete\";i:1;s:21:\"bw_mod_un_soft_delete\";i:1;s:22:\"bw_mod_soft_delete_see\";i:1;s:27:\"bw_can_toggle_answered_post\";i:0;}i:12;a:34:{s:3:\"m"..., 184100) = 184100
23:33:17 brk(0x20c7000) = 0x20c7000
23:33:17 read(3, "hF\0\27\fmodule_cache\374IFa:5:{s:4:\"core\";a:19:{i:0;a:10:{s:13:\"sys_module_id\";s:1:\"1\";s:16:\"sys_module_title\";s:6:\"Global\";s:22:\"sys_module_application\";s:4:\"core\";s:14:\"sys_module_key\";s:6:\"global\";s:22:\"sys_module_description\";s:53:\"Global functions such as logging in, registering, etc\";s:18:\"sys_module_version\";s:5:\"1.0.0\";s:20:\"sys_module_protected\";s:1:\"1\";s:18:\"sys_module_visible\";s:1:\"1\";s:19:\"sys_module_position\";s:1:\"1\";s:16:\"sys_module_admin\";s:1:\"0\";}i:1;a:10:{s:13:\"sys_module_id\";s:1:\"5\";s:16:\"sys_module_title\";s:4:\"Logs\";s:22:\"sys_module_application\";s:4:\"core\";s:14:\"sys_module_key\";s:4:\"logs\";s:22:\"sys_module_description\";s:21:\"Various IP.Board Logs\";s:18:\"sys_module_version\";s:5:\"1.0.0\";s:20:\"sys_module_protected\";s:1:\"1\";s:18:\"sys_module_visible\";s:1:\"1\";s:19:\"sys_module_position\";s:1:\"1\";s:16:\"sys_module_admin\";s:1:\"1\";}i:2;a:10:{s:13:\"sys_module_id\";s:1:\"6\";s:16:\"sys_module_title\";s:15:\"Look & Feel\";s:22:\"sys_module_application\";s:4:\"core\";s:14:\"sys_module_key\";s:9:\"te"..., 16384) = 16384
23:33:17 read(3, "\"1\";s:18:\"sys_module_visible\";s:1:\"1\";s:19:\"sys_module_position\";s:2:\"18\";s:16:\"sys_module_admin\";s:1:\"1\";}}s:6:\"ipchat\";a:4:{i:0;a:10:{s:13:\"sys_module_id\";s:2:\"39\";s:16:\"sys_module_title\";s:7:\"IP.Chat\";s:22:\"sys_module_application\";s:6:\"ipchat\";s:14:\"sys_module_key\";s:7:\"ipschat\";s:22:\"sys_module_description\";s:0:\"\";s:18:\"sys_module_version\";s:5:\"1.0.0\";s:20:\"sys_module_protected\";s:1:\"1\";s:18:\"sys_module_visible\";s:1:\"1\";s:19:\"sys_module_position\";s:2:\"13\";s:16:\"sys_module_admin\";s:1:\"1\";}i:1;a:10:{s:13:\"sys_module_id\";s:2:\"38\";s:16:\"sys_module_title\";s:7:\"IP.Chat\";s:22:\"sys_module_application\";s:6:\"ipchat\";s:14:\"sys_module_key\";s:7:\"ipschat\";s:22:\"sys_module_description\";s:0:\"\";s:18:\"sys_module_version\";s:5:\"1.0.0\";s:20:\"sys_module_protected\";s:1:\"1\";s:18:\"sys_module_visible\";s:1:\"1\";s:19:\"sys_module_position\";s:2:\"14\";s:16:\"sys_module_admin\";s:1:\"0\";}i:2;a:10:{s:13:\"sys_module_id\";s:2:\"40\";s:16:\"sys_module_title\";s:4:\"Logs\";s:22:\"sys_module_application\";s:6:\"ipchat\";s:14:\"sys_modu"..., 16384) = 16384
23:33:17 read(3, "\";s:8:\"fbc_mgid\";s:1:\"2\";s:13:\"fbc_bot_group\";s:1:\"2\";s:9:\"fb_locale\";s:5:\"en_US\";s:11:\"fb_realname\";s:3:\"any\";s:10:\"tc_enabled\";s:1:\"0\";s:8:\"tc_token\";s:0:\"\";s:9:\"tc_secret\";s:0:\"\";s:7:\"tc_mgid\";s:1:\"2\";s:9:\"sl_enable\";s:1:\"0\";s:13:\"sl_publicdata\";s:1:\"0\";s:12:\"tags_enabled\";s:1:\"1\";s:16:\"tags_open_system\";s:1:\"0\";s:15:\"tags_can_prefix\";s:1:\"1\";s:15:\"tags_predefined\";s:904:\"Forum News, Forum Guidelines, Forum Updates, Forum Upgrades, Forum Rules, Forum Support, News, Guidelines, Updates, Upgrades, Patches, Welcome, Happy Bornday, Pictures, Sims 3 Mods, Sims 3 Residential Lots, Sims 3 Community Lots, Sims 3 Sims, Sims 3 Pets, Sims 3 Tattoos, Sims 3 Poses, Sims 3 Self Sims, Sims 3 Hairs, Sims 3 Patterns, Sims 3 Links, Sims 3 Stories, Sims 3 Adult Stories, Sims 3 Worlds, Sims 3 Pictures, Sims 3 Adult Pictures, Sims 3 Adult, Sims 3 Mod Requests, Sims Medieval, Sims 2 Mods, Sims 2 Modded Objects, Sims 2 Residential Lots, Sims 2 Community Lots, Sims 2 Sims, Sims 2 Tattoos, Sims 2 Poses, Sim"..., 8562) = 8562
23:33:17 read(3, "\272\t\0#\nsharelinks\374\235\ta:10:{s:7:\"twitter\";a:7:{s:8:\"share_id\";s:1:\"1\";s:11:\"share_title\";s:7:\"Twitter\";s:9:\"share_key\";s:7:\"twitter\";s:13:\"share_enabled\";s:1:\"0\";s:14:\"share_position\";s:1:\"1\";s:15:\"share_canonical\";s:1:\"1\";s:12:\"share_groups\";s:1:\"*\";}s:8:\"facebook\";a:8:{s:8:\"share_id\";s:1:\"2\";s:11:\"share_title\";s:8:\"Facebook\";s:9:\"share_key\";s:8:\"facebook\";s:13:\"share_enabled\";s:1:\"0\";s:14:\"share_position\";s:1:\"2\";s:15:\"share_canonical\";s:1:\"1\";s:12:\"share_groups\";s:1:\"*\";s:12:\"customOutput\";a:3:{i:0;s:6:\"global\";i:1;s:19:\"facebookShareButton\";i:2;a:0:{}}}s:13:\"googleplusone\";a:8:{s:8:\"share_id\";s:1:\"3\";s:11:\"share_title\";s:15:\"Google Plus One\";s:9:\"share_key\";s:13:\"googleplusone\";s:13:\"share_enabled\";s:1:\"0\";s:14:\"share_position\";s:1:\"3\";s:15:\"share_canonical\";s:1:\"1\";s:12:\"share_groups\";s:1:\"*\";s:12:\"customOutput\";a:3:{i:0;s:6:\"global\";i:1;s:19:\"googlePlusOneButton\";i:2;a:1:{s:4:\"lang\";s:5:\"en-GB\";}}}s:4:\"digg\";a:7:{s:8:\"share_id\";s:1:\"4\";s:11:\"share_title\";s:4:\"Digg\";s:9:\"share_key\";s:"..., 16384) = 16384
23:33:17 read(3, "t\";s:11:\"uagent_name\";s:8:\"MSN/Bing\";s:12:\"uagent_regex\";s:24:\"msnbot[ /]([0-9.]{1,10})\";s:20:\"uagent_regex_capture\";s:1:\"1\";s:11:\"uagent_type\";s:6:\"search\";s:15:\"uagent_position\";s:2:\"15\";s:20:\"uagent_default_regex\";s:24:\"msnbot[ /]([0-9.]{1,10})\";}s:8:\"webcrawl\";a:8:{s:9:\"uagent_id\";s:3:\"284\";s:10:\"uagent_key\";s:8:\"webcrawl\";s:11:\"uagent_name\";s:8:\"WebCrawl\";s:12:\"uagent_regex\";s:13:\"webcrawl\\.net\";s:20:\"uagent_regex_capture\";s:1:\"0\";s:11:\"uagent_type\";s:6:\"search\";s:15:\"uagent_position\";s:2:\"16\";s:20:\"uagent_default_regex\";s:13:\"webcrawl\\.net\";}s:8:\"websense\";a:8:{s:9:\"uagent_id\";s:3:\"285\";s:10:\"uagent_key\";s:8:\"websense\";s:11:\"uagent_name\";s:8:\"Websense\";s:12:\"uagent_regex\";s:74:\"(Sqworm|websense|Konqueror/3\\.(0|1)(\\-rc[1-6])?; i686 Linux; 2002[0-9]{4})\";s:20:\"uagent_regex_capture\";s:1:\"0\";s:11:\"uagent_type\";s:6:\"search\";s:15:\"uagent_position\";s:2:\"17\";s:20:\"uagent_default_regex\";s:74:\"(Sqworm|websense|Konqueror/3\\.(0|1)(\\-rc[1-6])?; i686 Linux; 2002[0-9]{4})\";}s:5:\"yahoo\";a:8:{s:9"..., 14140) = 14140
23:33:17 read(3, "G\0\0*\5vnums1a:2:{s:4:\"long\";i:34010;s:5:\"human\";s:5:\"3.4.4\";}\0011\n1366317981\0010\5\0\0+\376\0\0\2\0", 16384) = 84
23:33:17 brk(0x2119000) = 0x2119000
23:33:17 brk(0x2159000) = 0x2159000
23:33:17 brk(0x2199000) = 0x2199000
23:33:17 brk(0x21d9000) = 0x21d9000
23:33:17 brk(0x2219000) = 0x2219000
23:33:17 brk(0x2259000) = 0x2259000
23:33:17 brk(0x2299000) = 0x2299000
23:33:17 brk(0x22d9000) = 0x22d9000
23:33:17 brk(0x2319000) = 0x2319000
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/session", {st_dev=makedev(145, 106), st_ino=165967273, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2012/06/15-12:40:27, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/session/publicSessions.php", {st_dev=makedev(145, 106), st_ino=165968251, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=96, st_size=48514, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/session/publicSessions.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968251, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=96, st_size=48514, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Public session handler\n * Last Updated: $Date: 2013-02-06 10:51:28 -0500 (Wed, 06 Feb 2013) $\n * \n *\n * @author \t\t$Author: mark $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t26th January 2004\n * @version\t\t$Revision: 11945 $\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass publicSessions extends ips_MemberRegistry\n{\n\t/**\n\t * SSO object (if present)\n\t *\n\t * @access\tprotected\n\t * @var\t\tobject\n\t */\n\tprotected $sso;\n\n\t/**\n\t * User agent trimmed\n\t *\n\t * @access\tprotected\n\t * @var\t\tstring\n\t */\n\tprotected $_userAgent;\n\n\t/**\n\t * Session recorded flag\n\t *\n\t * @var\t\tboolean\n\t * @access\tpublic\n\t */\n\tpublic $ses"..., 8192) = 8192
23:33:17 read(4, "k we're not specifically logged out of IPS Connect */\n\t\t\tif ( $ipsConnectEnabled and isset( $_COOKIE[ 'ipsconnect_' . md5( $ipsConnectSettings['master_url'] ) ] ) and !$_COOKIE[ 'ipsconnect_' . md5( $ipsConnectSettings['master_url'] ) ] )\n\t\t\t{\n\t\t\t\t$forceNoMember = TRUE;\n\t\t\t}\n\t\t\t\n\t\t\t/* Check Local */\n\t\t\tif ( !empty( $this->session_user_id ) and !$forceNoMember )\n\t\t\t{\n\t\t\t\tself::setMember( $this->session_user_id );\n\n\t\t\t\tif ( self::$data_store['member_id'] and self::$data_store['member_id'] != 0 )\n\t\t\t\t{\n\t\t\t\t\t$haveMember = TRUE;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t/* Check IPS Connect */\n\t\t\tif ( !$haveMember and !$forceNoMember )\n\t\t\t{\n\t\t\t\tif ( $ipsConnectEnabled and isset( $_COOKIE[ 'ipsconnect_' . md5( $ipsConnectSettings['master_url'] ) ] ) )\n\t\t\t\t{\n\t\t\t\t\tif ( $_COOKIE[ 'ipsconnect_' . md5( $ipsConnectSettings['master_url'] ) ] )\n\t\t\t\t\t{\n\t\t\t\t\t\trequire_once IPS_KERNEL_PATH . 'classFileManagement.php';\n\t\t\t\t\t\t$cfm = new classFileManagement();\n\t\t\t\t\t\t$return = $cfm->getFileContents( $ipsConnectSettings['mas"..., 8192) = 8192
23:33:17 brk(0x2359000) = 0x2359000
23:33:17 read(4, "ryOverride[ $sessionID ][ $key ] = $value;\n\t\t}\n\t}\n\t\n\t/**\n\t * Update a member's session\n\t *\n\t * @access\tprotected\n\t * @return\tboolean\t\tUpdated successfully\n\t */\n\tprotected function _updateMemberSession()\n\t{\t\n\t\t//-----------------------------------------\n\t\t// Make sure we have a session id.\n\t\t//-----------------------------------------\n\n\t\tif ( ! $this->session_id )\n\t\t{\n\t\t\t$this->_createMemberSession();\n\t\t\treturn true;\n\t\t}\n\n\t\tif ( ! self::$data_store['member_id'] )\n\t\t{\n\t\t\tself::setMember(0);\n\t\t\t$this->_createGuestSession();\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( ( time() - self::$data_store['last_activity'] ) > $this->settings['session_expiration'] )\n\t\t{\n\t\t\t// Session is expired - create new session\n\n\t\t\t$this->_createMemberSession();\n\t\t\treturn true;\n\t\t}\n\n\t\t//-----------------------------------------\n\t\t// Get module settings\n\t\t//-----------------------------------------\n\n\t\t$vars = $this->_getLocationSettings();\n\n\t\t//-----------------------------------------\n\t\t// Still update?\n\t\t//-------------------"..., 8192) = 8192
23:33:17 read(4, "// Still update?\n\t\t\t//-----------------------------------------\n\n\t\t\tif ( ! $this->do_update )\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tIPSDebug::addMessage( \"Creating MEMBER session: \" . $this->session_id );\n\n\t\t\t//-----------------------------------------\n\t\t\t// Get useragent stuff\n\t\t\t//-----------------------------------------\n\n\t\t\t$uAgent = $this->_processUserAgent( 'create' );\n\n\t\t\t//-----------------------------------------\n\t\t\t// Insert the new session\n\t\t\t//-----------------------------------------\n\n\t\t\t$data = array(\n\t\t\t\t\t\t\t'id'\t\t\t\t\t=> $this->session_id,\n\t\t\t\t\t\t\t'member_name'\t\t\t=> self::$data_store['members_display_name'],\n\t\t\t\t\t\t\t'seo_name'\t\t\t\t=> IPSMember::fetchSeoName( self::$data_store ),\n\t\t\t\t\t\t\t'member_id'\t\t\t\t=> intval(self::$data_store['member_id']),\n\t\t\t\t\t\t\t'member_group'\t\t\t=> self::$data_store['member_group_id'],\n\t\t\t\t\t\t\t'login_type'\t\t\t=> IPSMember::isLoggedInAnon( self::$data_store ),\n\t\t\t\t\t\t\t'running_time'\t\t\t=> IPS_UNIX_TIME_NOW,\n\t\t\t\t\t\t\t'ip_address'\t\t \t=> $this->_member->ip_address,\n\t\t\t\t\t"..., 8192) = 8192
23:33:17 brk(0x2399000) = 0x2399000
23:33:17 read(4, "_data = array( 'uagent_key'\t => $uAgent['uagent_key'],\n\t\t\t\t\t\t\t\t\t 'uagent_version' => $uAgent['uagent_version'],\n\t\t\t\t\t\t\t\t\t 'uagent_type'\t => $uAgent['uagent_type'],\n\t\t\t\t\t\t\t\t\t 'uagent_bypass' => $uAgent['uagent_bypass'],\n\t\t\t\t\t\t\t\t\t 'id' => $data['id'] );\n\n\t\t/* Before this function is called, a guest is set up via ipsRegistry::setMember(0)\n\t\t We want to override this now to provide search engine settings for the 'member' */\n\n\t\tif ( $uAgent['uagent_type'] == 'search' )\n\t\t{\n\t\t\tself::setSearchEngine( $uAgent );\n\n\t\t\t/* Reset some data */\n\t\t\t$this->session_type = 'cookie';\n\t\t\t//$this->session_id = \"\";\n\t\t}\n\n\t\t/* Set type */\n\t\tself::$data_store['_sessionType'] = 'create';\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Converts a guest session to a member session\n\t *\n\t * @access\tpublic\n\t * @param\tarray \t\tArray of incoming data (member_id, member_name, member_group, login_type)\n\t * @param\tarray \t\tOptional array of member data (prevents having to reload it)\n\t * @return\tstring \t\tCurrent session ID\n\t"..., 8192) = 8192
23:33:17 read(4, "\t\t\t\t 'uagent_name' => '',\n\t\t\t\t\t\t 'uagent_type' => '',\n\t\t\t\t\t\t 'uagent_bypass' => 0 );\n\n\t\t//-----------------------------------------\n\t\t// Do we need to update?\n\t\t//-----------------------------------------\n\t\t\n\t\tif ( IPSCookie::get('mobileApp') == 'true' )\n\t\t{\n\t\t\t$uAgent = array( 'uagent_id' => -1,\n\t\t\t\t\t\t\t 'uagent_key' => 'ipsMobileLegacy',\n\t\t\t\t\t\t\t 'uagent_name' => 'IPS Mobile Legacy',\n\t\t\t\t\t\t\t 'uagent_type' => 'mobileAppLegacy',\n\t\t\t\t\t\t\t 'uagent_version' => 1 );\n\t\t}\n\t\telse if ( empty( $this->session_data['uagent_key'] ) OR $this->session_data['uagent_key'] == '__NONE__' OR ( $this->_userAgent != $this->session_data['browser'] ) )\n\t\t{\n\t\t\tIPSDebug::addMessage( \"Retreiving user agent information from the DB\" );\n\n\t\t\t//-----------------------------------------\n\t\t\t// Get useragent stuff\n\t\t\t//-----------------------------------------\n\n\t\t\tif ( ! $this->registry->isClassLoaded( 'userAgentFunctions' ) )\n\t\t\t{\n\t\t\t\t$classToLoad = IPSLib::loadLibrary( IPS_ROOT_PATH . 'sources/clas"..., 8192) = 7554
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/sources/classes/session/ssoPublicSessions.php", 0x7fff020313c0) = -1 ENOENT (No such file or directory)
23:33:17 stat("/home/simsasyl/public_html/tfm/admin//sources/classes/session/sso.php", 0x7fff0202d450) = -1 ENOENT (No such file or directory)
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "C\0\0\0\3SELECT * FROM sessions WHERE id='18d2cde0545839e32cb14df4a10effd9'", 71) = 71
23:33:17 read(3, "\1\0\0\1\0326\0\0\2\3def\fsimsasyl_ipb\10sessions\10sessions\2id\2id\f\10\0<\0\0\0\375\3@\0\0\0H\0\0\3\3def\fsimsasyl_ipb\10sessions\10sessions\vmember_name\vmember_name\f\10\0\377\0\0\0\375\0\0\0\0\0B\0\0\4\3def\fsimsasyl_ipb\10sessions\10sessions\10seo_name\10seo_name\f\10\0\377\0\0\0\375\1\0\0\0\0D\0\0\5\3def\fsimsasyl_ipb\10sessions\10sessions\tmember_id\tmember_id\f?\0\10\0\0\0\t\t@\0\0\0F\0\0\6\3def\fsimsasyl_ipb\10sessions\10sessions\nip_address\nip_address\f\10\0.\0\0\0\375\10@\0\0\0@\0\0\7\3def\fsimsasyl_ipb\10sessions\10sessions\7browser\7browser\f\10\0\310\0\0\0\375\1\0\0\0\0J\0\0\10\3def\fsimsasyl_ipb\10sessions\10sessions\frunning_time\frunning_time\f?\0\n\0\0\0\3\10@\0\0\0F\0\0\t\3def\fsimsasyl_ipb\10sessions\10sessions\nlogin_type\nlogin_type\f?\0\1\0\0\0\1\0\0\0\0\0J\0\0\n\3def\fsimsasyl_ipb\10sessions\10sessions\fmember_group\fmember_group\f?\0\3\0\0\0\2\0\0\0\0\0B\0\0\v\3def\fsimsasyl_ipb\10sessions\10sessions\10in_error\10in_error\f?\0\1\0\0\0\1\1\0\0\0\0P\0\0\f\3def\fsimsasyl_ipb\10sessions\10sessions\17location_1_type\17location_1_type\f\10\0\377\0\0\0\375\t@\0\0\0L\0\0\r\3def\fsimsasyl_ipb\10sessions\10sessions\rlocation_1_id\rlocation_1_id\f?\0\n\0\0\0\3\1@\0\0\0P\0\0\16\3def\fsimsasyl_ipb\10sessions\10sessions\17location_2_type\17location_2_type\f\10\0\377\0\0\0\375\t@\0\0\0L\0\0\17\3def\fsimsasyl_ipb\10session"..., 16384) = 2320
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreExtensions.php", {st_dev=makedev(145, 106), st_ino=165967019, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=23817, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions", {st_dev=makedev(145, 106), st_ino=165965866, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/18-15:37:20, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreExtensions.php", {st_dev=makedev(145, 106), st_ino=165967019, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=23817, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreExtensions.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967019, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=23817, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Forum permissions mappings\n * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $\n * \n *\n * @author \t\t$author$\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 10721 $ \n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n * Class name must be (app)ShareLinks\n */\nclass forumsShareLinks\n{\n\t/**\n\t * Shortcuts\n\t *\n\t * @var\tobject\n\t */\n\tprotected $DB;\n\tprotected $registry;\n\t\n\t/**\n\t * Constructor\n\t *\n\t * @return\t@e void\n\t */\n\tpublic function __construct()\n\t{\n\t\t$this->DB \t\t= ipsRegistry::DB();\n\t\t$this->registry = ipsRegistry::instance();\n\t}\n\t\n\t/**\n\t * Deconstruct the URL\n\t *\n"..., 8192) = 8192
23:33:17 read(4, "_view' => $r['perm_view'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_2' => $r['perm_2'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_3' => $r['perm_3'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_4' => $r['perm_4'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_5' => $r['perm_5'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_6' => $r['perm_6'],\n\t\t\t\t\t\t\t\t\t\t\t\t'perm_7' => $r['perm_7'],\n\t\t\t\t\t\t\t\t\t\t\t\t'restrict' => $r['parent_id'] == 'root' ? 'perm_view' : '',\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t}\n\t\t\n\t\treturn $return_arr;\n\t\t\n\t}\n}\n\n/**\n * \n * Invision Power Services\n * IP.Board v3.4.4\n * Item Marking\n * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $\n *
\n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 10721 $\n */\n\nclass itemMarking__forums\n{\n\t/**\n\t * Field Convert Data Remap Array\n\t *\n\t * This is where you can map your app_key_# numbers to application savvy fields\n\t * \n\t * @v"..., 8192) = 8192
23:33:17 read(4, " \t{\n \t\t$array = array( \n \t\t\t\t\t\t 'location_2_type' => 'forum',\n \t\t\t\t\t\t 'location_2_id' => intval(ipsRegistry::$request['f']) );\n \t}\n \t\n \t//-----------------------------------------\n \t// TOPIC\n \t//-----------------------------------------\n \t\n \telse if ( ipsRegistry::$request['module'] == 'forums' AND ipsRegistry::$request['section'] == 'topics' AND !empty( ipsRegistry::$request['t'] ) )\n \t{\n \t\t$array = array( \n \t\t\t\t\t\t 'location_1_type' => 'topic',\n \t\t\t\t\t\t 'location_1_id' => intval(ipsRegistry::$request['t']),\n \t\t\t\t\t\t 'location_2_type' => 'forum',\n \t\t\t\t\t\t 'location_2_id' => intval(ipsRegistry::$request['f']) );\n \t}\n \t\n \t//-----------------------------------------\n \t// POST\n \t//-----------------------------------------\n \t\n \telse if ( ipsRegistry::$request['module'] == 'post' AND !empty( ipsRegistry::$request['f'] ) )\n \t{\n \t\t$array = array( \n \t\t\t \t\t\t 'location_1_type' => 'topic',\n \t\t\t\t\t\t "..., 8192) = 7433
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/class_localization.php", {st_dev=makedev(145, 106), st_ino=165968159, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=56, st_size=24636, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:13, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/class_localization.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968159, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=56, st_size=24636, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:13, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Localization Class.\n *\n * Used for handling language text, money formatting, etc.\n * Last Updated: $Date: 2013-03-28 12:57:17 -0400 (Thu, 28 Mar 2013) $\n * \n * \n * @author\t\tJoshua Williams \n * @version\t\t$Rev: 12134 $\n * @since\t\t1.0\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @link\t\thttp://www.invisionpower.com\n * @package\t\tIP.Board\n */ \n\nclass class_localization\n{\n /**\n * Current offset\n *\n * @access\tpublic\n * @var\t\tinteger\n */\t\n\tpublic $offset;\n\n /**\n * Current day\n *\n * @access\tpublic\n * @var\t\tinteger\n */\t\n\tpublic $day;\n\t\n\t/**#@+\n\t* Registry Object Shortcuts\n\t*\n\t* @access\tprotected\n\t* @var\t\tobject\n\t*/\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tprotected $request;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\tprotected $cache;\n\tpro"..., 8192) = 8192
23:33:17 read(4, " * @return\tstring\n\t */\t\t \n\tpublic function formatMoney( $amount, $color=true, $force_color='' )\n\t{\n\t\t/* Format the money */\n\t\tif( function_exists( 'money_format' ) )\n\t\t{\n\t\t\t$formatted = money_format( '%n', doubleval( $amount ) );\n\t\t}\n\t\telse \n\t\t{\n\t\t\t$formatted = $this->local_data['currency_symbol'] . ' ' . $this->formatNumber( $amount, 2 );\n\t\t}\n\n\t\t/* Color the number */\n\t\tif( ! $force_color )\n\t\t{\n\t\t\tif( $color )\n\t\t\t{\n\t\t\t\tif( $amount >= 0 )\n\t\t\t\t{\n\t\t\t\t\t$formatted = \"{$formatted}\";\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$formatted = \"{$formatted}\";\n\t\t\t\t}\t\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tif( $color )\n\t\t\t{\n\t\t\t\t$formatted = \"{$formatted}\";\t\n\t\t\t}\t\t\t\n\t\t}\n\n\t\treturn $formatted;\t\t\n\t}\n\t\n\t/**\n\t * Formats a number based on localized data\n\t *\n\t * @access\tpublic\n\t * @param\tfloat\t$number\t\tNumber to format\n\t * @param\tinteger\t[$places]\tDecimal places\n\t * @return\tfloat\n\t */\n\tpublic function formatNumber( $n"..., 8192) = 8192
23:33:17 read(4, "Offset();\n\n\t\t\t$this->offset_set = 1;\n }\n\n return $this->_fix( @gmstrftime($method, ($date + $this->offset) ) );\n }\n\n /**\n\t * Returns the member's time zone offset\n\t *\n\t * @access\tpublic\n\t * @param\tbool\tIgnore the ACP adjustment\n\t * @return\tstring\n\t * @since\t2.0\n\t */\n public function getTimeOffset( $ignoreAdjustment=false )\n {\n \t$r = 0;\n\t\t\n \t$this->settings['time_offset'] = ( ! empty( $this->settings['time_offset'] ) ) ? $this->settings['time_offset'] : 0;\n \t$this->memberData['time_offset'] = ( isset( $this->memberData['time_offset'] ) ) ? $this->memberData['time_offset'] : null;\n \t\n \t$r = ( ( $this->memberData['time_offset'] !== null ) ? $this->memberData['time_offset'] : $this->settings['time_offset'] ) * 3600;\n\n\t\tif ( $this->settings['time_adjust'] AND !$ignoreAdjustment )\n\t\t{\n\t\t\t$r += ($this->settings['time_adjust'] * 60);\n\t\t}\n\t\t\n\t\tif ( !empty($this->memberData['dst_in_use']) )\n\t\t{\n\t\t\t$r += 3600;\n\t\t}\n \t\n \treturn $r;\n\t}\n\t\n /**\n\t * C"..., 8192) = 8192
23:33:17 brk(0x23d9000) = 0x23d9000
23:33:17 read(4, "return str_replace( \"index=&\", \"index?\", $link);\n\t }\n\t\n}", 8192) = 60
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/locale-archive", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 123), st_ino=4220502, st_mode=S_IFCHR|0666, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_rdev=makedev(1, 3), st_atime=2013/07/11-21:36:18, st_mtime=2013/07/11-21:36:18, st_ctime=2013/07/11-21:36:25}) = 0
23:33:17 mmap(NULL, 0, PROT_READ, MAP_PRIVATE, 4, 0) = -1 ENOMEM (Cannot allocate memory)
23:33:17 close(4) = 0
23:33:17 open("/usr/share/locale/locale.alias", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=167522638, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2528, st_atime=2013/06/26-17:55:53, st_mtime=2013/05/30-16:09:36, st_ctime=2013/06/26-17:55:53}) = 0
23:33:17 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7faf32f2a000
23:33:17 read(4, "# Locale name alias data base.\n# Copyright (C) 1996-2001,2003 Free Software Foundation, Inc.\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n# The format of this file is the same as for the corresponding file of\n# the X Window System, which normally can be found in\n#\t/usr/lib/X11/locale/locale.alias\n# A single line contains two fields: an alias and a substi"..., 4096) = 2528
23:33:17 read(4, "", 4096) = 0
23:33:17 close(4) = 0
23:33:17 munmap(0x7faf32f2a000, 4096) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_IDENTIFICATION", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339291, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=378, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 378, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32f28000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_MEASUREMENT", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339292, st_mode=S_IFREG|0644, st_nlink=3, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=28, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 28, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32f20000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_TELEPHONE", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339294, st_mode=S_IFREG|0644, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=64, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:10}) = 0
23:33:17 mmap(NULL, 64, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d88000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_ADDRESS", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339290, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=160, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 160, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d80000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_NAME", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339187, st_mode=S_IFREG|0644, st_nlink=3, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=82, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:04, st_ctime=2013/06/26-17:50:10}) = 0
23:33:17 mmap(NULL, 82, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d78000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_PAPER", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339154, st_mode=S_IFREG|0644, st_nlink=5, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=39, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:12:59, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 39, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d70000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_MESSAGES", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166338752, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/31-04:24:04, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339123, st_mode=S_IFREG|0644, st_nlink=11, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=57, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:12:54, st_ctime=2013/06/26-17:50:10}) = 0
23:33:17 mmap(NULL, 57, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d68000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_MONETARY", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339293, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=291, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 291, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d60000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_COLLATE", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166338282, st_mode=S_IFREG|0644, st_nlink=43, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=40, st_size=19451, st_atime=2013/06/26-17:50:01, st_mtime=2013/05/30-16:10:52, st_ctime=2013/06/26-17:50:12}) = 0
23:33:17 mmap(NULL, 19451, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d58000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_TIME", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166339295, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2459, st_atime=2013/06/26-17:50:05, st_mtime=2013/05/30-16:13:22, st_ctime=2013/06/26-17:50:05}) = 0
23:33:17 mmap(NULL, 2459, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d50000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_NUMERIC", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166338339, st_mode=S_IFREG|0644, st_nlink=22, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=59, st_atime=2013/06/26-17:50:01, st_mtime=2013/05/30-16:11:00, st_ctime=2013/06/26-17:50:12}) = 0
23:33:17 mmap(NULL, 59, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf32d48000
23:33:17 close(4) = 0
23:33:17 open("/usr/lib/locale/en_US/LC_CTYPE", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166338284, st_mode=S_IFREG|0644, st_nlink=73, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=408, st_size=207804, st_atime=2013/06/26-17:50:01, st_mtime=2013/05/30-16:10:52, st_ctime=2013/06/26-17:50:12}) = 0
23:33:17 mmap(NULL, 207804, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7faf2c2b0000
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/class_public_permissions.php", {st_dev=makedev(145, 106), st_ino=165968161, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=19533, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:13, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/class_public_permissions.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968161, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=19533, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:13, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Manages public permissions\n * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $\n * \n *\n * @author \t\tJoshua Williams\n * @package\t\tIP.Board\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @link\t\thttp://www.invisionpower.com\n * @since\t\tWednesday 14th May 2008 14:00\n */\n\nclass classPublicPermissions\n{\n\t/**#@+\n\t * Registry objects\n\t *\n\t * @var\t\tobject\n\t */\n\tprotected $registry;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\t/**#@-*/\n\t\n\t/**\n\t * Array of permission mappings for each app/type\n\t *\n\t * @var\t\tarray\n\t */\n\tprotected $mappings = array();\n\t\n\t/**\n\t * Ability to set a different member for permission checks, etc\n\t * @var array\n\t */\n\tprotected $_memberData = array();\n\t\n\t/**\n\t * Constructer\n\t *\n\t * @param\tobject\tipsRegistry $registry\n\t * @return\t@e void\n\t */\n\tpublic function __construct( ipsRe"..., 8192) = 8192
23:33:17 read(4, "nfig'];\n\t\t\t }\n\t\t\t\n\t\t\t/* Add row to matrix */\n\t\t\t$perm_matrix[ $id . '%' . $data['title'] ] = $matrix_row;\t\t\t\n\t\t}\n\n\t\t/* Return the matrix */\n\t\treturn $html->permissionSetMatrix( $perm_names, $perm_matrix, $perm_checked, $map_class->getPermColors(), $app, $type );\n\t}\n\t\n\t/**\n\t * Builds a permission selection matrix\n\t *\n\t * @param\tstring\t\t$type\t\t\tThe permission type to build\n\t * @param\tarray\t\t$default\t\tCurrent permissions\n\t * @param\tstring\t\t$app\t\t\tApp that the type belongs too, default is the current app\n\t * @param\tstring\t\t$only_perm\t\tOnly show this permission\n\t * @param\tboolean\t\t$addOutsideBox\tAdd or not the outside acp-box\n\t * @return\t@e string\tHTML\n\t */\n\tpublic function adminPermMatrix( $type, $default, $app='', $only_perm='', $addOutsideBox=true )\n\t{\n\t\t/* INI */\n\t\t$app = ( $app ) ? $app : ipsRegistry::$current_application;\n\t\t$map_class = $app .'PermMapping' . ucfirst( $type );\n\t\t$perm_names = array();\n\t\t$perm_matrix = array();\n\t\t$perm_checked = array();\n\t\t$perm_map ="..., 8192) = 8192
23:33:17 read(4, "ngs too, default is the current app\n\t * @return\tbool\n\t */\t\n\tpublic function savePermMatrix( $perm_matrix, $type_id, $type, $app='' )\n\t{\n\t\t/* INI */\n\t\t$app = ( $app ) ? $app : ipsRegistry::$current_application;\n\t\t$map_class = $app . 'PermMapping' . ucfirst( $type );\n\t\t$mapping_array = array();\n\t\t$perm_save_row = array();\n\t\t\n\t\t/* Get Mappings */\n\t\t$classToLoad = IPSLib::loadLibrary( IPSLib::getAppDir( $app ) . '/extensions/coreExtensions.php', $map_class, $app );\n\t\t$mapping = new $classToLoad();\n\t\t$mapping_array = $mapping->getMapping();\n\t\t$customTable = ( method_exists( $mapping, 'getCustomTable' ) ) ? $mapping->getCustomTable() : false;\n\n\t\t/* Loop through mapping and build save array */\n\t\tforeach( $mapping_array as $k => $col )\n\t\t{\n\t\t\t/* Setup the column */\n\t\t\t$perm_save_row[$col] = '';\n\t\t\t\n\t\t\t/* Check the matrix for this perm */\t\t\t\n\t\t\tif( $perm_matrix[$type . $k] )\n\t\t\t{\n\t\t\t\t/* Global? */\n\t\t\t\tif( !empty( $perm_matrix[$type . $k]['*'] ) )\n\t\t\t\t{\n\t\t\t\t\t$perm_save_row[$c"..., 8192) = 3149
23:33:17 read(4, "", 8192) = 0
23:33:17 brk(0x2419000) = 0x2419000
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/app_class_forums.php", {st_dev=makedev(145, 106), st_ino=165967014, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=9244, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:04, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/app_class_forums.php", {st_dev=makedev(145, 106), st_ino=165967014, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=9244, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:04, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/app_class_forums.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967014, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=9244, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:04, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Forums application initialization\n * Last Updated: $LastChangedDate: 2012-10-11 15:18:51 -0400 (Thu, 11 Oct 2012) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t14th May 2003\n * @version\t\t$Rev: 11444 $\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n * @author matt\n *\n */\nclass app_class_forums\n{\n\t/**#@+\n\t * Registry Object Shortcuts\n\t *\n\t * @var\t\tobject\n\t */\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tprotected $request;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\tprotected $cache;\n\tprotected $caches;\n\t/**#@-"..., 8192) = 8192
23:33:17 read(4, "e_seo'], 'showforum' ) );\n\t\t\t}\n\t\t}\n\t\telse if ( !empty( $_GET['showannouncement'] ) )\n\t\t{\n\t\t\t$announce\t= $this->caches['announcements'][ intval( $_GET['showannouncement'] ) ];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\tif ( $announce['announce_id'] )\n\t\t\t{\n\t\t\t\t$_seoTitle\t= $announce['announce_seo_title'] ? $announce['announce_seo_title'] : IPSText::makeSeoTitle( $announce['announce_title'] );\n\t\t\t\t\n\t\t\t\t$this->registry->getClass('output')->checkPermalink( $_seoTitle );\n\t\t\t\t\n\t\t\t\t/* Add canonical tag */\n\t\t\t\tif( $announce['announce_id'] )\n\t\t\t\t{\n\t\t\t\t\t$this->registry->getClass('output')->addCanonicalTag( 'showannouncement=' . $announce['announce_id'] . ( $_GET['f'] ? '&f=' . intval($_GET['f']) : '&f=0' ), $_seoTitle, 'showannouncement' );\n\t\t\t\t\t\n\t\t\t\t\t/* Store root doc URL */\n\t\t\t\t\t$this->registry->getClass('output')->storeRootDocUrl( $this->registry->getClass('output')->buildSEOUrl( 'showannouncement=' . $announce['announce_id'] . ( $_GET['f'] ? '&f=' . intval($_GET['f']) : '&f=0' ), 'publicNoSession', $_s"..., 8192) = 1052
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources", {st_dev=makedev(145, 106), st_ino=165965872, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:10:03, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes", {st_dev=makedev(145, 106), st_ino=165965911, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:12:18, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes/forums", {st_dev=makedev(145, 106), st_ino=165965912, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:12:16, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes/forums/class_forums.php", {st_dev=makedev(145, 106), st_ino=165967190, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=152, st_size=76882, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:02:25, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes/forums/class_forums.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967190, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=152, st_size=76882, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:02:25, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Forums Class\n * Last Updated: $Date: 2013-03-27 20:18:32 -0400 (Wed, 27 Mar 2013) $\n * \n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t26th January 2004\n * @version\t\t$Rev: 12132 $\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass class_forums\n{\n\t/**\n\t * Cache of visible forums\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $forum_cache\t\t= array();\n\t\n\t/**\n\t * Cache of all forums, regardless of perms\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $allForums\t\t= array();\n\t\n\t/**\n\t * Cache of visible forums mapped by ID\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $forum_by_id\t\t= array();\n\t\n\t/**\n"..., 8192) = 8192
23:33:17 read(4, "0;\n\t\t\t\t$fr['can_view_others']\t\t= 0;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$fr = $f;\n\n\t\t\t\t$fr['description'] = isset( $f['description'] ) ? $f['description'] : '';\n\t\t\t}\n\t\t\t\n\t\t\t$fr = array_merge( $fr, $this->registry->permissions->parse( $f ) );\n\n\t\t\t/* Unpack bitwise fields */\n\t\t\t$_tmp = IPSBWOptions::thaw( $fr['forums_bitoptions'], 'forums', 'forums' );\n\n\t\t\tif ( count( $_tmp ) )\n\t\t\t{\n\t\t\t\tforeach( $_tmp as $k => $v )\n\t\t\t\t{\n\t\t\t\t\t/* Trigger notice if we have DB field */\n\t\t\t\t\tif ( isset( $fr[ $k ] ) )\n\t\t\t\t\t{\n\t\t\t\t\t\ttrigger_error( \"Thawing bitwise options for FORUMS: Bitwise field '$k' has overwritten DB field '$k'\", E_USER_WARNING );\n\t\t\t\t\t}\n\n\t\t\t\t\t$fr[ $k ] = $v;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t/* Add... */\n\t\t\t$forums_list[ $fr['id'] ] = $fr;\n\t\t}\n\n\t\t$this->allForums\t= $forums_list;\n\t\t\n\t\t/**\n\t\t * Update forums table if SEO name wasn't cached yet\n\t\t */\n\t\tif( count($update_seo) )\n\t\t{\n\t\t\tforeach( $update_seo as $k => $v )\n\t\t\t{\n\t\t\t\t$this->DB->update( 'forums', array( 'name_seo' => $v ), 'id=' . $k );\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $foru"..., 8192) = 8192
23:33:17 brk(0x2459000) = 0x2459000
23:33:17 read(4, "groups );\n\t\t\t}\n\t\t\t\n\t\t\t$other_mgroups[]\t= $this->_memberData['member_group_id'];\n\n\t\t\t$this->DB->build( array( \n\t\t\t\t\t\t\t\t\t'select' => '*',\n\t\t\t\t\t\t\t\t\t'from' => 'moderators',\n\t\t\t\t\t\t\t\t\t'where' => \"(member_id='\" . $this->_memberData['member_id'] . \"' OR (is_group=1 AND group_id IN(\" . implode( \",\", $other_mgroups ) . \")))\" \n\t\t\t\t\t\t\t)\t);\n\t\t\t\t\t\t\t\t\t\t \n\t\t\t$this->DB->execute();\n\t\t\t\n\t\t\t//-----------------------------------------\n\t\t\t// We do it this way to allow member-specific mod privileges\n\t\t\t// to override group-inherited mod privileges\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\twhile ( $moderator = $this->DB->fetch() )\n\t\t\t{\n\t\t\t\tif ( $moderator['member_id'] == $this->_memberData['member_id'] )\n\t\t\t\t{\n\t\t\t\t\treturn $moderator;\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$permissions\t= $moderator;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $permissions;\n\t}\n\t\n\t/**\n\t * Get Moderators\n\t *\n\t * @param\tinteger\t$forum_id\n\t * @return\tstring\n\t */\n\tpublic function forumsGetModerators( $forum_id=\"\" )\n\t{\n\t\tif ( ! $this->mod_cache_go"..., 8192) = 8192
23:33:17 read(4, "$this->registry->getClass('output')->sendOutput();\n\t}\n\t\n\t/**\n\t * Find all the parents of a child without getting the nice lady to \n\t * use the superstore tannoy to shout \"Small ugly boy in tears at reception\"\n\t *\n\t * @param\tinteger\t$root_id\n\t * @param\tarray \t$ids\n\t * @return\tarray\n\t */\n\tpublic function forumsGetParents( $root_id, $ids=array() )\n\t{\n\t\tif ( $this->forum_by_id[ $root_id ]['parent_id'] and $this->forum_by_id[ $root_id ]['parent_id'] != 'root' )\n\t\t{\n\t\t\t$ids[] = $this->forum_by_id[ $root_id ]['parent_id'];\n\t\t\t\n\t\t\t// Stop endless loop setting cat as it's own parent?\n\t\t\tif ( in_array( $root_id, $ids ) )\n\t\t\t{\n\t\t\t\t//return $ids;\n\t\t\t}\n\t\t\t\n\t\t\t$ids = $this->forumsGetParents( $this->forum_by_id[ $root_id ]['parent_id'], $ids );\n\t\t}\n\t\n\t\treturn $ids;\n\t}\n\n\t/**\n\t * Get all the children\n\t *\n\t * @param\tinteger\t$root_id\n\t * @param\tarray \t$ids\n\t * @return\tarray\n\t */\n\tpublic function forumsGetChildren( $root_id, $ids=array() )\n\t{\n\t\tif ( isset( $this->forum_cache[ $root_id ]) AND is_array( $th"..., 8192) = 8192
23:33:17 read(4, "data['id']}\\\"\".$selected.\"> |\".$depth_guide.\" \".$forum_data['name'].\"\\n\";\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$jump_string = $this->_forumsForumJumpInternal( $forum_data['id'], $jump_string, $depth_guide . $this->depth_guide, $html, $override, $remove_redirects, $defaulted );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $jump_string;\n\t}\n\t\n\t/**\n\t * Internal helper function for forumsForumJump\n\t *\n\t * @param\tinteger\t$root_id\n\t * @param\tstring\t$jump_string\n\t * @param\tstring\t$depth_guide\n\t * @param\tbool\t$html\n\t * @param\tbool\t$override\n\t * @param\tbool\t$remove_redirects\n\t * @param\tarray\t$defaulted\n\t * @return\tstring\n\t */\n\tprotected function _forumsForumJumpInternal( $root_id, $jump_string=\"\", $depth_guide=\"\",$html=0, $override=0, $remove_redirects=0, $defaulted=array() )\n\t{\n\t\tif ( isset($this->forum_cache[ $root_id ]) AND is_array( $this->forum_cache[ $root_id ] ) )\n\t\t{\n\t\t\tforeach( $this->forum_cache[ $root_id ] as $forum_data )\n\t\t\t{\n\t\t\t\tif( $remove_redirects == 1 AND $forum_data['redirect"..., 8192) = 8192
23:33:17 brk(0x2499000) = 0x2499000
23:33:17 read(4, "0 )\n\t{\n\t\t$return = 0;\n\t\t$_mod = $this->_memberData['forumsModeratorData'];\n\t\t\n\t\tif ( $this->_memberData['g_is_supmod'] )\n\t\t{\n\t\t\t$return = 1;\n\t\t}\n\t\telse if ( $fid AND $this->_memberData['is_mod'] AND !empty($_mod[ $fid ]['post_q']) )\n\t\t{\n\t\t\t$return = 1;\n\t\t}\n\t\t\n\t\treturn $return;\n\t}\n\t\n\t/**\n\t * Determine if this user / forum combo can soft delete\n\t *\n\t * @param\tinteger\tForum ID\n\t * @param\tarray\tPost information\n\t * @return\tinteger Boolean\n\t */\n\tpublic function canSoftDeletePosts( $fid=0, $post )\n\t{\n\t\tif ( $fid and $this->_memberData['is_mod'] and !empty( $this->_memberData['forumsModeratorData'][ $fid ]['bw_mod_soft_delete'] ) )\n\t\t{\n\t\t\treturn TRUE;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn IPSMember::canModerateContent( $this->_memberData, IPSMember::CONTENT_HIDE, $post['author_id'] );\n\t\t}\n\t}\n\t\n\t/**\n\t * Determine if this user / forum combo can hard delete\n\t *\n\t * @param\tinteger\tForum ID\n\t * @param\tarray\tPost information\n\t * @return\tinteger Boolean\n\t */\n\tpublic function canHardDeletePosts( $fid=0, $post )"..., 8192) = 8192
23:33:17 read(4, "s several or one field through ->fetchPostHiddenQuery( array('hidden', 'sdelete' ) );\n\t *\n\t * @param\tarray\t\tType: 'sdelete', 'hidden', 'visible', 'notVisible' (notVisible can mean either sDelete or hidden)\n\t * @param\tstring\t\tTable prefix (t.)\n\t * @return\tstring\n\t */\n\tpublic function fetchTopicHiddenQuery( $type, $tPrefix='' )\n\t{\n\t\t$type = ( is_array( $type ) ) ? $type : array( $type );\n\t\t$values = array();\n\t\t\n\t\tif ( in_array( 'all', $type ) )\n\t\t{\n\t\t\treturn '1=1';\n\t\t}\n\t\t\n\t\tforeach( $type as $_t )\n\t\t{\n\t\t\tswitch( $_t )\n\t\t\t{\n\t\t\t\tcase 'sdeleted':\n\t\t\t\tcase 'sdelete':\n\t\t\t\t\t$values[] = -1;\n\t\t\t\tbreak;\n\t\t\t\tcase 'queued':\n\t\t\t\tcase 'hidden':\n\t\t\t\t\t$values[] = 0;\n\t\t\t\tbreak;\n\t\t\t\tcase 'approved':\n\t\t\t\tcase 'visible':\n\t\t\t\t\t$values[] = 1;\n\t\t\t\tbreak;\n\t\t\t\tcase 'pdelete':\n\t\t\t\tcase 'pdeleted':\n\t\t\t\t\t$values[] = 2;\n\t\t\t\tbreak;\n\t\t\t\tcase 'oktoremove':\n\t\t\t\t\t$values[] = 3;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t\n\t\tif ( count( $values ) )\n\t\t{\n\t\t\tif ( count( $values ) == 1 )\n\t\t\t{\n\t\t\t\treturn ' ' . $tPrefix . 'approved=' . $values[0]"..., 8192) = 8192
23:33:17 read(4, "\t\t\t 'where'\t=> $this->fetchTopicArchiveQuery( array( 'not', 'exclude' ) ) . ' AND ' . $this->fetchTopicHiddenQuery( array( 'visible' ), '' ) . \" and forum_id={$fid}\" ) );\n\t\t\n\t\t/* Queued posts */\n\t\t$queued_posts\t= $this->DB->buildAndFetch( array( 'select'\t=> 'SUM(topic_queuedposts) as replies',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'from'\t=> 'topics',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'where'\t=> $this->fetchTopicArchiveQuery( array( 'not', 'exclude' ) ) . ' AND ' . $this->fetchTopicHiddenQuery( array( 'visible', 'hidden' ), '' ) . \" and forum_id={$fid}\" ) );\n\t\t\n\t\t/* Deleted posts */\n\t\t$deleted_posts\t= $this->DB->buildAndFetch( array( 'select'\t=> 'SUM(topic_deleted_posts) as replies',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'from'\t=> 'topics',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'where'\t=> $this->fetchTopicArchiveQuery( array( 'not', 'exclude' ) ) . ' AND ' . \"forum_id={$fid}\" ) );\n\t\t\n\t\t/* Archived posts */\n\t\t$archived_posts\t= $this->DB->buildAndFetch( array( 'select'\t=> 'SUM(posts) as replies',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'from'\t=> 'topics',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'where'\t=> $thi"..., 8192) = 8192
23:33:17 brk(0x24d9000) = 0x24d9000
23:33:17 read(4, "y( $moderators['group_id'], $other_mgroups ) )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif( $moderators['forum_id'] == $t['forum_id'] )\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$mod = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tif( !$mod )\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn true;\n\t}\n\t\n\t/**\n\t * Does a guest have access to this forum?\n\t *\n\t * @param\tint\t\t\tForum ID\n\t * @param\tint\t\t\tOverride guest group with another (Facebook bot, spider search engine bots)\n\t * @return\tboolean\n\t * @author\tMatt\n\t */\n\tpublic function guestCanSeeTopic( $forumId=0, $groupOverride=0 )\n\t{\n\t\t$forumId\t= ( $forumId ) ? $forumId : intval( $this->request['f'] );\n\t\t$gid\t\t= ( $groupOverride ) ? $groupOverride : $this->settings['guest_group'];\n\t\t$perms\t\t= explode( ',', IPSText::cleanPermString( $this->caches['group_cache'][ $gid ]['g_perm_id'] ) );\n\n\t\tif ( $forumId )\n\t\t{\n\t\t\t$forum = $this->forum_by_id[ $forumId ];\n\t\t\t\n\t\t\tif ( strstr( $forum['perm_read'], '*' ) )\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tforeach( $perms as $_perm )\n\t\t\t\t{\n\t\t\t\t\tif ( strstr("..., 8192) = 8192
23:33:17 read(4, "ings['vnp_block_forums'] );\n\t\t\n\t\t$this->registry->class_localization->loadLanguageFile( array( 'public_topic', 'public_forums' ), 'forums' );\n\t\t\n\t\t/* Grab last X data */\n\t\tforeach( $this->forum_by_id as $forumID => $forumData )\n\t\t{\n\t\t\tif ( ! $forumData['can_view_others'] AND ! $this->_memberData['is_mod'] )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\tif ( $forumData['password'] != '' )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\tif ( ! $this->registry->permissions->check( 'read', $forumData ) )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\tif ( is_array( $bvnp ) AND count( $bvnp ) )\n\t\t\t{\n\t\t\t\tif ( in_array( $forumID, $bvnp ) )\n\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* Still here? */\n\t\t\t$_topics = $this->lastXThaw( $forumData['last_x_topic_ids'] );\n\t\t\t\n\t\t\tif ( is_array( $_topics ) )\n\t\t\t{\n\t\t\t\tforeach( $_topics as $id => $time )\n\t\t\t\t{\n\t\t\t\t\tif( in_array( $time, $timesUsed ) )\n\t\t\t\t\t{\n\t\t\t\t\t\twhile( in_array( $time, $timesUsed ) )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$time +=1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$timesUsed[] = $time;\n\t\t\t\t\t$topicIDs[ $time ] = $i"..., 8192) = 3154
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/hooks/sos33_gchovercard_boardIndex_cce9d4b1bdd3d2845b9283af3b3031a4.php", {st_dev=makedev(145, 106), st_ino=165968394, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4029, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-13:32:59, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/hooks", {st_dev=makedev(145, 106), st_ino=165963172, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-13:32:59, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/hooks/sos33_gchovercard_boardIndex_cce9d4b1bdd3d2845b9283af3b3031a4.php", {st_dev=makedev(145, 106), st_ino=165968394, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4029, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-13:32:59, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/hooks/sos33_gchovercard_boardIndex_cce9d4b1bdd3d2845b9283af3b3031a4.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968394, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4029, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-13:32:59, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 read(4, "DB->build( array( 'select' => 'f.*',\n\t\t\t\t\t\t\t\t 'from' => array( 'forums' => 'f' ),\n\t\t\t\t\t\t\t\t 'add_join' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\tarray( 'select' => 'm.member_group_id as last_poster_group_id',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'from' => array( 'members' => 'm' ),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'where' => \"m.member_id = f.last_poster_id\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'type' => 'left' ),\n\t\t\t\t\t\t\t\t \t\t\t\t\tarray( 'select' => 'p.*',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'from' => array( 'permission_index' => 'p' ),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'where' => \"p.perm_type='forum' AND p.app='forums' AND p.perm_type_id=f.id\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'type' => 'left' ),\n\t\t\t\t\t\t\t\t\t\t\t\t\t $this->registry->classItemMarking->getSqlJoin( array( 'item_app_key_1' => 'f.id' ) ) ) ) );\n\t\t\t\t\t\t\n\t\t$q = $this->DB->execute();\n\t\t\n\t\t/* Loop through and build an array of forums */\n\t\t$forums_list\t= array();\n\t\t$update_seo\t\t= array();\n\t\t$tempForums = array();"..., 8192) = 4029
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/tags", {st_dev=makedev(145, 106), st_ino=165967276, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:11:00, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/tags/bootstrap.php", {st_dev=makedev(145, 106), st_ino=165968276, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3540, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/tags/bootstrap.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968276, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3540, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Tagging: Bootstrap\n * Matt Mecham\n * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $\n * \n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2011 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t24 Feb 2011\n * @version\t\t$Revision: 10721 $\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass classes_tags_bootstrap\n{\n\t/**\n\t * App object\n\t *\n\t * @var array\n\t */\n\tstatic protected $apps;\n\t\n\t/**\n\t * Construct\n\t *\n\t * @param\tstring\t\tApplication (or aai key)\n\t * @param\tstring\t\tArea\n\t * @return\tstring\n\t */\n\tpublic static function run( $app=null, $area=null )\n\t{\n\t\tif ( strlen( $app ) == 32 AND $area === null )\n\t\t{\n\t\t\t$t"..., 8192) = 3540
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/tags", {st_dev=makedev(145, 106), st_ino=165967276, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:11:00, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/tags/abstract.php", {st_dev=makedev(145, 106), st_ino=165968275, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=72, st_size=34006, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/tags/abstract.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968275, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=72, st_size=34006, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Tagging: Abstract class\n * Matt Mecham\n * Last Updated: $Date: 2013-04-03 11:49:28 -0400 (Wed, 03 Apr 2013) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2011 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t24 Feb 2011\n * @version\t\t$Revision: 12148 $\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nabstract class classes_tag_abstract\n{\n\t/**#@+\n\t * Registry objects\n\t *\n\t * @access\tprotected\n\t * @var\t\tobject\n\t */\t\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tprotected $request;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\tprotected $cache;\n\tprotected $caches;\n\t/**#@-*/\n\t\n\tprotected $app "..., 8192) = 8192
23:33:17 brk(0x2519000) = 0x2519000
23:33:17 read(4, " 'meta_id' => $id ) );\n\t\t}\n\t\t\n\t\t/* Delete tags */\n\t\t$this->DB->delete( 'core_tags', 'tag_aai_lookup IN (\\'' . implode( \"','\", $keys ) . '\\')' );\n\t\t\n\t\t/* Delete perms */\n\t\t$this->DB->delete( 'core_tags_perms', 'tag_perm_aai_lookup IN (\\'' . implode( \"','\", $keys ) . '\\')' );\n\t\t\n\t\t/* Delete cache */\n\t\t$this->DB->delete( 'core_tags_cache', 'tag_cache_key IN (\\'' . implode( \"','\", $keys ) . '\\')' );\n\t}\n\t\n\t/**\n\t * Basic permission check\n\t * @param\tstring\t$what (add/remove/edit/create) [ add = add new tags to items, create = create unique tags ]\n\t * @param\tarray\t$where data\n\t */\n\tpublic function can( $what, $where )\n\t{\n\t\t/* Tagging disabled? */\n\t\tif ( ! $this->settings['tags_enabled'] )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Admins are god */\n\t\tif ( $this->memberData['g_is_supmod'] )\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\t/* Member disabled */\n\t\tif ( $this->memberData['bw_disable_tagging'] )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Group disabled */\n\t\tif ( $this->memberData['gbw_disable_tagging'] )\n\t\t{\n\t\t\treturn fa"..., 8192) = 8192
23:33:17 read(4, "ons,\n\t\t\t\t\t\t\t\t\t\t\t\t'meta_visible'\t\t=> $isVisible ) );\n\t\t\n\t\t/* Get new tags to remove dupes */\n\t\t$tags = $this->getTagsByMetaId( $newMetaId );\n\t\t$this->registry->tags->replace( $tags['tags'], array( 'meta_id' => $newMetaId ) ); \n\t\t\n\t\t/* Reset prefix ID */\n\t\tif ( $hasPrefix )\n\t\t{\n\t\t\t$this->resetPrefix( $newMetaId );\n\t\t}\n\t\t\n\t\t/* Rebuild cache */\n\t\t$this->_addCache( array( 'meta_id' => $newMetaId, 'meta_parent_id' => $parent ) );\n\t}\n\t\n\t/**\n\t * Moves tags from one parent to another ...\n\t * @param array $where\n\t * @param int $newParentId\n\t */\n\tpublic function moveTagsByParentId( $oldParentId, $newParentId )\n\t{\n\t\t/* Update parent */\n\t\t$permissions = $this->getPermissionData( array( 'meta_parent_id' => $newParentId ) );\n\t\t$parentKeyOld = $this->_getKey( array( 'meta_parent_id' => $oldParentId ) );\n\t\t$parentKeyNew = $this->_getKey( array( 'meta_parent_id' => $newParentId ) );\n\t\t\n\t\t/* Update perms */\n\t\t$this->DB->update( 'core_tags_perms', array( 'tag_perm_aap_lookup' => $parentKeyNew, 'tag_pe"..., 8192) = 8192
23:33:17 read(4, " )\n\t\t\t{\n\t\t\t\t$text['prefix'] = $tag['tag_text'];\n\t\t\t}\n\t\t}\n\t\t\n\t\t$update = array( 'tag_cache_key' => $key,\n\t\t\t\t\t\t 'tag_cache_text' => serialize( $text ),\n\t\t\t\t\t\t 'tag_cache_date' => IPS_UNIX_TIME_NOW\n\t\t\t\t\t\t);\n\t\t\n\t\t$this->DB->replace( 'core_tags_cache', $update, array( 'tag_cache_key' ) );\n\t\t\n\t\treturn $update;\n\t}\n\t\n\t/**\n\t * Rebuild cache\n\t * @param\t\tarray\t$where\n\t * @return\t\tvoid\n\t */\n\tprotected function _deleteCache( $where )\n\t{\n\t\t$where = $this->_cleanWhere( $where );\n\t\t\n\t\tif ( empty( $where['meta_id'] ) )\n\t\t{\n\t\t\ttrigger_error( \"Meta ID missing\", E_USER_ERROR );\n\t\t}\n\t\t\n\t\t$key = $this->_getKey( $where );\n\t\t\n\t\t$this->DB->delete( 'core_tags_cache', 'tag_cache_key=\\'' . $key . '\\'' );\n\t}\t\n\t\n\t/**\n\t * Rebuild cache\n\t * @param\t\tarray\t$where\n\t * @return\t\tvoid\n\t */\n\tprotected function _getCache( $where )\n\t{\n\t\t$where = $this->_cleanWhere( $where );\n\t\t\n\t\tif ( ! empty( $where['cache_key'] ) )\n\t\t{\n\t\t\t$key = $where['cache_key'];\n\t\t}\n\t\telse\n\t\t{\n\t\t\tif ( empty( $where['meta_id'] ) )\n\t\t\t{\n\t\t\t\ttrigg"..., 8192) = 8192
23:33:17 brk(0x2559000) = 0x2559000
23:33:17 read(4, ");\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Perhaps not enough? */\n\t\tif ( $checkForMinimumAndMaximum && $this->_getMinTags() && count( $tags ) < $this->_getMinTags() )\n\t\t{\n\t\t\t$this->setErrorMsg('too_few_tags');\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Generic catch all in case min/max tags aren't set up. */\n\t\tif ( ! count( $tags ) )\n\t\t{\n\t\t\t$this->setErrorMsg('no_good_tags');\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Phew. */\n\t\treturn $tags;\n\t}\n\t\n\t/**\n\t * Clean where stuffs\n\t * Ensures that DB naming conventions aren't used\n\t * @param\tArray\tDirty where\n\t * @return\tArray\tClean where\n\t */\n\tprivate function _cleanWhere( $where )\n\t{\n\t\t$clean = array( 'tag_meta_app', 'tag_meta_area', 'tag_meta_id', 'tag_meta_parent_id', 'tag_member_id', 'tag_aai_lookup', 'tag_cache_key' );\n\t\t\n\t\tif ( is_numeric( $where ) )\n\t\t{\n\t\t\t$where = array( 'meta_id' => $where );\n\t\t}\n\t\t\n\t\tif ( is_array( $where ) )\n\t\t{\n\t\t\tforeach( $where as $k => $v )\n\t\t\t{\n\t\t\t\tif ( in_array( $k, $clean ) )\n\t\t\t\t{\n\t\t\t\t\tunset( $where[ $k ] );\n\t\t\t\t\t$where[ str_replace( 'tag_', '"..., 8192) = 1238
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/tags/topics.php", {st_dev=makedev(145, 106), st_ino=165967080, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8668, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:27, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions", {st_dev=makedev(145, 106), st_ino=165965866, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/18-15:37:20, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/tags", {st_dev=makedev(145, 106), st_ino=165965885, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:09:47, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/tags/topics.php", {st_dev=makedev(145, 106), st_ino=165967080, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8668, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:27, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/tags/topics.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967080, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8668, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:27, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Tagging: Forums/Topics Class\n * Matt Mecham\n * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $\n * \n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2011 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t25 Feb 2011\n * @version\t\t$Revision: 10721 $\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass tags_forums_topics extends classes_tag_abstract\n{\n\tprotected $topicCache = array();\n\t\t\n\t/**\n\t * CONSTRUCTOR\n\t *\n\t * @return\t@e void\n\t */\n\tpublic function __construct()\n\t{\n\t\t/* Make registry objects */\n\t\t$this->registry = ipsRegistry::instance();\n\t\t$this->DB = $this->registry->DB();\n\t\t$this->settings "..., 8192) = 8192
23:33:17 read(4, "others'] )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\n\t\t/* Tagging disabled */\n\t\tif ( $data['bw_disable_tagging'] )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\treturn true;\n\t}\n\n\t\n\t/**\n\t * Fetch a topic\n\t * \n\t * @param\tinteger\t\t$tid\tTopic ID\n\t * @return\t@e array\tTopic data\n\t */\n\tprotected function _getTopic( $tid )\n\t{\n\t\tif ( ! isset( $this->topicCache[ $tid ] ) )\n\t\t{\n\t\t\t$this->topicCache[ $tid ] = $this->registry->getClass('topics')->getTopicById( $tid );\n\t\t}\n\t\t\n\t\treturn $this->topicCache[ $tid ];\n\t}\n}", 8192) = 476
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources", {st_dev=makedev(145, 106), st_ino=165965872, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:10:03, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes", {st_dev=makedev(145, 106), st_ino=165965911, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:12:18, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes/topics.php", {st_dev=makedev(145, 106), st_ino=165967188, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=176, st_size=90027, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:33, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/sources/classes/topics.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967188, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=176, st_size=90027, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:33, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Moderator actions\n * Last Updated: $Date: 2013-04-02 11:59:49 -0400 (Tue, 02 Apr 2013) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tForums\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Revision: 12142 $\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly.\";\n\texit();\n}\n\nclass app_forums_classes_topics\n{\n\t/**#@+\n\t * Registry Object Shortcuts\n\t *\n\t * @var\t\tobject\n\t */\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tprotected $request;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\tprotected $cache;\n\tprotected $caches;\n\t/**#@-*/\n\n\tprotected $topicData = array();\n\tprotected $_memberData = array();\n\tprotected $moderatorData = null;\n\tprotected $permissionsDa"..., 8192) = 8192
23:33:17 read(4, " $this->memberData, TRUE );\n\t\t\n\t\t/* Got any unread posts? */\n\t\t$topic['hasUnreadPosts'] = ( $this->registry->classItemMarking->isRead( array( 'forumID' => $topic['forum_id'], 'itemID' => $topic['tid'], 'itemLastUpdate' => $topic['last_post'] ), 'forums' ) ) ? false : true;\n\t\t\n\t\t$topic['Perms'] = array( 'canQueuePosts' => $this->registry->class_forums->canQueuePosts( $topic['forum_id'] ),\n\t\t\t\t\t\t\t 'canAnswerTopic' => $this->registry->topics->canAnswerTopic( $topic ),\n\t\t\t\t\t\t\t\t 'canRateAnswer' => $this->registry->topics->canRateAnsweredPost( $topic ) );\n\t\t\n\t\treturn $topic;\n\t}\n\t\n\t/**\n\t * Update a topic\n\t * @param int $tid\n\t * @param array $data\n\t */\n\tpublic function updateTopic( $tid, $data )\n\t{\n\t\tif ( is_numeric( $tid ) && is_array( $data ) )\n\t\t{\n\t\t\t$this->DB->update( 'topics', $data, 'tid=' . intval( $tid ) );\n\t\t}\t\n\t}\n\t\n\t/**\n\t * Rebuild a topic\n\t *\n\t * @param\tinteger \tTopic id\n\t * @return\tboolean\t\tRebuild complete\n\t */\n\tpublic function rebuildTopic( $tid )\n\t{\n\t\t/* Topic ID */\n\t\t$tid"..., 8192) = 8192
23:33:17 brk(0x2599000) = 0x2599000
23:33:17 read(4, "\t\t\t\t\t\t\t\t\t\t\t\t\t'order'\t\t=> 'last_post desc',\n\t\t\t\t\t\t\t\t\t\t\t\t\t'limit'\t\t=> array( 1 ) )\t);\n\t\t\t\n\t\t\t$dbs = array( 'last_title'\t\t\t=> $tt['title']\t\t\t\t? $tt['title']\t\t\t\t: \"\",\n\t\t\t\t\t\t 'last_id'\t\t\t\t=> $tt['tid']\t\t\t\t? $tt['tid']\t\t\t\t: 0,\n\t\t\t\t\t\t 'last_post'\t\t\t=> $tt['last_post']\t\t\t? $tt['last_post']\t\t\t: 0,\n\t\t\t\t\t\t 'last_poster_name'\t=> $tt['last_poster_name']\t? $tt['last_poster_name']\t: \"\",\n\t\t\t\t\t\t 'last_poster_id'\t\t=> $tt['last_poster_id']\t? $tt['last_poster_id']\t\t: 0,\n\t\t\t\t\t\t 'seo_last_title' \t=> IPSText::makeSeoTitle( $tt['title'] ),\n\t\t\t\t\t\t 'seo_last_name' \t=> IPSText::makeSeoTitle( $tt['last_poster_name'] ) );\n\t\t\t\n\t\t\tif ( $this->registry->class_forums->allForums[ $this->forum['id'] ]['newest_id'] == $tid )\n\t\t\t{\n\t\t\t\t$sort_key = $this->registry->class_forums->allForums[ $this->forum['id'] ]['sort_key'];\n\t\t\t\t\n\t\t\t\t$tt = $this->DB->buildAndFetch( array( 'select' => 'title, tid',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'from'\t => 'topics',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'where'\t => 'forum_id=' . $this->forum['id'] . ' and ' . $this->regis"..., 8192) = 8192
23:33:17 read(4, "if ( isset( $filters['offset'] ) OR isset( $filters['limit'] ) )\n\t\t{\n\t\t\tif ( $filters['offset'] > 0 || $filters['limit'] > 0 )\n\t\t\t{\n\t\t\t\t$limit = array( intval( $filters['offset'] ), intval( $filters['limit'] ) );\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Order */\n\t\tif ( ! empty( $filters['sortField'] ) )\n\t\t{\n\t\t\t$order = 't.' . $filters['sortField'];\n\t\t\t\n\t\t\tif ( isset( $filters['sortOrder'] ) )\n\t\t\t{\n\t\t\t\t$order .= ' ' . $filters['sortOrder'];\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Set joins */\n\t\t$joins = array( array( 'select' \t=> 'm.*',\n\t\t\t\t\t\t 'type'\t\t=> 'left',\n\t\t\t\t\t\t 'from'\t\t=> array( 'members' => 'm' ),\n\t\t\t\t\t\t 'where'\t=> 'm.member_id=t.starter_id' ),\n\t\t\t\t array( 'select' \t=> 'pp.*',\n\t\t\t\t\t\t 'type'\t\t=> 'left',\n\t\t\t\t\t\t 'from'\t\t=> array( 'profile_portal' => 'pp' ),\n\t\t\t\t\t\t 'where'\t=> 'pp.pp_member_id=t.starter_id' ) );\n\t\t\t\t \n\t\t/* Fetching first post ? */\n\t\tif ( ! empty( $filters['getFirstPost'] ) )\n\t\t{\n\t\t\t$joins[] = array( 'select' => 'p.*',\n\t\t\t\t\t\t\t 'from' => array( 'posts' => 'p' "..., 8192) = 8192
23:33:17 read(4, "\t{\n\t\t\t\t$filters['notForumId'] = ( ! is_array( $filters['notForumId'] ) ) ? array( $filters['notForumId'] ) : $filters['notForumId'];\n\t\t\t\t$where[] = \"t.forum_id NOT IN (\" . implode( ',', $filters['notForumId'] ) . \")\";\n\t\t\t}\n\t\t\t\n\t\t\t/* PID is greater */\n\t\t\tif ( ! empty( $filters['pidIsGreater'] ) )\n\t\t\t{\n\t\t\t\t$where[] = \"p.\". $this->getPostTableField( 'pid', $isArchived ) . \" > \" . intval( $filters['pidIsGreater'] );\n\t\t\t}\n\t\t\t\n\t\t\t/* PID is less */\n\t\t\tif ( ! empty( $filters['pidIsLess'] ) )\n\t\t\t{\n\t\t\t\t$where[] = \"p.\". $this->getPostTableField( 'pid', $isArchived ) . \" < \" . intval( $filters['pidIsLess'] );\n\t\t\t}\n\t\t\t\n\t\t\t/* Author is ignored */\n\t\t\tif ( ! empty( $filters['notIgnored'] ) )\n\t\t\t{\n\t\t\t\t$ignoredUsers = array();\n\t\t\t\t\n\t\t\t\tforeach( $this->member->ignored_users as $_i )\n\t\t\t\t{\n\t\t\t\t\tif( $_i['ignore_topics'] )\n\t\t\t\t\t{\n\t\t\t\t\t\t$ignoredUsers[] = $_i['ignore_ignore_id'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( ! empty( $ignoredUsers ) )\n\t\t\t\t{\n\t\t\t\t\t$where[] = \"p.\" . $this->getPostTableField( 'author_id', $isArchiv"..., 8192) = 8192
23:33:17 read(4, "if ( empty( $k ) and empty( $v ) )\n\t\t{\n\t\t\t/* Auto set up */\n\t\t\t$this->permissionsData['softDelete'] = $this->registry->getClass('class_forums')->canSoftDeletePosts( $this->topicData['forum_id'], array() );\n\t\t\t$this->permissionsData['softDeleteRestore'] = $this->registry->getClass('class_forums')->can_Un_SoftDeletePosts( $this->topicData['forum_id'] );\n\t\t\t$this->permissionsData['softDeleteSee'] = $this->registry->getClass('class_forums')->canSeeSoftDeletedPosts( $this->topicData['forum_id'] );\n\t\t\t$this->permissionsData['softDeleteReason'] = $this->registry->getClass('class_forums')->canSeeSoftDeleteReason( $this->topicData['forum_id'] );\n\t\t\t$this->permissionsData['softDeleteContent'] = $this->registry->getClass('class_forums')->canSeeSoftDeleteContent( $this->topicData['forum_id'] );\n\t\t\t$this->permissionsData['TopicSoftDelete'] = $this->registry->getClass('class_forums')->canSoftDeleteTopics( $this->topicData['forum_id'], $this->topicData );\n\t"..., 8192) = 8192
23:33:17 brk(0x25d9000) = 0x25d9000
23:33:17 read(4, "registry->class_forums->fetchArchiveTopicType( $topicData );\n\t\t\t\n\t\t\tswitch( $result )\n\t\t\t{\n\t\t\t\tcase 'not':\n\t\t\t\tcase 'exclude':\n\t\t\t\t\treturn false;\n\t\t\t\tbreak;\n\t\t\t\tcase 'working':\n\t\t\t\tcase 'restore':\n\t\t\t\tcase 'archived':\n\t\t\t\t\treturn true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn false;\n\t}\n\t\n\t/**\n\t * Can view or cannot view\n\t * @param\tmixed\tNothing or inline topicData\n\t * @param mixed\tNothing or inline memberData\n\t */\n\tpublic function canView( $topicData=false, $memberData=false )\n\t{\n\t\tif ( is_array( $topicData ) && isset( $topicData['tid'] ) )\n\t\t{\n\t\t\t$this->setTopicData( $topicData );\n\t\t}\n\t\t\n\t\tif ( is_array( $memberData ) && isset( $memberData['member_id'] ) )\n\t\t{\n\t\t\t$this->setMemberData( $memberData );\n\t\t}\n\t\t\n\t\t/* get member/topic data */\n\t\t$memberData = $this->getMemberData();\n\t\t$topicData = $this->getTopicData();\n\t\t\n\t\t/* Basic checks */\n\t\tif ( ! $topicData['tid'] )\n\t\t{\n\t\t\t$this->setErrorMessage( 'EX_topics_no_tid' );\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\tif ( ! $this->registry->getClass('class_forums')-"..., 8192) = 8192
23:33:17 read(4, "lic function parseTopicForLineEntry( array $topic )\n\t{\n\t\t/* Set up permissions */\n\t\tif ( ! count( $this->permissionsData ) )\n\t\t{\n\t\t\t$this->setPermissionData();\n\t\t}\n\t\t\n\t\t$topic['real_tid']\t\t= $topic['tid'];\n\t\t\n\t\t$topic['_isVisible']\t= ( $this->registry->getClass('class_forums')->fetchHiddenTopicType( $topic ) == 'visible' ) ? true : false;\n\t\t$topic['_isHidden']\t\t= ( $this->registry->getClass('class_forums')->fetchHiddenTopicType( $topic ) == 'hidden' ) ? true : false;\n\t\t$topic['_isDeleted']\t= ( $this->registry->getClass('class_forums')->fetchHiddenTopicType( $topic ) == 'sdelete' ) ? true : false;\n\t\t$topic['_archiveFlag']\t= $this->registry->class_forums->fetchArchiveTopicType( $topic );\n\t\t$topic['_isArchived']\t= ( in_array( $topic['_archiveFlag'], array( 'working', 'archived', 'restore' ) ) );\n\t\t\n\t\t/* Member table and topic table overwrite */\n\t\tif ( isset( $topic['topic_title'] ) )\n\t\t{\n\t\t\t$topic['title'] = $topic['topic_title'];\n\t\t}\n\t\t\n\t\tif ( isset( $topic['topic_posts'] ) )\n\t\t{\n\t\t\t$top"..., 8192) = 8192
23:33:17 brk(0x2619000) = 0x2619000
23:33:17 read(4, "return\tarray\n\t */\n\tpublic function parsePost( array $post )\n\t{\n\t\t/* Init */\n\t\t$topicData = $this->getTopicData();\n\t\t$forumData = $this->registry->getClass('class_forums')->getForumById( $topicData['forum_id'] );\n\t\t$permissionData = $this->getPermissionData();\n\n\t\t/* Start memory debug */\n\t\t$_NOW = IPSDebug::getMemoryDebugFlag();\n\t\t$poster = array();\n\t\t\n\t\t/* Bitwise options */\n\t\t$_tmp = IPSBWOptions::thaw( $post['post_bwoptions'], 'posts', 'forums' );\n\n\t\tif ( count( $_tmp ) )\n\t\t{\n\t\t\tforeach( $_tmp as $k => $v )\n\t\t\t{\n\t\t\t\t$post[ $k ] = $v;\n\t\t\t}\n\t\t}\n\n\t\t/* Is this a member? */\n\t\tif ( $post['author_id'] != 0 )\n\t\t{\n\t\t\t$poster = $this->parseMember( $post );\n\t\t}\n\t\telse\n\t\t{\n\t\t\t/* Sort out guest */\n\t\t\t$post['author_name']\t\t\t\t= $this->settings['guest_name_pre'] . $post['author_name'] . $this->settings['guest_name_suf'];\n\t\t\t\n\t\t\t$poster\t\t\t\t\t\t\t\t= IPSMember::setUpGuest( $post['author_name'] );\n\t\t\t$poster['members_display_name']\t\t= $post['author_name'];\n\t\t\t$poster['_members_display_name']\t= "..., 8192) = 8192
23:33:17 read(4, "\tif( in_array( $post['author_id'], $topicData['ignoredUsers'] ) )\n\t\t\t{\n\t\t\t\tif ( ! strstr( $this->settings['cannot_ignore_groups'], ','.$post['member_group_id'].',' ) )\n\t\t\t\t{\n\t\t\t\t\t$post['_ignored'] = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* AD Code */\n\t\t$post['_adCode']\t= '';\n\n\t\tif ( $this->registry->getClass('IPSAdCode')->userCanViewAds() && !$this->getTopicData('adCodeSet') && !IPS_IS_AJAX )\n\t\t{\n\t\t\t$post['_adCode'] = $this->registry->getClass('IPSAdCode')->getAdCode('ad_code_topic_view_code');\n\t\t\tif ( $post['_adCode'] )\n\t\t\t{\n\t\t\t\t$this->setTopicData( 'adCodeSet', true );\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Memory debug */\n\t\tIPSDebug::setMemoryDebugFlag( \"PID: \".$post['pid']. \" - Completed\", $_NOW );\n\t\t\n\t\t/* Excerpt */\n\t\t$post['_excerpt'] = IPSText::truncate( str_replace( array( '
', '
', \"\\n\", '', '' ), ' ', $post['post'] ), 500 );\n\t\t\n\t\treturn array( 'post' => $post, 'author' => $poster );\n\t}\n\t\n\t/**\n\t * Add the recent post\n\t * @param array $post\n\t */\n\tpublic function addRecentPost( $post )\n\t{\n\t\tif ( $pos"..., 8192) = 8192
23:33:17 read(4, "s_numeric( $topic ) )\n\t\t{\n\t\t\t$topic = $this->getTopicById( $topic );\n\t\t}\n\t\t\n\t\tif ( ! $topic['tid'] || ! $post['pid'] )\n\t\t{\n\t\t\tthrow new Exception( 'missing_data' );\n\t\t}\n\t\t\n\t\tif ( $this->canAnswerTopic( $topic ) !== true )\n\t\t{\n\t\t\tthrow new Exception( 'no_permission' );\n\t\t}\n\t\t\n\t\t/* Remove flag for all other posts in this topic */\n\t\t$sql = IPSBWOptions::sql( 'bw_post_answered', 'post_bwoptions', 'posts', 'forums', 'invert' );\n\t\t$where = IPSBWOptions::sql( 'bw_post_answered', 'post_bwoptions', 'posts', 'forums', 'has' );\n\t\t\n\t\t$this->DB->update( 'posts', 'post_bwoptions=' . $sql, 'topic_id=' . $topic['tid'] . ' AND ' . $where, false, true );\n\t\t\n\t\t/* Update post */\n\t\t$post['bw_post_answered'] = 1;\n\t\t\n\t\t$this->DB->update( 'posts', array( 'post_bwoptions' => IPSBWOptions::freeze( $post, 'posts', 'forums' ) ), 'pid=' . $post['pid'] );\n\t\t\n\t\t/* Update topic */\n\t\t$this->DB->update( 'topics', array( 'topic_answered_pid' => $post['pid'] ), 'tid=' . $topic['tid'] );\n\t\t\n\t\treturn true;\n\t}\n\t\n\t/**\n\t * "..., 8192) = 8107
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "\226\0\0\0\3SELECT t.*,xxx.* FROM topics t LEFT JOIN core_tags_cache xxx ON ( xxx.tag_cache_key=MD5(CONCAT('forums',';','topics',';',t.tid)) ) WHERE t.tid=231", 154) = 154
23:33:17 read(3, "\1\0\0\1&/\0\0\2\3def\fsimsasyl_ipb\1t\6topics\3tid\3tid\f?\0\n\0\0\0\3\3B\0\0\0003\0\0\3\3def\fsimsasyl_ipb\1t\6topics\5title\5title\f\10\0\372\0\0\0\375\t@\0\0\0003\0\0\4\3def\fsimsasyl_ipb\1t\6topics\5state\5state\f\10\0\10\0\0\0\375\0@\0\0\0003\0\0\5\3def\fsimsasyl_ipb\1t\6topics\5posts\5posts\f?\0\n\0\0\0\3\0\0\0\0\0=\0\0\6\3def\fsimsasyl_ipb\1t\6topics\nstarter_id\nstarter_id\f?\0\10\0\0\0\t\t@\0\0\0=\0\0\7\3def\fsimsasyl_ipb\1t\6topics\nstart_date\nstart_date\f?\0\n\0\0\0\3\10@\0\0\0E\0\0\10\3def\fsimsasyl_ipb\1t\6topics\16last_poster_id\16last_poster_id\f?\0\10\0\0\0\t\1\0\0\0\0;\0\0\t\3def\fsimsasyl_ipb\1t\6topics\tlast_post\tlast_post\f?\0\n\0\0\0\3\10@\0\0\0007\0\0\n\3def\fsimsasyl_ipb\1t\6topics\7icon_id\7icon_id\f?\0\2\0\0\0\1\0\0\0\0\0A\0\0\v\3def\fsimsasyl_ipb\1t\6topics\fstarter_name\fstarter_name\f\10\0\377\0\0\0\375\0\0\0\0\0I\0\0\f\3def\fsimsasyl_ipb\1t\6topics\20last_poster_name\20last_poster_name\f\10\0\377\0\0\0\375\0\0\0\0\0=\0\0\r\3def\fsimsasyl_ipb\1t\6topics\npoll_state\npoll_state\f\10\0\10\0\0\0\375\0\0\0\0\0;\0\0\16\3def\fsimsasyl_ipb\1t\6topics\tlast_vote\tlast_vote\f?\0\n\0\0\0\3\0\0\0\0\0003\0\0\17\3def\fsimsasyl_ipb\1t\6topics\5views\5views\f?\0\n\0\0\0\3\0\0\0\0\0009\0\0\20\3def\fsimsasyl_ipb\1t\6topics\10forum_id\10forum_id\f?\0\5\0\0\0\2\t@\0\0\0009\0\0\21\3def\fsimsasyl_ipb\1t\6topics\10approved\10approved\f?\0\1\0\0\0\1\t@\0\0\0?\0\0"..., 16384) = 2904
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/itemmarking", {st_dev=makedev(145, 106), st_ino=165967262, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:08:23, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/itemmarking/classItemMarking.php", {st_dev=makedev(145, 106), st_ino=165968197, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=80, st_size=37893, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:53, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/itemmarking/classItemMarking.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968197, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=80, st_size=37893, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:53, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Item Marking\n * Owner: Matt \"Oh Lord, why did I get assigned this?\" Mecham\n * Last Updated: $Date: 2012-11-06 15:14:35 -0500 (Tue, 06 Nov 2012) $\n * \n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 11565 $\n *\n * @todo \t[Future] Perhaps find more ways to reduce the size of items_read\n * @todo \t[Future] Maybe add an IN_DEV tool to warn when markers have been cancelled out / size drastically reduced\n */\n\nclass classItemMarking\n{\n\t/**#@+\n\t * Registry objects\n\t *\n\t * @access\tprotected\n\t * @var\t\tobject\n\t */\t\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tprotected $request;\n\tprotected $lang;\n\tprotected $member;\n\tprotected $memberData;\n\tprotected $cache;\n\tprotected $caches;"..., 8192) = 8192
23:33:17 brk(0x2659000) = 0x2659000
23:33:17 read(4, "p : 'itemMarking_' . $app . '_items';\n\t\t\t\n\t\t\treturn $this->_fetchCookieData( $key );\n\t\t}\n\t}\n\t\n\t/**\n\t * Set the flag to save cookies in mydestruct\n\t *\n\t * @access\tprotected\n\t * @return\t@e void\n\t */\n\tprotected function _setSaveCookie()\n\t{\n\t\t$this->_setSaveCookie = true;\n\t}\n\t\n\t/**\n\t * Save cookie\n\t *\n\t * @access\tprotected\n\t * @param\tstring\t\tKey name (leave blank to save out all cookies)\n\t * @return\t@e void\n\t */\n\tprotected function _saveCookie( $key='' )\n\t{\n\t\tif ( ! $this->_useCookies )\n\t\t{\n\t\t\treturn;\n\t\t}\n\n\t\tif ( $key AND is_array( $this->_cookie[ $key ] ) )\n\t\t{\n\t\t\tIPSCookie::set( $key, $this->_cookie[ $key ], 1 );\n\t\t}\n\t\telse\n\t\t{\n\t\t\tforeach( $this->_cookie as $k => $v )\n\t\t\t{ \n\t\t\t\tif ( is_array( $v ) AND ! count( $v ) )\n\t\t\t\t{\n\t\t\t\t\t/* Do we have a cookie? */\n\t\t\t\t\t$test = IPSCookie::get( $k );\n\t\t\t\t\t\n\t\t\t\t\tif ( $test )\n\t\t\t\t\t{ \n\t\t\t\t\t\t/* set a blank, non sticky cookie */\n\t\t\t\t\t\tIPSCookie::set( $k, '-', 0, -1 );\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tIPSDebug::addM"..., 8192) = 8192
23:33:17 read(4, "st\t = IPS_UNIX_TIME_NOW - ( $this->settings['topic_marking_keep_days'] * 86400 );\n\t\t\t\t$_lastReset = ( $_lastReset >= $_oldest ) ? $_lastReset : $_oldest;\n\t\t\t\t\n\t\t\t\t$_unreadCount = $this->_fetchModule( $app )->fetchUnreadCount( $origData, $_readItems, $_lastReset );\n\t\t\t\n\t\t\t\tif ( $_unreadCount['count'] > 0 )\n\t\t\t\t{\n\t\t\t\t\tif ( $this->settings['topic_marking_enable'] )\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->_itemMarkers[ $app ][ $mainKey ]['item_unread_count'] = $_unreadCount['count'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tif ( $this->settings['topic_marking_enable'] )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Update the last global reset time and clear the read array */\n\t\t\t\t\t\t$this->_itemMarkers[ $app ][ $mainKey ]['item_read_array'] = array();\n\t\t\t\t\t\t$this->_itemMarkers[ $app ][ $mainKey ]['item_global_reset'] = time();\n\t\t\t\t\t\t$this->_itemMarkers[ $app ][ $mainKey ]['item_unread_count'] = 0;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t/* Cookie */\n\t\t\t\t\t$cookie['greset'][ $this->_makeKey( $data, TRUE ) ] = time();\n\t\t\t\t\t$this->_updateCookieData( 'itemMarking_' . $"..., 8192) = 8192
23:33:17 read(4, "Key ]['item_read_array'];\n\t\t\t}\n\t\t}\n\n\t\treturn array();\n\t}\n\t\n\t/**\n\t * Fetch read ID\n\t * If forum was cleared, it may not exist as global reset takes precidence. \n\t * $readIDs = $itemMarking->fetchReadId( array( 'forumID' => 2, 'itemId' => 2 ) );
\n\t * @access\t\tpublic\n\t * @param\t\tarray \t\tArray of data\n\t * @param\t\tstrng\t\t[App]\n\t * @return\t\tint\t\t\t0 or timestamp\n\t */\n\tpublic function fetchItemReadTime( $data, $app='' )\n\t{\n\t\t$app = ( $app ) ? $app : IPS_APP_COMPONENT;\n\t\t$origData = $data;\n\t\t$data = $this->_fetchModule( $app )->convertData( $data );\n\t\t$mainKey = $this->_findMainRowByKey( $data, $app );\n\t\t\n\t\tif ( isset( $this->_itemMarkers[ $app ][ $mainKey ]['item_read_array'] ) AND is_array($this->_itemMarkers[ $app ][ $mainKey ]['item_read_array']) )\n\t\t{\n\t\t\treturn intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_read_array'][ $data['itemID'] ] );\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn 0;\n\t\t}\n\t}\n\t\t\n\t/**\n\t * Find latest Item reset\n\t *\n\t * @access\tprotected\n\t * @param\tarray \t\tArray "..., 8192) = 8192
23:33:17 brk(0x2699000) = 0x2699000
23:33:17 read(4, "his->_itemMarkers[ $app ][ $mainKey ]['item_read_array'],\n\t\t\t\t\t 'item_global_reset' => intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_global_reset'] ),\n\t\t\t\t\t 'item_unread_count' => intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_unread_count'] ),\n\t\t\t\t\t 'item_app_key_1'\t => intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_app_key_1'] ),\n\t\t\t\t\t 'item_app_key_2'\t => intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_app_key_2'] ),\n\t\t\t\t\t 'item_app_key_3'\t => intval( $this->_itemMarkers[ $app ][ $mainKey ]['item_app_key_3'] ),\n\t\t\t\t\t 'item_is_deleted' => 0 );\n\t\t\n\t\t$this->DB->replace( 'core_item_markers', $row, array( 'item_key', 'item_app', 'item_member_id' ) );\n\t}\n\t\n\t/**\n\t * Manual destructor called by ips_MemberRegistry::__myDestruct()\n\t * Gives us a chance to do anything we need to do before other\n\t * classes are culled\n\t *\n\t * @access\tpublic\n\t * @return\t@e void\n\t */\n\tpublic function __myDestruct()\n\t{\n\t\t/* Task? */\n\t\tif ( IPS_IS_TASK === TRUE )\n\t\t{\n\t\t\treturn"..., 8192) = 5125
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "\351\0\0\0\3SELECT f.*,m.member_group_id as last_poster_group_id,p.* FROM forums f LEFT JOIN members m ON ( m.member_id = f.last_poster_id ) \n LEFT JOIN permission_index p ON ( p.perm_type='forum' AND p.app='forums' AND p.perm_type_id=f.id ) ", 237) = 237
23:33:17 read(3, "\1\0\0\1I-\0\0\2\3def\fsimsasyl_ipb\1f\6forums\2id\2id\f?\0\5\0\0\0\2\3B\0\0\0005\0\0\3\3def\fsimsasyl_ipb\1f\6forums\6topics\6topics\f?\0\6\0\0\0\t\0\0\0\0\0003\0\0\4\3def\fsimsasyl_ipb\1f\6forums\5posts\5posts\f?\0\6\0\0\0\t\0\0\0\0\0;\0\0\5\3def\fsimsasyl_ipb\1f\6forums\tlast_post\tlast_post\f?\0\n\0\0\0\3\0\0\0\0\0E\0\0\6\3def\fsimsasyl_ipb\1f\6forums\16last_poster_id\16last_poster_id\f?\0\10\0\0\0\t\1\0\0\0\0I\0\0\7\3def\fsimsasyl_ipb\1f\6forums\20last_poster_name\20last_poster_name\f\10\0\377\0\0\0\375\1\0\0\0\0001\0\0\10\3def\fsimsasyl_ipb\1f\6forums\4name\4name\f\10\0\200\0\0\0\375\1\0\0\0\0?\0\0\t\3def\fsimsasyl_ipb\1f\6forums\vdescription\vdescription\f\10\0\377\377\0\0\374\20\0\0\0\0009\0\0\n\3def\fsimsasyl_ipb\1f\6forums\10position\10position\f?\0\5\0\0\0\3(@\0\0\0007\0\0\v\3def\fsimsasyl_ipb\1f\6forums\7use_ibc\7use_ibc\f?\0\1\0\0\0\1\0\0\0\0\0009\0\0\f\3def\fsimsasyl_ipb\1f\6forums\10use_html\10use_html\f?\0\1\0\0\0\1\0\0\0\0\0009\0\0\r\3def\fsimsasyl_ipb\1f\6forums\10password\10password\f\10\0 \0\0\0\375\0\0\0\0\0K\0\0\16\3def\fsimsasyl_ipb\1f\6forums\21password_override\21password_override\f\10\0\377\0\0\0\375\0\0\0\0\0=\0\0\17\3def\fsimsasyl_ipb\1f\6forums\nlast_title\nlast_title\f\10\0\372\0\0\0\375\0\0\0\0\0007\0\0\20\3def\fsimsasyl_ipb\1f\6forums\7last_id\7last_id\f?\0\n\0\0\0\3\0\0\0\0\0009\0\0\21\3def\fsimsasyl_ipb\1f\6forums\10sort_key\10sort_key\f\10\0 \0\0\0\375"..., 16384) = 16384
23:33:17 read(3, "\0\0010\0010\0010\0010\n1373226891\17Philip McKenzie\0046874\0010\0010\0011\0010\10ts3-sims\23dustin-milmine-teen\4kimi\203a:5:{i:6874;s:10:\"1373541491\";i:6856;s:10:\"1373488183\";i:6851;s:10:\"1373478200\";i:6842;s:10:\"1373423578\";i:6820;s:10:\"1373298004\";}\0010\0011\0010\0015\0\0010\0010\0011\0\0013\00231\6forums\5forum\00226\r,4,3,6,1,8,9,\r,4,3,6,1,8,9,\v,4,3,6,8,9,\r,4,3,6,1,8,9,\v,4,3,6,8,9,\r,4,3,6,1,8,9,\0\0010\0010\0\266\1\0f\00227\0019\00261\n1373577140\00510736\4Kimi\10TS3 Pets\0\0015\0011\0010\0\0\17Olive Henderson\0046870\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00224\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010\17Olive Henderson\0046870\0010\0010\0011\0010\10ts3-pets\17olive-henderson\4kimi\203a:5:{i:6870;s:10:\"1373508327\";i:6728;s:10:\"1372545671\";i:4002;s:10:\"1350328258\";i:3410;s:10:\"1346709235\";i:3335;s:10:\"1346275851\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0013\00232\6forums\5forum\00227\r,4,3,6,1,8,9,\r,4,3,6,1,8,9,\v,4,3,6,8,9,\v,4,3,6,8,9,\v,4,3,6,8,9,\r,4,3,6,1,8,9,\0\0010\0010\0\366\1\0g\00228\003117\0041524\n1373479219\0013\tSleepycat\23TS3 Lots and Worlds\0\0016\0011\0010\0\0\25Worlds - Sleepy Falls\003658\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00224\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\n1371940487\35TFM's 20x20 Bowling Alley\0046799\0010\0010\0011\0010\23ts3-lots-and-wor"..., 16384) = 16384
23:33:17 read(3, "hed\0041485\0010\0010\0011\0010\26naughty-narratives-ts2\33misfortunes-maiden-finished\7ditzie18a:2:{i:1485;s:10:\"1327988978\";i:1094;s:10:\"1326395951\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0013\003157\6forums\5forum\003145\t,4,7,8,6,\t,4,7,8,6,\t,4,7,8,6,\t,4,7,8,6,\t,4,7,8,6,\t,4,7,8,6,\0\0010\0010\0\1\1\0\215\00270\0010\0010\0010\0010\0\26Kivak and Wolfies Cove\0\00211\0011\0010\0\0\373\373\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00242\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010\373\0010\0010\0010\0011\0010\26kivak-and-wolfies-cove\0\0\373\0010\0011\0010\0010\0\0010\0010\0011\0\373\00276\6forums\5forum\00270\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\v,4,8,3,6,9,\r,4,8,3,6,1,9,\0\0010\0010\0\366\1\0\216\00271\00248\003174\n1373592654\00224\20MysteryIslandKid\22Cove Housing - TS2\0\00271\0011\0010\0\0\17Tackett Mansion\0046604\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00270\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010)Lady Ma'Donna Nash House & Family\0046761\0010\0010\0011\0010\20cove-housing-ts2\17tackett-mansion\20mysteryislandkid\203a:5:{i:6761;s:10:\"1372775624\";i:6604;s:10:\"1371830736\";i:6432;s:10:\"1370048202\";i:6191;s:10:\"1367361222\";i:5209;s:10:\"1360128655\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0018\00277\6forums\5forum\00271\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\v,4,8,3,6,9,\r,4,8,3,6,1,9,\0\1"..., 16384) = 16384
23:33:17 read(3, "\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00264\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010\373\0010\0010\0010\0011\0010\rts3-buildings\0\0\373\0010\0011\0010\0010\0\0010\0010\0011\0\373\003125\6forums\5forum\003114\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\7,4,8,6,\r,4,8,3,6,1,9,\0\0010\0010\0\34\2\0\267\003115\00225\003255\n1365013682\0019\7arathea\vResidential\0\003115\0011\0010\0\0/Natural Modern - Lot for the Builders Challenge\0045785\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\003114\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010/Natural Modern - Lot for the Builders Challenge\0045785\0010\0010\0011\0010\vresidential-natural-modern-lot-for-the-builders-challenge\7arathea\203a:5:{i:5785;s:10:\"1364138041\";i:5456;s:10:\"1362125759\";i:5450;s:10:\"1362065625\";i:5448;s:10:\"1362045071\";i:5408;s:10:\"1361843786\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0018\003126\6forums\5forum\003115\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\7,4,8,6,\r,4,8,3,6,1,9,\0\0010\0010\0\241\1\0\270\003116\0013\00222\n1358865018\0019\7arathea\tCommunity\0\003116\0011\0010\0\0\17Natural Retreat\003344\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\003114\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010/Sunny Center - A Variation of Insiders' Tip\003373\0010\0010\0011\0010\tcommunity\17natural-retreat\7aratheaNa:3:{i:373;s:10:\"1325506798\";"..., 16384) = 16384
23:33:17 read(3, "6\003193\n1344898627\00212\7Rosewin$The Decline of Olive Specter - Adult\0\0011\0011\0010\0\0%The Decline Of Olive Specter. Part 35\0042309\nstart_date\3A-Z\003100\3all\373\0010\0010\0010\0011\373\003101\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010%The Decline Of Olive Specter. Part 35\0042309\0010\0010\0011\0010\"the-decline-of-olive-specter-adult$the-decline-of-olive-specter-part-35\7rosewin\203a:5:{i:2309;s:10:\"1337729990\";i:2307;s:10:\"1337722440\";i:2306;s:10:\"1337721462\";i:2305;s:10:\"1337719325\";i:2304;s:10:\"1337717547\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0018\003180\6forums\5forum\003160\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\r,4,7,3,6,8,9,\0\0010\0010\0\313\1\0\340\003161\00221\00281\n1358911968\00220\rTwistedSister\17Hunting - Adult\0\0014\0011\0010\0\0\22Hunting (Part 20.)\0045013\nstart_date\3A-Z\003100\3all\373\0010\0010\0010\0011\373\003101\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010\22Hunting (Part 20.)\0045013\0010\0010\0011\0010\rhunting-adult\17hunting-part-20\rtwistedsister\203a:5:{i:5013;s:10:\"1358635105\";i:5012;s:10:\"1358634858\";i:5011;s:10:\"1358634655\";i:5010;s:10:\"1358588277\";i:5009;s:10:\"1358588048\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0018\003179\6forums\5forum\003161\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\t,4,7,6,8,\t,4,7,"..., 16384) = 16384
23:33:17 read(3, "\"1337218036\";i:2229;s:10:\"1337126804\";i:1172;s:10:\"1326567619\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0013\003227\6forums\5forum\003200\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\7,4,8,6,\r,4,8,3,6,1,9,\0\0010\0010\0004\2\0\4\003228\0011\00226\n1345065655\0011\tTwoftmama\17Deleted ContentQStuff folks ask me to delete that I think should be saved somewhere just in case.\003228\0011\0010\0\0His there a mod for more then one wife mod (Can't be done via tuning)\0043133\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\003137\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\n1370812210His there a mod for more then one wife mod (Can't be done via tuning)\0043133\0010\0010\0011\0010\17deleted-contentAis-there-a-mod-for-more-then-one-wife-mod-cant-be-done-via-tuning\ttwoftmama\37a:1:{i:3133;s:10:\"1344233771\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0014\003264\6forums\5forum\003228\3,4,\3,4,\3,4,\3,4,\3,4,\3,4,\0\0010\0010\0\357\0\0\5\003224\0010\0010\0010\0010\0\fNirar's Nest\0\00214\0011\0010\0\0\373\373\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00242\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\0010\373\0010\0010\0010\0011\0010\vnirars-nest\0\0\373\0010\0011\0010\0010\0\0010\0010\0011\0\373\003260\6forums\5forum\003224\r,4,8,3,6,1,9,\r,4,8,3,6,1,9,\v,4,8,3,6,9,\7,4,8,6,\v,4,8,3,6,9,\r,4,8,3,6,1,9,\0\0010\0010\0\227\1\0\6\003211\0011"..., 16384) = 16384
23:33:17 brk(0x26c1000) = 0x26c1000
23:33:17 read(3, "requires Island Paradise EP)\0046794\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\00247\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\n1363955273_Mermaids Gain Hydration While Playing in Ocean and Pool Waterfall (requires Island Paradise EP)\0046794\0010\0010\0011\0010\voccult-mods]mermaids-gain-hydration-while-playing-in-ocean-and-pool-waterfall-requires-island-paradise-ep\fbluegenjutsu\203a:5:{i:6794;s:10:\"1373079566\";i:5980;s:10:\"1365547199\";i:5502;s:10:\"1362575504\";i:5350;s:10:\"1361484013\";i:4665;s:10:\"1355324915\";}\0010\0011\0010\0010\0\0010\0010\0011\0\0018\003295\6forums\5forum\003243\v,4,8,3,6,1,\v,4,8,3,6,1,\t,4,8,3,6,\7,4,8,6,\t,4,8,3,6,\v,4,8,3,6,1,\0\0010\0010\373\277\1\0)\003250\0013\00213\n1370147822\00292\6Zaleth\10Patterns\0\003250\0011\0010\0\0#My Pattern Creations (and Requests)\0046447\tlast_post\3Z-A\003100\3all\373\0010\0010\0010\0011\373\003134\0\0010\0010\0\373\0010\0011\0\0010\0010\0010\0010\n1370147005#My Pattern Creations (and Requests)\0046447\0010\0010\0011\0010\10patterns!my-pattern-creations-and-requests\6zalethPa:3:{i:6447;s:10:\"1370147822\";i:1783;s:10:\"1331692317\";i:474;s:10:\"1325566496\";}\0010\0011\0010\0010\0\0010\0010\0010\0\0018\003306\6forums\5forum\003250\v,4,8,3,6,1,\v,4,8,3,6,1,\t,4,8,3,6,\7,4,8,6,\t,4,8,3,6"..., 16384) = 4947
23:33:17 brk(0x2701000) = 0x2701000
23:33:17 brk(0x2741000) = 0x2741000
23:33:17 brk(0x2781000) = 0x2781000
23:33:17 brk(0x27c1000) = 0x27c1000
23:33:17 brk(0x2801000) = 0x2801000
23:33:17 brk(0x2841000) = 0x2841000
23:33:17 brk(0x2881000) = 0x2881000
23:33:17 brk(0x28c1000) = 0x28c1000
23:33:17 brk(0x2901000) = 0x2901000
23:33:17 brk(0x2941000) = 0x2941000
23:33:17 brk(0x2981000) = 0x2981000
23:33:17 brk(0x29c1000) = 0x29c1000
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/coreExtensions.php", {st_dev=makedev(145, 106), st_ino=165967019, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=23817, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:00:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 brk(0x2a01000) = 0x2a01000
23:33:17 brk(0x2a41000) = 0x2a41000
23:33:17 brk(0x2a81000) = 0x2a81000
23:33:17 brk(0x2ac1000) = 0x2ac1000
23:33:17 brk(0x2b01000) = 0x2b01000
23:33:17 brk(0x2b41000) = 0x2b41000
23:33:17 brk(0x2b81000) = 0x2b81000
23:33:17 brk(0x2bc1000) = 0x2bc1000
23:33:17 brk(0x2c01000) = 0x2c01000
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output", {st_dev=makedev(145, 106), st_ino=165967269, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/publicOutput.php", {st_dev=makedev(145, 106), st_ino=165968219, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=232, st_size=114748, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/output/publicOutput.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968219, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=232, st_size=114748, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Public output methods\n * Last Updated: $Date: 2013-04-05 20:17:20 -0400 (Fri, 05 Apr 2013) $\n * \n *\n * @author \t\t$Author: bfarber $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\tWho knows...\n * @version\t\t$Revision: 12156 $\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"
Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass output\n{\n\t/**#@+\n\t * Registry Object Shortcuts\n\t *\n\t * @access\tpublic\n\t * @var\t\tobject\n\t */\n\tpublic $registry;\n\tpublic $DB;\n\tpublic $settings;\n\tpublic $request;\n\tpublic $lang;\n\tpublic $member;\n\tpublic $cache;\n\t/**#@-*/\n\t\n\t/**\n\t * SEO templates\n\t *\n\t * @access\tpublic\n\t * @var\t\tarray\n\t */\n\tpublic $seoTemplates\t\t= array();\n\t\n\t/**\n\t * URL"..., 8192) = 8192
23:33:17 read(4, "amini' )\n\t\t\t{\n\t\t\t\t$this->_isSmallTouchDevice = true;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $this->_isSmallTouchDevice;\n\t}\n\t\n\t/**\n\t * Is this a ___ touch device? ...\n\t * Future expansion\n\t */\n\tpublic function isTouchDevice()\n\t{\n\t\treturn ( $this->isLargeTouchDevice() || $this->isSmallTouchDevice() ) ? true : false;\n\t}\n\t\n \t/**\n\t * Construct\n\t *\n\t * @access\tpublic\n\t * @param\tobject\t\tipsRegistry reference\n\t * @param\tbool\t\tWhether to init or not\n\t * @return\t@e void\n\t */\n\tpublic function __construct( ipsRegistry $registry, $initialize=FALSE )\n\t{\n\t\t/* Make object */\n\t\t$this->registry = $registry;\n\t\t$this->DB = $this->registry->DB();\n\t\t$this->settings =& $this->registry->fetchSettings();\n\t\t$this->request =& $this->registry->fetchRequest();\n\t\t$this->lang = $this->registry->getClass('class_localization');\n\t\t$this->member = $this->registry->member();\n\t\t$this->memberData =& $this->registry->member()->fetchMemberData();\n\t\t$this->cache = $this->registry->cache();\n\t\t$this->caches "..., 8192) = 8192
23:33:17 brk(0x2c41000) = 0x2c41000
23:33:17 read(4, "/' . $this->skin['set_output_format'] ) )\n\t\t\t\t{\n\t\t\t\t\t$_outputFormat = $this->skin['set_output_format'];\n\t\t\t\t\t$_outputClassName = $this->skin['set_output_format'] . 'Output';\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\trequire_once( IPS_ROOT_PATH . 'sources/classes/output/formats/coreOutput.php' );/*noLibHook*/\n\t\t\t$outputClassToLoad = IPSLib::loadLibrary( IPS_ROOT_PATH . 'sources/classes/output/formats/' . $_outputFormat. '/' . $_outputClassName. '.php', $_outputClassName );\n\t\t\t\n\t\t\t$this->outputFormatClass = new $outputClassToLoad( $this );\n\t\t\t\n\t\t\t/* Build URLs */\n\t\t\t$this->_buildUrls();\n\t\t\t\n\t\t\t/* Special set up for mobile skin */\n\t\t\tif ( $this->getAsMobileSkin() === true )\n\t\t\t{\n\t\t\t\t$this->_mobileSkinSetUp();\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/**\n\t * Reload skin set data\n\t * Some applications need to ensure they get 'fresh' skin data not just the data loaded during INIT\n\t *\n\t * @access public\n\t */\n\tpublic function reloadSkinData()\n\t{\n\t\t/* Whack the cache */\n\t\t$this->caches['skinsets'] = array();\n\t\t\n\t\t$this->allSkins = $this->_fe"..., 8192) = 8192
23:33:17 read(4, "--------------\n\t\t// Check skin caches\n\t\t//-----------------------------------------\n\n\t\tif ( ! is_array( $this->caches['skinsets'] ) OR ! count( $this->caches['skinsets'] ) )\n\t\t{\n\t\t\t$this->cache->rebuildCache( 'skinsets', 'global' );\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// Did we come in via a gateway file?\n\t\t//-----------------------------------------\n\t\n\t\tforeach( $this->caches['outputformats'] as $key => $conf )\n\t\t{\n\t\t\tif ( $conf['gateway_file'] == IPS_PUBLIC_SCRIPT )\n\t\t\t{\n\t\t\t\tIPSDebug::addMessage( \"Gateway file confirmed: \" . $key );\n\t\t\t\t\n\t\t\t\t$gatewayFile = $key;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t\n\t\tif( !$gatewayFile )\n\t\t{\n\t\t\t$gatewayFile\t= 'html';\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// Get 'em\n\t\t//-----------------------------------------\n\t\t\n\t\t$_skinSets = $this->caches['skinsets'];\n\n\t\tif ( is_array( $_skinSets ) )\n\t\t{\n\t\t\tforeach( $_skinSets as $id => $data )\n\t\t\t{\n\t\t\t\t$_skinSets[ $id ]['_parentTree'] = unserialize( $_skinSets[ $id ]['set_parent_array'] "..., 8192) = 8192
23:33:17 read(4, ");\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tforeach( $_versions as $_v )\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tif ( strstr( $_v, '+' ) )\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tif ( $this->memberData['userAgentVersion'] >= intval( $_v ) )\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t$useSkinID = $id;\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak 4;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\telse if ( strstr( $_v, '-' ) )\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tif ( $this->memberData['userAgentVersion'] <= intval( $_v ) )\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t$useSkinID = $id;\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak 4;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tif ( $this->memberData['userAgentVersion'] == intval( $_v ) )\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t$useSkinID = $id;\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak 4;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t/* We don't care about versions.. */\n\t\t\t\t\t\t\t\t\t\t$useSkinID = $id;\n\t\t\t\t\t\t\t\t\t\tbreak 3;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Did we automatically get set the mobile skin?\n\t\t * If so, assign cookie\n\t\t */\n\t\t\n\t\tif ( "..., 8192) = 8192
23:33:17 read(4, "s->settings['board_url'], $this->settings['board_url_https'], $value );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\treturn $value;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/**\n\t * Load a normal template file from either cached PHP file or\n\t * from the DB. Populates $this->compiled_templates[ _template_name_ ]\n\t *\n\t * @access\tpublic\n\t * @param\tstring\tTemplate name\n\t * @param\tinteger\tTemplate set ID\n\t * @return\t@e void\n\t */\n\tpublic function loadTemplate( $name, $id='' )\n\t{\n\t\t//-----------------------------------------\n\t\t// Make sure we've not already tried to load\n\t\t//-----------------------------------------\n\t\t\n\t\tstatic $attempted\t= array();\n\t\t\n\t\tif( in_array( md5( $name . $id ), $attempted ) )\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t$attempted[]\t= md5( $name . $id );\n\t\t\n\t\t//-----------------------------------------\n\t\t// Init\n\t\t//-----------------------------------------\n\t\t\n\t\t$tags \t= 1;\n\t\t$loaded\t= 0;\n\t\t\n\t\t//-----------------------------------------\n\t\t// Select ID\n\t\t//-----------------------------------------\n\t\t\n\t\tif ( ! $id )\n\t\t{\n\t\t\t$id = $this->skin['_s"..., 8192) = 8192
23:33:17 brk(0x2c81000) = 0x2c81000
23:33:17 read(4, "->registry->output->buildUrl( 'showtopic=1', 'public' );\n\t * Generates: 'http://www.board.com/forums/index.php?showtopic=1'\n\t *\n\t * @access\tpublic\n\t * @param\tstring\t\tURL bit\n\t * @param\tstring\t\tType of URL\n\t * @param\tstring\t\tWhether to apply http auth to the URL\n\t * @return\tstring\t\tFormatted URL\n\t */\n\tpublic function buildUrl( $url, $urlBase='public', $httpauth=\"false\" )\n\t{\n\t\t/* INIT */\n\t\t$base = '';\n\t\t\n\t\t//-----------------------------------------\n\t\t// Caching\n\t\t//-----------------------------------------\n\t\t\n\t\t$_md5\t= md5( $url . $urlBase . intval($httpauth) );\n\t\t$cached\t= $this->getCachedFurl($_md5);\n\t\t\n\t\tif(!is_null($cached))\n\t\t{\n\t\t\treturn $cached;\n\t\t}\n\n\t\tif ( $urlBase )\n\t\t{\n\t\t\tswitch ( $urlBase )\n\t\t\t{\n\t\t\t\tdefault:\n\t\t\t\tcase 'none':\n\t\t\t\t\t$base = '';\n\t\t\t\tbreak;\n\t\t\t\tcase 'public':\n\t\t\t\t\tif ( IN_ACP )\n\t\t\t\t\t{\n\t\t\t\t\t\t$base = $this->settings['public_url'];\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$base = $this->settings['base_url'];\n\t\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\tcase 'current':\n\t\t\t\t\t/* use public if public or A"..., 8192) = 8192
23:33:17 read(4, "l, '#' ) )\n\t\t\t\t{\n\t\t\t\t\t$_anchor = substr( $restUrl, strpos( $restUrl, '#' ) );\n\t\t\t\t\t$restUrl = substr( $restUrl, 0, strpos( $restUrl, '#' ) );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tswitch ( $this->settings['url_type'] )\n\t\t\t\t{\n\t\t\t\t\tcase 'path_info':\n\t\t\t\t\t\tif ( $this->settings['htaccess_mod_rewrite'] )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$url = str_replace( IPS_PUBLIC_SCRIPT . '?', '', $url );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$url = str_replace( IPS_PUBLIC_SCRIPT . '?', IPS_PUBLIC_SCRIPT . '/', $url );\n\t\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\tcase 'query_string':\n\t\t\t\t\t\t$url = str_replace( IPS_PUBLIC_SCRIPT . '?', IPS_PUBLIC_SCRIPT . '?/', $url );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t/* Ensure that if the seoTitle is missing there is no double slash */\n\t\t\t\t# http://localhost/invisionboard3/user/1//\n\t\t\t\t# http://localhost/invisionboard3/user/1/mattm/\n\t\t\t\tif ( substr( $url, -2 ) == '//' )\n\t\t\t\t{\n\t\t\t\t\t$url = substr( $url, 0, -1 );\n\t\t\t\t}\n\n\t\t\t\t/* Others... */\n\t\t\t\tif ( $restUrl )\n\t\t\t\t{\n\t\t\t\t\t$_url = str_replace( '&', '&', str_replace( '?', '', $restU"..., 8192) = 8192
23:33:17 read(4, ";\n\t \t\t $_encodedManually = true;\n\t\t \t\n\t\t }*/\n\t\t\n\t\t/* @link http://community.invisionpower.com/resources/bugs.html/_/ip-board/having-a-followed-by-a-number-%23-in-a-topic-title-breaks-furl-redirection-r41229 */\n\t\tforeach( $seoTitle as $essEeeOh )\n\t\t{\n\t\t\tif ( strstr( $essEeeOh, '%' ) && IPS_DOC_CHAR_SET != 'UTF-8' )\n\t\t\t{\n\t\t\t\t$_encodedManually = true;\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Does it contain unicode? */\n\t\tif ( strstr( $_toTest, '%' ) )\n\t\t{\n\t\t\t/* Lowercase it as some browsers send %E2 but it will be stored as %e2 */\n\t\t\t$_toTest = strtolower( $_toTest );\n\t\t}\n\t\t\t\t\n\t\t/* Try original */\n\t\tif ( $_encodedManually === false && ( is_array($seoTitle) OR ! preg_match( \"#\" . $_st . preg_quote( $seoTitle[0], '#' ) . '(' . $_end . '$|/\\?|' . $_end . '\\w+?' . $_end . \"$|\" . preg_quote( $_blk, '#' ) . \")#\", $_toTest ) ) )\n\t\t{\n\t\t\t/* Do we need to encode? */\n\t\t\t$_toTest = urldecode( $_toTest );\n\t\t}\n\t\t\n\t\tif ( $this->settings['url_type'] == 'query_string' )\n\t\t{\t\t\n\t\t\t$_toTest = str_replace( IPS_PUBLIC_SCRIPT . '?/',"..., 8192) = 8192
23:33:17 read(4, "*',\n\t\t\t\t\t\t\t\t\t\t\t \t\t\t \t\t\t'from' => 'skin_cache',\n\t\t\t\t\t\t\t\t\t\t\t \t\t\t \t\t\t'where' => \"cache_set_id=\" . intval( $this->skin['set_id'] ) . \" AND cache_type='css' and cache_value_1='\" . $this->DB->addSlashes( $cssName ) . \"'\" ) );\n\t\t\t\t\t\tif ( $cssData['cache_content'] )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\treturn $this->addToDocumentHead( 'inlinecss', $this->parseIPSTags( $cssData['cache_content'] ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->_css['import'][$data] = array( 'content'\t=> $data );\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->_documentHeadItems[ $type ][] = $data;\n\t\t}\n\t}\n\t\n\t/**\n\t * Passes a module name to the IPB JS loader script\n\t *\n\t * @access\tpublic\n\t * @param\tstring\t\tName of module to load\n\t * @param\tinteger\t\tHigh Priority\n\t * @return\t@e void\n\t */\n\tpublic function addJSModule( $data, $priority )\n\t{\n\t\t$this->_jsLoader[$data] = $priority;\n\t}\n\t\n\t/**\n\t * Add content\n\t *\n\t * @access\tpublic\n\t * @param\tstring\t\tcontent to add\n\t * @param\tboolean\t\tPrepend instead of append\n\t * @return\t@e void\n\t */\n\tpublic function "..., 8192) = 8192
23:33:17 read(4, ". '', $output, 1 );\n\t\t}\n\t\t\n //-----------------------------------------\n // Check for SQL Debug\n //-----------------------------------------\n \n $this->_checkSQLDebug();\n\t\t\n\t\t//-----------------------------------------\n\t\t// Print it...\n\t\t//-----------------------------------------\n\t\t\n\t\t$this->outputFormatClass->printHeader();\n\t\t\n\t\t/* Remove unused hook comments */\n\t\t$output = preg_replace( '##', '', $output );\n\t\t\n\t\t/* Insert stats */\n\t\t$output = str_replace( '', $this->outputFormatClass->html_showDebugInfo(), $output );\n\t\t\n\t\t/* Return output instead of printing? */\n\t\tif( $return )\n\t\t{\n\t\t\tIPSDebug::setMemoryDebugFlag( \"Output sent\", $_NOW );\n\t\t\t\n\t\t\t$this->outputFormatClass->finishUp();\n\t\t\t\n\t\t\treturn $output;\n\t\t}\n\n\t\tprint $output;\n\t\t\n\t\tIPSDebug::setMemoryDebugFlag( \"Output sent\", $_NOW );\n\t\t\n\t\t$this->outputFormatClass->finishUp();\n\t\t\n exit;\n }\n\n\t/**\n\t * Replace macros\n\t * Left here as a reference '"..., 8192) = 8192
23:33:17 brk(0x2cc1000) = 0x2cc1000
23:33:17 read(4, ")\t\t\t\t? 'pages' : 'nextPrevious';\n\t\t$data['ajaxLoad']\t\t\t= isset($data['ajaxLoad'])\t\t\t\t? $data['ajaxLoad'] : '';\n\t\t$data['anchor']\t\t\t\t= isset($data['anchor'])\t\t\t\t? '#' . $data['anchor'] : '';\n\t\t$data['disableSinglePage']\t= isset($data['disableSinglePage'])\t\t? $data['disableSinglePage'] : true;\n\t\t$data['realTitle']\t\t\t= isset($data['realTitle'])\t\t\t\t? $data['realTitle'] : '';\n\t\t$data['isPagesMode']\t\t= empty($data['isPagesMode'])\t\t\t? false : true;\n\t\t$data['currentPage']\t = isset( $data['currentPage'] ) \t? $data['currentPage'] : intval( $this->request[ $data['pageUrlKey'] ] );\n\t\n\t\t/* Pages mode */\n\t\tif ( $data['isPagesMode'] )\n\t\t{\n\t\t\t$data['currentStartValue'] = ( $data['currentPage'] > 1 ) ? ( ( $data['currentPage'] - 1 ) * $data['itemsPerPage'] ) : 0;\n\t\t}\n\t\n\t\t//-----------------------------------------\n\t\t// Are we on an actual page right now?\n\t\t//-----------------------------------------\n\t\t\t\t\t\t\t\t\n\t\t$modulus = $data['currentStartValue'] % $data['itemsPerPage'];\n\t\t\n\t\tif ( $modulus != 0"..., 8192) = 8192
23:33:17 read(4, "\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$remapData['inDevDefault'] = $REMAP['inDevDefault'];\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t/* Master keys */\n\t\t\t\t$remapData['masterKeys'] = $REMAP['masterKeys'];\n\t\t\t\t\n\t\t\t\t/* Images */\n\t\t\t\t$remapData['images'] = $REMAP['images'];\n\n\t\t\t\t/* IN DEV export */\n\t\t\t\tforeach( $REMAP['export'] as $id => $key )\n\t\t\t\t{\n\t\t\t\t\tif ( preg_match( \"#^[a-zA-Z]#\", $key ) )\n\t\t\t\t\t{\n\t\t\t\t\t\tif ( is_array( $REMAP['masterKeys'] ) AND in_array( $key, $REMAP['masterKeys'] ) )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$_skin = array( 'set_id' => $key );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t/* we're using a key */\n\t\t\t\t\t\t\t$_skin = $this->_fetchSkinByKey( $id );\n\t\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t\t$remapData['export'][ $id ] = $_skin['set_id'];\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$remapData['export'][ $id ] = $id;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$remapData = array( 'templates'\t\t=> array( 'root' => 'master_skin' ),\n\t\t\t\t\t\t\t\t'css'\t\t\t=> array( 'root' => 'master_css' ),\n\t\t\t\t\t\t\t\t'inDevDefault'\t=> 'root'\n\t\t\t\t\t\t\t);\n\t\t}\n\t\t\n\t\treturn $remapData;\n\t}\n\t\n\t/**\n\t * Fetch a skin set via a"..., 8192) = 8192
23:33:17 read(4, " \t}\n \t\n \t/* Loop through the cache */\n \t$hooksCache = ipsRegistry::cache()->getCache( 'hooks' );\n \t\n\t\tforeach( $skin_groups as $skinGroup )\n\t\t{\n\t\t\tif( isset( $hooksCache['templateHooks'][$skinGroup] ) AND is_array( $hooksCache['templateHooks'][$skinGroup] ) AND count( $hooksCache['templateHooks'][$skinGroup] ) )\n\t\t\t{\n\t\t\t\tforeach( $hooksCache['templateHooks'][$skinGroup] as $tplHook )\n\t\t\t\t{\n\t\t\t\t\t/* Build hook point */\n\t\t\t\t\t$arr_key = $tplHook['type'] . '.' . $skinGroup . '.' . $tplHook['skinFunction'] . '.' . $tplHook['id'] . '.' . $tplHook['position'];\n\t\t\t\t\t\n\t\t\t\t\t/* Terabyte - hook point not available? Skip the hook */\n\t\t\t\t\tif ( !isset($hook_output[ $arr_key ]) && strpos( $text, '' ) === FALSE )\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t/* Check for hook file */\n\t\t\t\t\tif( is_file( IPS_HOOKS_PATH . $tplHook['filename'] ) )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Check for hook class */\n\t\t\t\t\t\tinclude_once( IPS_HOOKS_PATH . $tplHook['filename'] );/*noLibHook*/\n\t\t\t\t\t\t\n\t\t\t\t\t"..., 8192) = 8192
23:33:17 read(4, "cName does not exist in $className\", E_USER_ERROR );\n\t}\n\t\t\n}", 8192) = 60
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "X\0\0\0\3SELECT * FROM skin_cache WHERE cache_set_id=1 AND cache_type IN ('css', 'replacements')", 92) = 92
23:33:17 read(3, "\1\0\0\1\21F\0\0\2\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\10cache_id\10cache_id\f?\0\n\0\0\0\3\3B\0\0\0P\0\0\3\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\rcache_updated\rcache_updated\f?\0\n\0\0\0\3\1\0\0\0\0J\0\0\4\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\ncache_type\ncache_type\f\10\0\310\0\0\0\375\t@\0\0\0N\0\0\5\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\fcache_set_id\fcache_set_id\f?\0\n\0\0\0\3\t@\0\0\0L\0\0\6\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\vcache_key_1\vcache_key_1\f\10\0\310\0\0\0\375\1\0\0\0\0P\0\0\7\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\rcache_value_1\rcache_value_1\f\10\0\310\0\0\0\375\1\0\0\0\0L\0\0\10\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\vcache_key_2\vcache_key_2\f\10\0\310\0\0\0\375\1\0\0\0\0P\0\0\t\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\rcache_value_2\rcache_value_2\f\10\0\310\0\0\0\375\1\0\0\0\0P\0\0\n\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\rcache_value_3\rcache_value_3\f\10\0\310\0\0\0\375\1\0\0\0\0P\0\0\v\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\rcache_content\rcache_content\f\10\0\377\377\377\0\374\21\20\0\0\0L\0\0\f\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\vcache_key_3\vcache_key_3\f\10\0\310\0\0\0\375\1\0\0\0\0L\0\0\r\3def\fsimsasyl_ipb\nskin_cache\nskin_cache\vcache_key_4\vcache_key_4\f\10\0\310\0\0\0\375\1\0\0\0\0P\0\0\16\3def\fsimsasyl_ipb"..., 16384) = 16384
23:33:17 read(3, "isplay: block;\n\t\twidth: auto;\n\t\tmargin: 3px auto 0px auto;\n\t\ttext-align: center;\n\t\tcursor: pointer;\n\t\tfont-size: 10px !important;\n\t}\n\n/* Dialogs */\n.cke_dialog.cke_single_page td.cke_dialog_contents {\n\theight: auto !important;\n}\n\n.cke_dialog .cke_dialog_ui_textarea { height: 130% !important }\n\t\n/* ACP Specific */\ntable.cke_editor td { padding: 0px !important; }\5setBy\7appInfo\6core-1\nattributes!title=\"Main\" media=\"screen,print\"\7modules\0005\6\0\26\0042990\n1366396381\3css\0011\4name\7ipb_ucp\10position\0011\0010\374\261\5/************************************************************************/\n/* IP.Board 3 CSS - By Rikki Tissier - (c)2008 Invision Power Services\t*/\n/************************************************************************/\n/* ipb_ucp.css - UserCP styles\t\t\t\t\t\t\t\t\t\t\t*/\n/************************************************************************/\n\n#usercp_content { min-height: 420px; }\n#fbUserBox p.desc { left: 0px; }\n\n.ipsSettings_section .custom .wrap { display: block; padding: 8px 0 8px 15px; }\n\t.ipsSetti"..., 16384) = 16384
23:33:17 read(3, ": absolute;\n\ttop: 0; left: 0;\n\tbackground: rgba(0,0,0,0.2);\n\tcolor: #fff;\n\topacity: 0.3;\n\t-webkit-border-radius: 3px;\n\t-moz-border-radius: 3px;\n\tborder-radius: 3px;\n\t-webkit-transition: all 0.4s ease-in-out;\n\t-moz-transition: all 0.4s ease-in-out;\n}\n\t.photo_holder:hover #change_photo {\n\t\topacity: 1;\n\t\tbackground: #000;\n\t}\n\t\n#user_info_cell {\n\tdisplay: table-cell;\n\twhite-space: nowrap;\n\tpadding-right: 15px;\n}\n#user_status_cell {\n\tdisplay: table-cell;\n\twidth: 100%;\n\tvertical-align: top;\n}\n#user_latest_status {\n\tbackground: url(http://simsasylum.com/tfm/public/style_images/master/stems/profile_status_stem.png ) no-repeat 0px 50%;\n\tpadding-left: 11px;\n}\n\n#user_latest_status > div {\n\tpadding: 10px 15px;\n\tbackground-color: #ebece5;\n\tcolor: #343434;\n\tfont-size: 14px;\n\t-webkit-border-radius: 6px;\n\t-moz-border-radius: 6px;\n\tborder-radius: 6px;\n\tmin-height: 45px;\n\tword-wrap: break-word;\n}\n\n#user_latest_status > div > span { display: block; }\n#user_utility_links { margin-top: 10px; text-align: ri"..., 16384) = 16384
23:33:17 read(3, "to; }\n\n#register_form .f { margin: 4px 12px 4px 0; display: inline-block; vertical-align: middle; }\n\n\t\n.reg_msg {\t\n\tcolor: #fff;\n\tfont-size: 0.8em;\n\tfont-weight: bold;\n\tborder-radius: 4px;\n\t-moz-border-radius: 4px;\n\t-webkit-border-radius: 4px;\n\tpadding: 3px 8px;\n\tposition: absolute;\n}\n\n\t.reg_msg img {\n\t\tdisplay: none;\n\t}\n\t.reg_msg.reg_error {\n\t\tbackground-color: #ad2930;\n\t}\n\t.reg_msg.reg_accept {\n\t\tbackground-color: #6f8f52;\n\t}\n\n#login_form { width: 70%; margin: 0 auto; }\n#other_signin { width: 35%; }\n\n#member_login .extra {\n\tfont-size: 0.8em;\n\tcolor: #69727b;\n\tpadding: 5px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n#facebookComplete img.servicepic {\n\tfloat: left;\n\tmargin-top: -2px;\n\tmargin-left: -12px;\n}\n\n#facebookComplete p {\n\tmargin-left: 60px;\n\tline-height: 150%;\n}\5setBy\7appInfo\6core-1\nattributes!title=\"Main\" media=\"screen,print\"\7modules\6global\20\7\0 \0042983\n1366396381\3css\0011\4name\ripb_messenger\10position\0011\0010\374\200\6/************************************************************************/\n/* IP.B"..., 16384) = 16384
23:33:17 read(3, "rgin-left: 60px; }\n.ipsList_withminiphoto > li .list_content { margin-left: 40px; }\n.ipsList_withtinyphoto > li .list_content { margin-left: 30px; }\n.list_content { word-wrap: break-word; }\n\n.ipsList_data li { margin-bottom: 6px; line-height: 1.3; }\n.ipsList_data .row_data { display: inline-block; word-wrap: break-word; max-width: 100%; }\n.ipsList_data .row_title, .ipsList_data .ft {\n\tdisplay: inline-block;\n\tfloat: left;\n\twidth: 120px;\n\tfont-weight: bold;\n\ttext-align: right;\n\tpadding-right: 10px;\n}\n\n.ipsList_data.ipsList_data_thin .row_title, .ipsList_data.ipsList_data_thin .ft {\n\twidth: 80px;\n}\n\n/************************************************************************/\n/* TYPOGRAPHY */\n\n.ipsType_pagetitle, .ipsType_subtitle {\n\tfont: 300 26px/1.3 Helvetica, Arial, sans-serif;\n\tcolor: #323232;\n}\n.ipsType_subtitle { font-size: 18px; }\n.ipsType_sectiontitle { \n\tfont-size: 16px;\n\tfont-weight: normal;\n\tcolor: #595959;\n\tpadding: 5px 0;\n\tborder-bottom: 1px solid #ececec;\n}\n\n.ipsType_pagedesc "..., 80249) = 80249
23:33:17 brk(0x2ce5000) = 0x2ce5000
23:33:17 read(3, "\5\0\0&\376\0\0\2\0", 16384) = 9
23:33:17 brk(0x2d25000) = 0x2d25000
23:33:17 access("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/html", F_OK) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output", {st_dev=makedev(145, 106), st_ino=165967269, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats", {st_dev=makedev(145, 106), st_ino=165967369, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2012/04/12-09:58:25, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/coreOutput.php", {st_dev=makedev(145, 106), st_ino=165968221, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=32, st_size=15127, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/coreOutput.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968221, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=32, st_size=15127, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Ouput format: HTML\n * (Matt Mecham)\n * Last Updated: $Date: 2013-03-12 16:14:42 -0400 (Tue, 12 Mar 2013) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 12075 $\n *\n */\n\ninterface interface_output\n{\n\t/**\n\t * Prints any header information for this output module\n\t *\n\t * @access\tpublic\n\t * @return\t@e void\t\tPrints header() information\n\t */\n\tpublic function printHeader();\n\t\n\t/**\n\t * Fetches the output\n\t *\n\t * @access\tpublic\n\t * @param\tstring\t\tOutput gathered\n\t * @param\tstring\t\tTitle of the document\n\t * @param\tarray \t\tNavigation gathered\n\t * @param\tarray \t\tArray of document head items\n\t * @param\tarray \t\tArray of JS loader items\n\t * @param\tarray \t\tArray of extra data\n\t * @return\tstr"..., 8192) = 8192
23:33:17 read(4, "ld assume the block of text has not been formatted, and that we need to convert spaces to commas basically.\n\t\t\t\t When encode is passed as false, we should assume that the keywords coming in have been explicitly set (with commas) and not change that */\n\t\t\t\tif ( $encode === TRUE )\n\t\t\t\t{\n\t\t\t\t\t$content\t= IPSText::stripAttachTag( $content );\n\n\t\t\t\t\t//Bug #15323 breaks accented characters, etc\n\t\t\t\t\t//$content = strtolower( preg_replace( \"/[^0-9a-zA-Z ]/\", \"\", preg_replace( \"/&([^;]+?);/\", \"\", $content ) ) );\n\t\t\t\t\t$content = str_replace( array( '.', '!', ':', ';', ',', '\"', '@', '%', '*', '(', ')' ), '', preg_replace( \"/&([^;]+?);/\", \"\", $content ) );\n\t\t\t\t\t//Also breaks accented characters\n\t\t\t\t\t//$_vals = preg_split( '/\\s+?/', $content, -1, PREG_SPLIT_NO_EMPTY );\n\t\t\t\t\t$_vals = explode( ' ', $content );\n\t\t\t\t\t$_sw = explode( ',', $this->lang->words['_stopwords_'] );\n\t\t\t\t\t$_fvals = array();\n\t\t\t\t\t$_limit = 30;\n\t\t\t\t\t$_c = 0;\n\t\t\t\t\t\n\t\t\t\t\tif ( is_array( $_vals ) )\n\t\t\t\t\t{\n\t\t\t\t\t\tforeach"..., 8192) = 6935
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output", {st_dev=makedev(145, 106), st_ino=165967269, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats", {st_dev=makedev(145, 106), st_ino=165967369, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2012/04/12-09:58:25, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/html", {st_dev=makedev(145, 106), st_ino=165967375, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:12:31, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/html/htmlOutput.php", {st_dev=makedev(145, 106), st_ino=165968224, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=72, st_size=33368, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:02:31, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/output/formats/html/htmlOutput.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968224, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=72, st_size=33368, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:02:31, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Ouput format: HTML\n * (Matt Mecham)\n * Last Updated: $Date: 2012-10-22 08:27:09 -0400 (Mon, 22 Oct 2012) $\n * \n *\n * @author \t\t$Author: AndyMillne $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 11500 $\n *\n */\n\nclass htmlOutput extends coreOutput implements interface_output \n{\n\t/**\n\t * Main output class\n\t *\n\t * @access\tprotected\n\t * @var\t\tobject\n\t */\n\tprotected $output;\n\t\n\t/**\n\t * Print only flag\n\t *\n\t * @access\tprotected\n\t * @var\t\tbool\n\t */\n\tprotected $_printOnly = false;\n\t\n\t/**\n\t * CSS array\n\t *\n\t * @access\tprotected\n\t * @var \tarray\n\t */\n\tprotected $_css = array( 'import' => array(), 'inline' => array() );\n\t\n\t/**\n\t * Use a minimal wrapper instead of globalTemplate\n\t * \n\t * @var\t\tbool\n\t */\n \tprotected $useMinima"..., 8192) = 8192
23:33:17 read(4, "\t }\n\t \n\t /* Do pagination */\n\t if ( strstr( $title, '<%pageNumber%>' ) )\n\t {\n\t \t$replace = ( $this->_current_page_title ) ? ' ' . $this->lang->words['page_title_page'] . ' ' . $this->_current_page_title : '';\n\t\t $title = str_replace( '<%pageNumber%>', $replace, $title );\n\t }\n\t else if ( $this->_current_page_title )\n\t {\n\t\t $title = $title . ' ' . $this->lang->words['page_title_page'] . ' ' . $this->_current_page_title;\n\t }\n\t \n\t $finalOutput = $this->output->getTemplate($templateGroup)->$templateName( $output, $documentHeadItems, $this->_css, $jsLoaderItems, $this->_metaTags,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array( 'title'\t\t\t=> $title,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'applications'\t=> $this->core_fetchApplicationData(),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'page'\t\t\t=> $this->_current_page_title,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t\t 'notifications'\t=>( $notificationLatest ) ? IPSText::jsonEncodeForTemplate( $n"..., 8192) = 8192
23:33:17 brk(0x2d65000) = 0x2d65000
23:33:17 read(4, "\t * @param\tstring\t\tURL\n\t * @param\tstring\t\t[SEO Title]\n\t * @param\tstring\t\t[Send a 301 redirect header first]\n\t * @param\tstring\t\tSEO Template\n\t * @return\tmixed\n\t */\n\tpublic function silentRedirect( $url, $seoTitle='', $send301=FALSE, $seoTemplate='' )\n\t{\n\t\t# SEO?\n\t\tif ( $seoTitle OR $seoTemplate )\n\t\t{\n\t\t\t$url = $this->registry->getClass('output')->buildSEOUrl( $url, 'none', $seoTitle, $seoTemplate );\n\t\t}\n\t\t\n\t\t# Ensure &s are taken care of\n\t\t$url = str_replace( \"&\", \"&\", $url );\n\t\t\n\t\t# Dirty hack @todo look at real reason for this - happens when URL is already SEO and passed via buildSEOUrl above\n\t\t$url = str_replace( \"?//\", \"?/\", $url );\n\t\t\n\t\t# 301?\n\t\tif ( $send301 !== false )\n\t\t{\n\t\t\t/* Kill caching as Firefox loves to cache redirects */\n\t\t\t$this->settings['nocache'] = 1;\n\t\t\t$this->_headerExpire = 0;\n\t\t\t\n\t\t\t/* Strip session URL if there wasn't one */\n\t\t\tif ( ! IN_ACP AND $this->member->session_type != 'cookie' AND ! $this->request['s'] )\n\t\t\t{\n\t\t\t\t$url = preg_replace( '/\\?s="..., 8192) = 8192
23:33:17 read(4, "\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( strlen($v) > 120 )\n\t\t\t\t{\n\t\t\t\t\t$v = substr( $v, 0, 120 ). '...';\n\t\t\t\t}\n\n\t\t\t\t$stats .= \"$k = \".IPSText::htmlspecialchars($v).\"
\\n\";\n\t\t\t}\n\n\t\t\t//-----------------------------------------\n\t\t\t// Stop E_ALL moaning...\n\t\t\t//-----------------------------------------\n\t\t\t$cache = $this->caches['systemvars'];\n\n\t\t\t$cache['task_next_run'] = $cache['task_next_run'] ? $cache['task_next_run'] : 0;\n\n\t\t\t$stats .= \"Next task = \".$this->registry->getClass('class_localization')->getDate( $cache['task_next_run'], 'LONG' ).\"\\n
Time now = \".$this->registry->getClass( 'class_localization')->getDate( time(), 'LONG' );\n\t\t\t$stats .= \"
Timestamp Now = \".time();\n\t\t\t\n\t\t\t$stats .= \"MEMBER: last_visit: \" . $this->memberData['last_visit'] . \" / \" . $this->registry->getClass( 'class_localization')->getDate( $this->memberData['last_visit'], 'LONG' ) . \"
\";\n\t\t\t$stats .= \"MEMBER: uagent_key: \" . $this->memberData['userAgentKey"..., 8192) = 8192
23:33:17 read(4, " array_merge( $output, $this->html_fetchSetsDropDown( $data['set_id'], $iteration + 1 ) );\n\t\t\t}\n\t\t}\n\n\t\treturn $output;\n\t}\n\t\n\t/**\n\t * Get faster text\n\t *\n\t * @access\tprotected\n\t * @return\tstring\n\t */\n\tprotected function _getFasterText()\n\t{\n\t\t$texts\t= array(\n\t\t\t\t\t\t'Zooom',\n\t\t\t\t\t\t'REALLY fast',\n\t\t\t\t\t\t'Quick',\n\t\t\t\t\t\t'Lightning',\n\t\t\t\t\t\t'Chop chop',\n\t\t\t\t\t\t'Expeditive',\n\t\t\t\t\t\t'Flash',\n\t\t\t\t\t\t'Lickety Split',\n\t\t\t\t\t\t'On the double',\n\t\t\t\t\t\t'Rapid',\n\t\t\t\t\t\t'Velocious',\n\t\t\t\t\t\t'Pronto',\n\t\t\t\t\t\t'Speedy Gonzales',\n\t\t\t\t\t\t'Warp Speed',\n\t\t\t\t\t\t'Double espresso',\n\t\t\t\t\t\t);\n\n\t\treturn $texts[ array_rand($texts) ];\n\t}\n}", 8192) = 600
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_global.php", {st_dev=makedev(145, 106), st_ino=166068477, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=21144, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache", {st_dev=makedev(145, 106), st_ino=166068239, st_mode=S_IFDIR|0777, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2011/12/29-10:12:47, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1", {st_dev=makedev(145, 106), st_ino=166068243, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_global.php", {st_dev=makedev(145, 106), st_ino=166068477, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=21144, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_global.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068477, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=48, st_size=21144, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 read(4, " \"«\",\n'_larr' => \"←\",\n'_raquo' => \"»\",\n'_rarr' => \"→\",\n'_rssimportcode' => \"Code: \",\n'_rssimportnotoc' => \"No title or content\",\n'_rssimportsource' => \"Source\",\n'_stopwords_' => \"about,all,and,been,can,cant,for,has,here,just,me,new,next,not,old,out,our,said,saw,that,thats,the,their,then,theyll,this,was,were,well,will,with,what,whats,when,where,why,you\",\n'acp_sessiontimeout' => \"Your ACP session has expired. Please refresh the page to log back in.\",\n'active_users_detail' => \"%s members, %s guests, %s anonymous users\",\n'add' => \"Add\",\n'add_a_tag' => \"Add a tag\",\n'add_friend' => \"Add as Friend\",\n'admin_c"..., 8192) = 8192
23:33:17 read(4, "> \"Follow\",\n'like_ucfirst_unfollow' => \"Unfollow\",\n'like_ucfirst_unlike' => \"Unfollow\",\n'like_unfollow' => \"unfollow\",\n'like_unlike' => \"unfollow\",\n'liked_by' => \"Liked by\",\n'liked_by_title' => \"Liked By\",\n'lim_facebook' => \"Log in with Facebook\",\n'lim_openid' => \"Log in with OpenID\",\n'lim_twitter' => \"Log in with Twitter\",\n'lim_windows' => \"Log in with Windows Live\",\n'live_chat' => \"Live Chat\",\n'loadingtext' => \"Loading...\",\n'log_in' => \"Sign In\",\n'log_out' => \"Sign Out\",\n'logged_in_as' => \"Signed in as \",\n'login_forgotten_pass' => \"I've forgotten my password\",\n'login_to_acp' => \"AdminCP\",\n'logo' => \"Logo\",\n'M_1' => \"January\",\n'M_10' => \"October\",\n'M_11' => \"November\",\n'M_12' => \"December\",\n'M_2' => \"February\",\n'M_3' => \"March\",\n'M_4' => \"April\",\n'M_5' => \"May\",\n'M_6' => \"June\",\n'M_7' => \"July\",\n'M_8' => \"August\",\n'M_9' => \"September\",\n'm_group' => \"Group:\",\n'm_joined' => \"Joined:\",\n'm_posts' => \"posts\",\n'macro__delete' => \"Delete icon\",\n'macro__edit' => \"Edit icon\",\n'macro__pip' => \""..., 8192) = 8192
23:33:17 brk(0x2da5000) = 0x2da5000
23:33:17 read(4, "tes_link' => \"Member Status Updates\",\n'step' => \"Step %s\",\n'su_via' => \"via\",\n'submit_li' => \"Log in\",\n'tag_tip' => \"Type tags separated by commas...\",\n'tag_trunc_has_more' => \"and %s more...\",\n'tags_max_and_min' => \"Select at least %s tags and a maximum of %s tags\",\n'tags_max_no_min' => \"Select a maximum of %s tags\",\n'tags_min_no_max' => \"Select at least %s tags\",\n'task__optimizedtables' => \"%s database tables optimized\",\n'task__warnings' => \"Remove warnings points task ran\",\n'task_announcements' => \"Announcements updated\",\n'task_archiveprocess' => \"%s items archived\",\n'task_calendars' => \"Calendar recached\",\n'task_cleanout' => \"Old reg_images, sessions and search results removed\",\n'task_dailycleanout' => \"%s XML-RPC logs removed, %s orphaned attachments removed, %s subscriptions pruned and %s redirect link topics removed\",\n'task_dailydigest' => \"Daily Topic & Forum Digest Sent\",\n'task_logprune' => \"Log tables pruned\",\n'task_minifycleanup' => \"Old files created by mi"..., 8192) = 4760
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 access("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public/forums/manualResolver.php", F_OK) = -1 ENOENT (No such file or directory)
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public/forums/topics.php", {st_dev=makedev(145, 106), st_ino=165967160, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=144, st_size=71150, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:32, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public", {st_dev=makedev(145, 106), st_ino=165965869, st_mode=S_IFDIR|0755, st_nlink=7, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:10:01, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public/forums", {st_dev=makedev(145, 106), st_ino=165965905, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:19, st_mtime=2011/12/29-10:10:00, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public/forums/topics.php", {st_dev=makedev(145, 106), st_ino=165967160, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=144, st_size=71150, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:32, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/modules_public/forums/topics.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967160, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=144, st_size=71150, st_atime=2013/06/26-17:28:19, st_mtime=2013/04/19-11:01:32, st_ctime=2013/06/26-17:28:19}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board vVERSION_NUMBER\n * Topic View\n * Last Updated: $Date: 2013-04-10 10:28:14 +0100 (Wed, 10 Apr 2013) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage Forums\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 12166 $\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"
Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass public_forums_forums_topics extends ipsCommand\n{\n\t/**\n\t * First post content\n\t *\n\t * @var\t\tstring\n\t */\n\tprotected $_firstPostContent = '';\n\n\t/**\n\t * Number of posts so far (offset)\n\t *\n\t * @var\t\tinteger\n\t */\n\tpublic $post_count\t = 0;\n\t\n\t/**\n\t * First post id\n\t *\n\t * @var\t\tinteger\n\t */\n\tpublic $first\t\t= 0;\n\t\n\t/**\n\t * Quoted post ids\n\t *\n\t * @var\t\t"..., 8192) = 8192
23:33:17 read(4, "s->_getActiveUserData(),\n\t\t\t\t\t\t\t 'mod_links'\t\t\t => ( $this->registry->getClass('topics')->isArchived( $topicData ) ) ? '' : $this->_generateModerationPanel(),\n\t\t\t\t\t\t\t 'follow_data' \t\t => ( $this->registry->getClass('topics')->isArchived( $topicData ) or $topicData['_isDeleted'] ) ? '' : $this->_like->render( 'summary', $topicData['tid'] ),\n\t\t\t\t\t\t\t 'same_tagged'\t\t\t => ( $this->registry->getClass('topics')->isArchived( $topicData ) ) ? '' : $this->_getSameTaggedData(),\n\t\t\t\t\t\t\t 'poll_data'\t\t\t => $poll_data,\n\t\t\t\t\t\t\t 'load_editor_js'\t\t => ( $this->_getFastReplyData() && $topicData['_isDeleted'] ) ? true : false,\n\t\t\t\t\t\t\t 'smilies'\t\t\t\t => '',\n\t\t\t\t\t\t\t 'best_answer_post_data' => $this->_getBestAnswerFeature( $postData, $topicData ) );\n\n\t\t//-----------------------------------------\n\t\t// If we can edit, but not reply, load JS still\n\t\t//-----------------------------------------\n\t\t\n\t\tif( !( $displayData['fast_reply'] and $displayData['reply_button']['url'] ) AND $this->_canEditAPost )\n"..., 8192) = 8192
23:33:17 read(4, "== false ) ? $this->registry->getClass('topics')->getTopicData() : $topicData;\n\t\t$forumData = $this->forumClass->getForumById( $topicData['forum_id'] );\n\t\t$permissionData = $this->registry->getClass('topics')->getPermissionData();\n\t\t$st = 0;\n\t\t$pid\t = \"\";\n\t\t$last_time = $this->registry->classItemMarking->fetchTimeLastMarked( array( 'forumID' => $forumData['id'], 'itemID' => $topicData['tid'] ) );\n\t\t$query = ' AND ' . $this->registry->class_forums->fetchPostHiddenQuery('visible');\n\t\t\n\t\t/* Can we deal with hidden posts? */\n\t\tif ( $this->registry->class_forums->canQueuePosts( $topicData['forum_id'] ) )\n\t\t{\n\t\t\tif ( $permissionData['softDeleteSee'] )\n\t\t\t{\n\t\t\t\t/* See queued and soft deleted */\n\t\t\t\t$query = ' AND ' . $this->registry->class_forums->fetchPostHiddenQuery( array( 'approved', 'sdeleted', 'hidden' ) );\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t/* Otherwise, see queued and approved */\n\t\t\t\t$query = ' AND ' . $this->registry->class_forums->fetchPostHiddenQuery( array"..., 8192) = 8192
23:33:17 read(4, "$this->forumClass->getForumById( $topicData['forum_id'] );\n\t\t$showResults = 0;\n\t\t$pollData = array();\n\t\t\n\t\t//-----------------------------------------\n\t\t// Get the poll information...\n\t\t//-----------------------------------------\n\t\t\n\t\t$this->DB->build( array( 'select' => '*', 'from' => 'polls', 'where' => 'tid=' . $topicData['tid'] ) );\n\t\t$this->DB->execute();\n\t\t\n\t\t$poll = $this->DB->fetch();\n\t\t\n\t\t//-----------------------------------------\n\t\t// check we have a poll\n\t\t//-----------------------------------------\n\t\t\n\t\tif ( ! $poll['pid'] )\n\t\t{\n\t\t\treturn array( 'html' => '', 'poll' => '' );\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// Do we have a poll question?\n\t\t//-----------------------------------------\n\t\t\n\t\tif ( ! $poll['poll_question'] )\n\t\t{\n\t\t\t$poll['poll_question'] = $topicData['title'];\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// Poll only?\n\t\t//-----------------------------------------\n\t\t\n\t\tif ( $poll['poll_only'] == 1 )\n\t\t{\n\t\t\t$this->registry->getCl"..., 8192) = 8192
23:33:17 read(4, "picData['start_date'] ) );\n\n\t\t$html = $this->registry->output->getTemplate('topic')->pollDisplay( $poll, $topicData, $forumData, $pollData, $showResults, $_editPoll );\n\t\t\n\t\t$this->settings['max_images'] = $tmp_max_images;\n\t\t\n\t\treturn array( 'html' => $html, 'poll' => $poll );\n\t}\n\n\t/**\n\t * Tests to see if we're viewing a post, etc\n\t *\n\t * @return\t@e void\n\t */\n\tprotected function _doViewCheck()\n\t{\n\t\t/* Init */\n\t\t$topicData = $this->registry->getClass('topics')->getTopicData();\n\t\t$forumData = $this->forumClass->getForumById( $topicData['forum_id'] );\n\t\t$permissionData = $this->registry->getClass('topics')->getPermissionData();\n\t\t\n\t\tif ( $this->request['view'] )\n\t\t{\n\t\t\t/* Determine what we can see */\n\t\t\t$_approved\t= $this->registry->class_forums->fetchTopicHiddenQuery( array( 'visible' ), '' );\n\t\t\t\n\t\t\t/* Can we deal with hidden posts? */\n\t\t\tif ( $this->registry->class_forums->canQueuePosts( $topicData['forum_id'] ) )\n\t\t\t{\n\t\t\t\tif ( $permissionData['TopicSoftDeleteSee'] )\n\t\t\t\t{\n\t\t\t"..., 8192) = 8192
23:33:17 brk(0x2de5000) = 0x2de5000
23:33:17 read(4, "loadIds = array();\n\t\t\t$members = array();\n\t\t\t\n\t\t\tforeach( $_tmp as $_id => $_data )\n\t\t\t{\n\t\t\t\tif ( ! isset($results[ $_data['tid'] ]) )\n\t\t\t\t{\n\t\t\t\t\tif ( $this->registry->class_forums->fetchHiddenTopicType( $_data ) != 'visible' )\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tif ( ! $this->registry->permissions->check( 'view', $this->registry->class_forums->forum_by_id[ $_data['forum_id'] ] ) )\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tif ( ! $this->registry->class_forums->forumsCheckAccess( $_data['forum_id'], 0, 'forum', array(), true ) )\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tif( $_data['starter_id'] )\t\t\t\t\t{\n\t\t\t\t\t\t$loadIds[ $_data['starter_id'] ] = $_data['starter_id'];\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$results[ $_data['tid'] ] = $_data;\t\t\t\t\t\n\t\t\t\t\t/* Alreay got our 5 results? */\n\t\t\t\t\tif ( count( $results ) == 5 )\n\t\t\t\t\t{\n\t\t\t\t\t\tbreak;\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tif ( count($loadIds) )\n\t\t\t{\n\t\t\t\t$members = IPSMember::load( $loadIds );\n\t\t\t}\n\t\t\t\n\t\t\t/* Finally parse our results */\n\t\t\tforeach( $results as $id => $dat"..., 8192) = 8192
23:33:17 read(4, "\n\t * Append mod links\n\t *\n\t * @param\tstring\t$key\n\t * @return\tarray \tOptions\n\t */\n\tpublic function _addModLink( $key=\"\" )\n\t{\n\t\t/* Init */\n\t\t$topicData = $this->registry->getClass('topics')->getTopicData();\n\t\t$forumData = $this->forumClass->getForumById( $topicData['forum_id'] );\n\t\t\n\t\tif ($key == \"\") return \"\";\n\t\t\n\t\tif ($topicData['state'] == 'open' and $key == 'open_topic') return \"\";\n\t\tif ($topicData['state'] == 'closed' and $key == 'close_topic') return \"\";\n\t\tif ($topicData['state'] == 'moved' and ($key == 'close_topic' or $key == 'move_topic')) return \"\";\n\t\tif ($topicData['pinned'] == 1 and $key == 'pin_topic') return \"\";\n\t\tif ($topicData['pinned'] == 0 and $key == 'unpin_topic') return \"\";\n\t\tif ($topicData['approved'] != -1 and $key == 'unhide_topic' ) return \"\";\n\t\tif ($topicData['approved'] == -1 and $key == 'hide_topic' ) return \"\";\n\t\t\n\t\treturn array( 'option' => $this->mod_action[ strtoupper($key) ],\n\t\t\t\t\t 'value' => $this->lang->words[ strtoupper($key) ] );\n\t}\n\t\n\t/**\n\t * "..., 8192) = 8192
23:33:17 read(4, "stpost\");\n\t\t\t}\n\t\t}\n\n\t\t//-----------------------------------------\n\t\t// Render the page top\n\t\t//-----------------------------------------\n\n\t\t$topicData['go_new'] = isset($topicData['go_new']) ? $topicData['go_new'] : '';\n\n\t\t//-----------------------------------------\n\t\t// Format and print out the topic list\n\t\t//-----------------------------------------\n\t\t\n\t\t$modAll = ( $this->memberData['g_is_supmod'] or ( isset( $this->memberData['forumsModeratorData'][ $forumData['id'] ] ) and ( $this->memberData['forumsModeratorData'][ $forumData['id'] ]['delete_post'] or $this->memberData['forumsModeratorData'][ $forumData['id'] ]['split_move'] ) ) );\n\t\t\n\t\t$this->registry->getClass('topics')->setTopicData('adCodeSet' , false );\n\t\t$this->registry->getClass('topics')->setTopicData('ignoredUsers', $ignored_users );\n\t\t$posts = array();\n\t\t\n\t\t$this->DB->allow_sub_select = TRUE;\n\t\twhile ( $row = $this->DB->fetch( $oq ) )\n\t\t{\n\t\t\t/* Should we display the moderate checkbox for this post? */\n\t\t\t$row['moddabl"..., 8192) = 8192
23:33:17 read(4, "me'] AND ( $topicData['topic_open_time'] <= time() AND time() <= $topicData['topic_close_time'] ) )\n\t\t\t\t{\n\t\t\t\t\t$topicData['state'] = 'open';\n\t\t\t\t\t\n\t\t\t\t\t$this->DB->update( 'topics', array( 'state' => 'open' ), 'tid='.$topicData['tid'], true );\n\t\t\t\t}\n\t\t\t}\t\t\t\t\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// Current topic rating value\n\t\t//-----------------------------------------\n\t\t\n\t\t$topicData['_rate_show'] = 0;\n\t\t$topicData['_rate_int'] = 0;\n\t\t$topicData['_rate_img'] = '';\n\t\t\n\t\tif ( $topicData['state'] != 'open' )\n\t\t{\n\t\t\t$topicData['_allow_rate'] = 0;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$topicData['_allow_rate'] = $this->can_rate;\n\t\t}\n\t\t\n\t\tif ( $forumData['forum_allow_rating'] )\n\t\t{\n\t\t\t$rating = $this->DB->buildAndFetch( array( 'select' => '*', 'from' => 'topic_ratings', 'where' => \"rating_tid={$topicData['tid']} and rating_member_id=\".$this->memberData['member_id'] ) );\n\t\t\t\n\t\t\tif ( $rating['rating_value'] AND $this->memberData['g_topic_rate_setting'] != 2 )\n\t\t\t{\n\t\t\t\t$topicData['_allow_rat"..., 8192) = 5614
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/like", {st_dev=makedev(145, 106), st_ino=165967263, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:08:24, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/like/composite.php", {st_dev=makedev(145, 106), st_ino=165968199, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=120, st_size=58000, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:53, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/like/composite.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968199, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=120, st_size=58000, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:53, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "Example Usage:\n * @code\n * $app = 'gallery';\n * $area = 'images';\n * $like = classes_like::bootstrap( $app, $area );\n * print $like->isLiked( $relId );\n * $html\t= $like->render( 'summary', $relId );\n * print $html;\n * \n * RESULT: Matt, Joe, Bob and 5 others like this\n * @endcode\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n *\n * @class\t\tclasses_like_registry\n * @brief\t\tQuick registry class for common methods\n * @author\t\tMatt\n "..., 8192) = 8192
23:33:17 brk(0x2e25000) = 0x2e25000
23:33:17 read(4, "\ttrigger_error( \"App or area missing from classes_like\", E_USER_WARNING );\n\t\t}\n\t\t\n\t\t/* Pointless comment! */\n\t\tif( $area != 'default' )\n\t\t{\n\t\t\t$_file\t= IPSLib::getAppDir( $app ) . '/extensions/like/' . $area . '.php';\n\t\t\t$_class\t= 'like_' . $app . '_' . $area . '_composite';\n\t\t}\n\n\t\t$_key\t= md5( $app . $area );\n\t\t\n\t\t/* Get from cache if already cached */\n\t\tif( isset( self::$apps[ $_key ] ) )\n\t\t{\n\t\t\treturn self::$apps[ $_key ];\n\t\t}\n\t\t\n\t\t/* Otherwise create object and cache */\n\t\tif ( ! is_file( $_file ) )\n\t\t{\n\t\t\t$_file = IPSLib::getAppDir( $app ) . '/extensions/like/default.php';\n\t\t\t$_class = 'like_' . $app . '_composite';\n\t\t\t\n\t\t\tif ( ! is_file( $_file ) )\n\t\t\t{\n\t\t\t\tthrow new Exception( \"No like class available for $app - $area\" );\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\t$classToLoad = IPSLib::loadLibrary( $_file, $_class, $app );\n\t\t\n\t\tif ( class_exists( $classToLoad ) )\n\t\t{\n\t\t\tclasses_like_registry::setApp( $app );\n\t\t\tclasses_like_registry::setArea( $area );\n\t\t\t\n\t\t\tself::$apps[ $_key ] = new $classToLoad();\n\t\t\ts"..., 8192) = 8192
23:33:17 read(4, " forums only send one notification per visit for offline types) */\n\t\t\tif( $this->excludeNotification( $row ) )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t/* Can we actually send this one? */\n\t\t\tif ( $this->notificationCanSend( $row ) === false )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t/* Extra protection in case a ghost record is in the table for a member that doesn't exist\n\t\t\t\t@link\thttp://community.invisionpower.com/tracker/issue-36793-error-when-editing-some-marketplace-files */\n\t\t\tif( !$row['like_member_id'] )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\t\n\t\t\t$buildMessage = array();\n\t\t\t\n\t\t\tif ( is_array( $notificationOpts['build_message_array'] ) and count( $notificationOpts['build_message_array'] ) )\n\t\t\t{\n\t\t\t\tforeach( $notificationOpts['build_message_array'] as $k => $v )\n\t\t\t\t{\n\t\t\t\t\tif ( preg_match( '/\\-member:(.+?)\\-/', $v, $_matches ) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$v = str_replace( $_matches[0], $row[$_matches[1]], $v );\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$buildMessage[ $k ] = $v;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t$sentToIds[] = $row['like_member_id'];\n\t\t\t\n\t\t\t/* Add"..., 8192) = 8192
23:33:17 read(4, "\t\t\t\t/* Update sent timestamp */\n\t\t\t\t$this->DB->update( 'core_like', array( 'like_notify_sent' => IPS_UNIX_TIME_NOW ), 'like_id=\\'' . classes_like_registry::getKey( $row['like_rel_id'], $row['like_member_id'] ) . '\\'' );\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn true;\n\t}\n\t\n\t/**\n\t * Removes all likes based on member ID\n\t * \n\t * @param\tinteger\t\t$memberId\t\tMember ID\n\t * @return\t@e boolean\n\t */\n\tpublic function removeByMemberId( $memberId )\n\t{\n\t\tif ( empty( $memberId ) )\n\t\t{\n\t\t\ttrigger_error( \"Data missing in \" . __CLASS__ . '::' . __FUNCTION__, E_USER_WARNING );\n\t\t}\n\t\t\n\t\t$where = \"like_app='{$this->_app}' AND like_area='{$this->_area}' AND like_member_id=\" . intval($memberId);\n\t\t\n\t\t/* Get rel ids */\n\t\t$relIds\t= array();\n\t\t\n\t\t$this->DB->build( array( 'select' => 'like_rel_id', 'from' => 'core_like', 'where' => $where ) );\n\t\t$this->DB->execute();\n\t\t\n\t\twhile( $r = $this->DB->fetch() )\n\t\t{\n\t\t\t$relIds[]\t= $r['like_rel_id'];\n\t\t}\n\n\t\t/* Delete likes */\n\t\t$this->DB->delete( 'core_like', $where );\n\t\t\t\t\t\t\t\t\t\n\t\t/* Flag c"..., 8192) = 8192
23:33:17 read(4, "t->getTemplate( $this->skin() )->$_template( $data, $relId, $opts );\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t/* Fallback on default template */\n\t\t\t\t\treturn $this->registry->output->getTemplate('global_other')->likeSummary( $data, $relId, $opts );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse if ( $view == 'more' )\n\t\t{\n\t\t\t/* We need some counts here because we need them! */\n\t\t\t$cache\t\t\t\t = $this->likeCache->get( $relId, $memberId );\n\t\t\t$cache['totalCount'] = $cache['count'] + $cache['count_anon'];\n\t\t\t$cache['anonCount']\t = $cache['count_anon'];\n\t\t\t\n\t\t\t/* Fetch members who have wanted to like this item */\n\t\t\t$data\t\t= $this->getDataByRelationshipId( $relId );\n\t\t\t$_template\t= $this->templatePrefix() . 'likeMoreDialogue';\n\t\t\t\n\t\t\t/* Sort out some numbers if we're following anonymously */\n\t\t\tif ( $this->memberData['member_id'] && isset($data[ $this->memberData['member_id'] ]) && $data[ $this->memberData['member_id'] ]['like_is_anon'] )\n\t\t\t{\n\t\t\t\t$cache['count_anon']--;\n\t\t\t\t$cache['anonCount']--;\n\t\t\t}\n\t\t\t\n\t\t\t/* Got an override temp"..., 8192) = 8192
23:33:17 brk(0x2e65000) = 0x2e65000
23:33:17 read(4, "se\n\t\t{\n\t\t\t$oldestPossDate = $date - ( 86400 );\n\t\t}\n\t\t\n\t\tif ( $oldestPossDate )\n\t\t{\n\t\t\t$where .= ' AND ( CASE WHEN l.like_notify_sent > 0 THEN l.like_notify_sent ELSE l.like_added END ) < ' . intval( $oldestPossDate );\n\t\t}\n\t\t\n\t\t/* Fetch data */\t\n\t\t$this->DB->build( array( 'select' => 'l.*',\n\t\t\t\t\t \t\t\t 'from' => array( 'core_like' => 'l' ),\n\t\t\t\t\t\t\t\t 'where' => 'l.like_notify_do=1 AND l.like_app=\\'' . classes_like_registry::getApp() . '\\' AND l.like_area=\\'' . classes_like_registry::getArea() . '\\' AND l.like_visible=1 AND ( CASE WHEN l.like_notify_sent > 0 THEN l.like_notify_sent ELSE l.like_added END ) < ' . intval( $date ) . $where,\n\t\t\t\t\t\t\t\t 'order' => 'l.like_notify_sent ASC',\n\t\t\t\t\t\t\t\t 'limit' => array( 0, $sendMax ),\n\t\t\t\t\t\t\t\t 'add_join' => $joins ) );\n\t\t\n\t\t\t\t\t\t\n\t\t$o = $this->DB->execute();\n\t\t\n\t\twhile( $row = $this->DB->fetch( $o ) )\n\t\t{\n\t\t\t$row['like_member_id']\t\t\t= intval($row['like_member_id']);\n\t\t\t$mids[ $row['like_member_id'] ]\t= $row['like_member_id'];\n\t\t\t\n\t\t\t/* "..., 8192) = 8192
23:33:17 read(4, "place all likes on one item with another\n\t * Used when merging two items\n\t *\n\t * @param\tint\t\t$id1\t\t\tThe ID of the item being deleted\n\t * @param\tint\t\t$id2\t\t\tThe ID of the item being kept\n\t */\n\tpublic function merge( $id1, $id2 )\n\t{\n\t\t/* We need to tell the driver not to escape our md5 compilation statements */\n\t\t$_fieldEncapsulate = $this->DB->fieldEncapsulate;\n\t\t$this->DB->fieldEncapsulate = '';\n\t\t$this->DB->manual_addslashes = TRUE;\n\t\t\n\t\t/* Run the query - this looks a bit nuts, but basically we're setting any records for\n\t\tlikes on the old item to now be likes on the new, unelss the user has already liked\n\t\tthe new, in which case do nothing and we'll delete the left-overs in a minute */\n\t\t$this->DB->update(\n\t\t\tarray( 'core_like' => 'a' ),\n\t\t\t$this->DB->compileUpdateString( array(\n\t\t\t\t'a.like_id'\t\t\t=> classes_like_registry::getKeyForSql( $id2, 'a.like_member_id' ),\n\t\t\t\t'a.like_lookup_id'\t=> classes_like_registry::getKeyForSql( $id2 ),\n\t\t\t\t'a.like_lookup_area'=> classes_like_registry::"..., 8192) = 8192
23:33:17 read(4, " $relId as $id )\n\t\t\t\t{\n\t\t\t\t\t$keys[] = \"'\" . classes_like_registry::getKey( $id ) . \"'\";\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( ! count($keys) )\n\t\t\t\t{\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$where = \" IN (\" . implode( \",\", $keys ) . \")\";\n\t\t\t}\n\t\t\t\n\t\t\t$this->DB->delete( 'core_like_cache', 'like_cache_id ' . $where );\n\t\t}\n\t}\n\t\n\t/**\n\t * Flags a cache as stale. We choose to delete, but the cache class should make the call\n\t * not the application\n\t * \n\t * @param\tmixed\t\t$relId\t\tRelationship ID or array of IDs\n\t * @param\tinteger\t\t$memberId \tMember ID\n\t * @return\t@e void\n\t */\n\tpublic function isNowStale( $relId, $memberId = null )\n\t{\n\t\treturn $this->delete( $relId, $memberId );\n\t}\n}", 8192) = 656
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/like/topics.php", {st_dev=makedev(145, 106), st_ino=165967046, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=11546, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:01:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications", {st_dev=makedev(145, 106), st_ino=165963179, st_mode=S_IFDIR|0755, st_nlink=5, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:17, st_mtime=2011/12/29-10:06:29, st_ctime=2013/06/26-17:28:17}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums", {st_dev=makedev(145, 106), st_ino=165963190, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2012/04/12-09:56:08, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions", {st_dev=makedev(145, 106), st_ino=165965866, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/18-15:37:20, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/like", {st_dev=makedev(145, 106), st_ino=165965879, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:18, st_mtime=2011/12/29-10:09:40, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/like/topics.php", {st_dev=makedev(145, 106), st_ino=165967046, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=11546, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:01:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/applications/forums/extensions/like/topics.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165967046, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=11546, st_atime=2013/06/26-17:28:18, st_mtime=2013/04/19-11:01:25, st_ctime=2013/06/26-17:28:18}) = 0
23:33:17 read(4, "Incorrect accessYou cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n *\n * @class\t\tlike_forums_topics_composite\n * @brief\t\tTopics like class (forums application)\n */\nclass like_forums_topics_composite extends classes_like_composite\n{\n\t/**\n\t * Registry Object Shortcuts\n\t *\n\t * @var\t\t$registry\n\t * @var\t\t$DB\n\t * @var\t\t$settings\n\t * @var\t\t$request\n\t * @var\t\t$lang\n\t * @var\t\t$member\n\t * @var\t\t$memberData\n\t * @var\t\t$cache\n\t * @var\t\t$caches\n\t */\n\tprotected $registry;\n\tprotected $DB;\n\tprotected $settings;\n\tpr"..., 8192) = 8192
23:33:17 read(4, " for fetching data\n\t * \n\t * @param\tstring\t\t$field\t\tDB field name (defaults to 'l.like_rel_id')\n\t * @return\t@e array\n\t */\n\tpublic function getDataJoins( $field='l.like_rel_id' )\n\t{\n\t\treturn array( array( 'select' => 't.*, t.last_post as topic_last_post', 'from' => array( 'topics' => 't' ), 'where' => 't.tid=' . $field, 'type' => 'left' ) );\n\t}\n\t\n\t/**\n\t * Returns the type of item\n\t * \n\t * @param\tmixed\t\t$relId\t\t\tRelationship ID or array of IDs\n\t * @param\tarray\t\t$selectType\t\tArray of meta to select (title, url, type, parentTitle, parentUrl, parentType) null fetches all\n\t * @return\t@e array\tMeta data\n\t */\n\tpublic function getMeta( $relId, $selectType=null )\n\t{\n\t\t$return = array();\n\t\t$isNumeric = false;\n\t\t\n\t\tif ( is_numeric( $relId ) )\n\t\t{\n\t\t\t$relId = array( intval($relId) );\n\t\t\t$isNumeric = true;\n\t\t}\n\n\t\t$this->DB->build( array( 'select' => 't.*',\n\t\t\t\t\t\t\t\t 'from' => array( 'topics' => 't' ),\n\t\t\t\t\t\t\t\t 'where' => 't.tid IN (' . implode( ',', $relId ) . ')',\n\t\t\t\t\t\t\t\t 'add_join' => arr"..., 8192) = 3354
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_forums.php", {st_dev=makedev(145, 106), st_ino=166068495, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8487, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache", {st_dev=makedev(145, 106), st_ino=166068239, st_mode=S_IFDIR|0777, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2011/12/29-10:12:47, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1", {st_dev=makedev(145, 106), st_ino=166068243, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_forums.php", {st_dev=makedev(145, 106), st_ino=166068495, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8487, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_forums.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068495, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=24, st_size=8487, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 read(4, " \"%s user(s) are browsing this forum\",\n'announce_row' => \"Announcement\",\n'ascending_order' => \"Ascending (A-Z)\",\n'attach_page_title' => \"Attachments\",\n'attach_post' => \"Post #\",\n'attach_post_date' => \"Posted on\",\n'attach_size' => \"Size\",\n'attach_title' => \"Attachment\",\n'back_to_forum' => \"Return to the forum\",\n'cat_subforums' => \"Sub-forums within the category\",\n'cpt_approve' => \"Approve\",\n'cpt_approve_f' => \"Approve\",\n'cpt_close_f' => \"Lock\",\n'cpt_delete' => \"Delete\",\n'cpt_delete_f' => \"Delete\",\n'cpt_hide' => \"Hide\",\n'cpt_hide_f' => \"Hide\",\n'cpt_merge' => \"Merge\",\n'cpt_merge_f' => \"Merge\",\n'cpt_move' => \"Move"..., 8192) = 8192
23:33:17 read(4, "ent\",\n'view_deleted_posts' => \"View deleted posts\",\n'view_forum_rules' => \"View forum rules\",\n'view_post' => \"View post\",\n'view_reported_posts' => \"View reported posts\",\n'view_uapproved_posts' => \"View unapproved posts\",\n'views' => \"views\",\n'you_posted_here' => \"You posted in this topic\",\n ); \n", 8192) = 295
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_topic.php", {st_dev=makedev(145, 106), st_ino=166068501, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=32, st_size=12530, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache", {st_dev=makedev(145, 106), st_ino=166068239, st_mode=S_IFDIR|0777, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2011/12/29-10:12:47, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1", {st_dev=makedev(145, 106), st_ino=166068243, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_topic.php", {st_dev=makedev(145, 106), st_ino=166068501, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=32, st_size=12530, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_topic.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068501, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=32, st_size=12530, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 read(4, " \"%s Members:\",\n'active_users_title' => \"%s user(s) are reading this topic\",\n'add_a_reply' => \"Add a reply\",\n'ajax_no_openclose' => \"You do not have permission to open/close this topic\",\n'ajax_no_t_name' => \"Invalid topic name\",\n'ajax_no_t_permission' => \"You do not have permission to edit this topic\",\n'ajax_no_topic_id' => \"No topic id passed\",\n'ajax_reply_noperm' => \"You do not have permission to reply to this topic.\",\n'ajax_topic_not_found' => \"Could not locate the topic\",\n'announce_both' => \"Announcement started %s and ends %s\",\n'announce_end' => \"Announcement ends %s\",\n'announce_start' => \"Announcement s"..., 8192) = 8192
23:33:17 read(4, "iewing_all' => \"Showing all posts\",\n'rep_given' => \"Reputation given\",\n'rep_view_anyway' => \"View it anyway?\",\n'report' => \"Report\",\n'reputation' => \"Reputation\",\n'reputation_down' => \"Vote this post down\",\n'reputation_up' => \"Vote this post up\",\n'return_to' => \"Return to\",\n'sdpost_remove' => \"Remove\",\n'sdpost_restore' => \"Unhide\",\n'search_topic' => \"Search Topic\",\n'search_topic_go' => \"Go\",\n'share' => \"Share\",\n'share_post' => \"Share post #%s\",\n'show_forum_rules' => \"View forum rules\",\n'show_moderation_tools' => \"Show moderation tools\",\n'SPLIT_TOPIC' => \"Split\",\n'start_new_topic' => \"Start New Topic\",\n'started_by' => \"Started by\",\n'status_ppd_posts' => \"You can make %s more posts until %s. This restriction is in place until you have %s more approved posts\",\n'status_ppd_posts_joined' => \"You can make %s more posts until %s. This restriction is in place until %s\",\n'status_ppd_posts_joined_no_time' => \"You can make %s more posts today. This restriction is in place until %s\",\n'status_ppd_p"..., 8192) = 4338
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_boards.php", {st_dev=makedev(145, 106), st_ino=166068493, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=4708, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache", {st_dev=makedev(145, 106), st_ino=166068239, st_mode=S_IFDIR|0777, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2011/12/29-10:12:47, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1", {st_dev=makedev(145, 106), st_ino=166068243, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_boards.php", {st_dev=makedev(145, 106), st_ino=166068493, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=4708, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/lang_cache/1/forums_public_boards.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068493, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=16, st_size=4708, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 read(4, " \"(in the past %s minutes)\",\n'active_users_text' => \"active user(s)\",\n'anon_users' => \"anonymous users\",\n'bindex_userphoto_alt' => \"%s - last post by %s\",\n'birthdays_title' => \"Today's birthdays\",\n'board_index_title' => \"Community Index\",\n'board_stats' => \"Community Statistics\",\n'by' => \"By\",\n'calender_f_title' => \"Forthcoming Calendar Events within the next %s days\",\n'cat_name' => \"Forum\",\n'ex_col' => \"Expand/Collapse\",\n'f_none' => \"No posts to view\",\n'f_protected' => \"Protected Forum\",\n'f_queued' => \"%s unapproved topic(s) and %s unapproved post(s)\",\n'f_queued_posts' => \"%s unapproved post(s)\",\n'f_queued_top"..., 8192) = 4708
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_editors.php", {st_dev=makedev(145, 106), st_ino=166068473, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3592, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache", {st_dev=makedev(145, 106), st_ino=166068239, st_mode=S_IFDIR|0777, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2011/12/29-10:12:47, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1", {st_dev=makedev(145, 106), st_ino=166068243, st_mode=S_IFDIR|0777, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_editors.php", {st_dev=makedev(145, 106), st_ino=166068473, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3592, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/lang_cache/1/core_public_editors.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068473, st_mode=S_IFREG|0777, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3592, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:13:30, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 read(4, " \"Added to editor\",\n'box_font' => \"Fonts\",\n'box_font_desc' => \"Choose a font to use\",\n'box_other' => \"Other styles\",\n'box_other_desc' => \"Other available styles\",\n'box_size' => \"Sizes\",\n'box_size_desc' => \"Choose a font size\",\n'editor_clear_data' => \"Clear my saved content\",\n'editor_context_menu' => \"Editor context menu\",\n'editor_context_menu_crc' => \"CONTROL + Right click\",\n'editor_context_menu_rc' => \"Right click\",\n'editor_html_message' => \"HTML mode is enabled.\",\n'editor_ok' => \"Ok\",\n'editor_options' => \"Editor Options\",\n'editor_paste' => \"Paste as plain text by default\",\n'editor_unloaded_atm' => \"Tip: click in"..., 8192) = 3592
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/etc/localtime", {st_dev=makedev(145, 106), st_ino=147730171, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3543, st_atime=2013/06/26-17:24:28, st_mtime=2011/01/07-19:34:09, st_ctime=2013/06/26-17:24:28}) = 0
23:33:17 stat("/etc/localtime", {st_dev=makedev(145, 106), st_ino=147730171, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3543, st_atime=2013/06/26-17:24:28, st_mtime=2011/01/07-19:34:09, st_ctime=2013/06/26-17:24:28}) = 0
23:33:17 stat("/etc/localtime", {st_dev=makedev(145, 106), st_ino=147730171, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3543, st_atime=2013/06/26-17:24:28, st_mtime=2011/01/07-19:34:09, st_ctime=2013/06/26-17:24:28}) = 0
23:33:17 stat("/etc/localtime", {st_dev=makedev(145, 106), st_ino=147730171, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3543, st_atime=2013/06/26-17:24:28, st_mtime=2011/01/07-19:34:09, st_ctime=2013/06/26-17:24:28}) = 0
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "J\3\0\0\3SELECT p.*,m.member_id as mid,m.name,m.member_group_id,m.email,m.joined,m.posts, m.last_visit, m.last_activity,m.login_anonymous,m.title as member_title, m.warn_level, m.warn_lastwarn, m.members_display_name, m.members_seo_name, m.member_banned, m.has_gallery, m.has_blog, m.members_bitoptions,m.mgroup_others,pp.*,w.wl_id,pc.*,cca.* FROM ( SELECT pid, post_date FROM posts WHERE topic_id=231 AND queued=0 ORDER BY pid asc LIMIT 0,25 ) z LEFT JOIN posts p ON ( p.pid=z.pid ) \n LEFT JOIN members m ON ( m.member_id=p.author_id ) \n LEFT JOIN profile_portal pp ON ( m.member_id=pp.pp_member_id ) \n LEFT JOIN members_warn_logs w ON ( w.wl_content_app='forums' and w.wl_content_id1=p.pid ) \n LEFT JOIN pfields_content pc ON ( pc.member_id=p.author_id ) \n LEFT JOIN content_cache_posts cca ON ( cca.cache_content_id=p.pid ) ORDER BY z.pid asc", 846) = 846
23:33:17 read(3, "\1\0\0\1W.\0\0\2\3def\fsimsasyl_ipb\1p\5posts\3pid\3pid\f?\0\n\0\0\0\3\2B\0\0\0>\0\0\3\3def\fsimsasyl_ipb\1p\5posts\vappend_edit\vappend_edit\f?\0\1\0\0\0\1\0\0\0\0\0:\0\0\4\3def\fsimsasyl_ipb\1p\5posts\tedit_time\tedit_time\f?\0\n\0\0\0\3\0\0\0\0\0:\0\0\5\3def\fsimsasyl_ipb\1p\5posts\tauthor_id\tauthor_id\f?\0\10\0\0\0\t\10@\0\0\0>\0\0\6\3def\fsimsasyl_ipb\1p\5posts\vauthor_name\vauthor_name\f\10\0\377\0\0\0\375\0\0\0\0\0006\0\0\7\3def\fsimsasyl_ipb\1p\5posts\7use_sig\7use_sig\f?\0\1\0\0\0\1\0\0\0\0\0006\0\0\10\3def\fsimsasyl_ipb\1p\5posts\7use_emo\7use_emo\f?\0\1\0\0\0\1\0\0\0\0\0<\0\0\t\3def\fsimsasyl_ipb\1p\5posts\nip_address\nip_address\f\10\0.\0\0\0\375\10@\0\0\0:\0\0\n\3def\fsimsasyl_ipb\1p\5posts\tpost_date\tpost_date\f?\0\n\0\0\0\3\10@\0\0\0006\0\0\v\3def\fsimsasyl_ipb\1p\5posts\7icon_id\7icon_id\f?\0\3\0\0\0\2\0\0\0\0\0000\0\0\f\3def\fsimsasyl_ipb\1p\5posts\4post\4post\f\10\0\377\377\377\0\374\30@\0\0\0004\0\0\r\3def\fsimsasyl_ipb\1p\5posts\6queued\6queued\f?\0\1\0\0\0\1\10@\0\0\0008\0\0\16\3def\fsimsasyl_ipb\1p\5posts\10topic_id\10topic_id\f?\0\n\0\0\0\3\10@\0\0\0<\0\0\17\3def\fsimsasyl_ipb\1p\5posts\npost_title\npost_title\f\10\0\377\0\0\0\375\0\0\0\0\0:\0\0\20\3def\fsimsasyl_ipb\1p\5posts\tnew_topic\tnew_topic\f?\0\1\0\0\0\1\0\0\0\0\0:\0\0\21\3def\fsimsasyl_ipb\1p\5posts\tedit_name\tedit_name\f\10\0\377\0\0\0\375\0\0\0\0\0008\0\0\22\3def\fsimsasyl_ipb\1p\5posts\10pos"..., 16384) = 12027
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/customfields", {st_dev=makedev(145, 106), st_ino=165967258, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:08:20, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/customfields/profileFields.php", {st_dev=makedev(145, 106), st_ino=165968188, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=17413, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/customfields/profileFields.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968188, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=17413, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:52, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.2.0\n * Custom Profile Fields\n * Last Updated: $Date: 2012-09-21 10:15:19 -0400 (Fri, 21 Sep 2012) $\n * \n *\n * @author \t\t$Author: mark $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 11360 $\n *\n */\n \nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass customProfileFields\n{\n\t/**\n\t * Member ID\n\t *\n\t * @var\t\tint\n\t */\n\tpublic $member_id\t\t= 0;\n\t\n\t/**\n\t * Member ID\n\t *\n\t * @var\t\tint\n\t */\n\tpublic $mem_data_id\t\t= 0;\n\t\n\t/**\n\t * Array of incoming data\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $in_fields\t\t= array();\n\t\n\t/**\n\t * Final/parsed data\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $out_fields\t\t= array();\n\t\n\t/**\n\t * Chosen output data\n\t "..., 8192) = 8192
23:33:17 brk(0x2ea5000) = 0x2ea5000
23:33:17 read(4, "rse the fields */\n\t\t$save_fields = $this->cfields_obj->getFieldsToSave( $field_data );\n\t\t\n\t\t/* Save the raw error data */\n\t\t$this->error_fields = $save_fields['errors'];\n\n\t\t/* Reformat the errors into nicer output */\n\t\tif( is_array( $this->error_fields ) && count( $this->error_fields ) )\n\t\t{\n\t\t\t/* Make sure error message texts are loaded */\n\t\t\tipsRegistry::getClass( 'class_localization' )->loadLanguageFile( array( 'public_profile' ), 'members' );\n\t\t\t\n\t\t\tforeach( $this->error_fields as $id => $err )\n\t\t\t{\n\t\t\t\t/* Can we view this field? */\n\t\t\t\tif( ! $this->_checkFieldAuth( $this->cfields[ str_replace( 'field_', '', $id ) ], $mode ) )\n\t\t\t\t{\n\t\t\t\t\tcontinue;\t\t\n\t\t\t\t}\n\n\t\t\t\t$_error_messages = array();\n\t\t\t\t\n\t\t\t\tforeach( $err as $e )\n\t\t\t\t{\n\t\t\t\t\t$_error_messages[] = ipsRegistry::getClass( 'class_localization' )->words[ 'profile_field_error__' . $e ];\n\t\t\t\t}\n\n\t\t\t\t$this->error_messages[$id] = $this->cache_data[ str_replace( 'field_', '', $id ) ]['pf_title'] . ': ' . implode( ', ', $_error_messages );\n"..., 8192) = 8192
23:33:17 read(4, "!= 'register' AND $mode != 'mlist' AND ! $this->admin AND !$this->supmod )\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Registering */\n\t\tif ( $mode == 'register' AND ! $field->raw_data['pf_show_on_reg'] AND ! IN_ACP ) // Bug Fix #21163\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t/* Private FIeld */\n\t\tif( $field->raw_data['pf_member_hide'] )\n\t\t{\n\t\t\t$pass = 0;\n\t\t\t\n\t\t\tif ( $this->admin )\n\t\t\t{\n\t\t\t\t$pass = 1;\n\t\t\t}\n\t\t\telse if ( $this->supmod )\n\t\t\t{\n\t\t\t\t$pass = 1;\n\t\t\t}\n\t\t\telse if ( ($this->member_id and ( $this->member_id == $this->mem_data_id )) OR ($this->type == 'edit' AND $mode == 'register') )\n\t\t\t{\n\t\t\t\t$pass = 1;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$pass = 0;\n\t\t\t}\n\t\t\t\n\t\t\tif ( ! $pass )\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n\t\n\t/**\n\t * Returns the id for the specified key\n\t *\n\t * @param\tstring\t$key\tField key\n\t * @return\tinteger\n\t */\n\tpublic function getFieldIDByKey( $key )\n\t{\n\t\t$field = 0;\n\t\t\n\t\tforeach( $this->cache_data as $id => $_c )\n\t\t{\n\t\t\tif( $_c['pf_key'] == $key )\n\t\t\t{\n\t\t\t\t$field = $id;\n\t\t\t\tbreak;\n\t\t\t}"..., 8192) = 1029
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/ips_kernel", {st_dev=makedev(145, 106), st_ino=165963174, st_mode=S_IFDIR|0755, st_nlink=14, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:24, st_mtime=2012/04/12-09:58:40, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/ips_kernel/classCustomFields.php", {st_dev=makedev(145, 106), st_ino=165968412, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=19290, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-11:02:39, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/ips_kernel/classCustomFields.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968412, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=40, st_size=19290, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/19-11:02:39, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Custom fields library\n * Last Updated: $Date: 2013-01-29 14:15:42 -0500 (Tue, 29 Jan 2013) $\n * \n *\n * @author \t\t$Author: AndyMillne $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @subpackage\tKernel\n * @link\t\thttp://www.invisionpower.com\n * @since\t\tThursday 8th May 2008 10:31\n * @version\t\t$Revision: 11913 $\n *\n */\n \nabstract class customFieldPlugin\n{\n\t/**\n\t * Custom field name\n\t *\n\t * @var\t\tstring\n\t */\n\tpublic $name = '';\n\t\n\t/**\n\t * Custom field title\n\t *\n\t * @var\t\tstring\n\t */\n\tpublic $title = '';\n\t\n\t/**\n\t * Custom field id\n\t *\n\t * @var\t\tinteger\n\t */\n\tpublic $id = 0;\n\t\n\t/**\n\t * Custom field attributes\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $attributes = array();\n\t\n\t/**\n\t * Custom field value\n\t *\n\t * @var\t\tarray\n\t */\n\tpublic $raw_data = array();\n\t\n\t/**\n\t * Custom field mode\n\t *\n\t * @var\t\t"..., 8192) = 8192
23:33:17 read(4, "lue'];\n\t\t$this->name = 'field_' . $field['id'];\n\t\t$this->id = $field['id'];\n\t\t$this->title = isset($field['title']) ? $field['title'] : '';\n\t\t$this->attributes = isset($field['attributes']) ? $field['attributes'] : '';\n\t\t$this->raw_data = $field;\n\t\t$this->mode = $mode;\n\t\t\n\t\tif( $mode == 'edit' )\n\t\t{\n\t\t\t$this->edit();\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->view();\n\t\t}\n\t}\n\t\n\t/**\n\t * Edit a field\n\t *\n\t * @return\t@e void\n\t */\n\tpublic function edit()\n\t{\n\t\t/* Attributes */\n\t\t$_attributes = $this->_compileAttributes();\n\n\t\t$carray = explode( '|', $this->data );\n\n\t\tforeach( $carray as $entry )\n\t\t{\n\t\t\t$value = explode( '=', $entry );\n\t\t\t\n\t\t\t$ov = trim( $value[0] );\n\t\t\t$td = trim( $value[1] );\n\t\t\t\n\t\t\t/* Make Safe */\n\t\t\t$this->value = $this->makeSafeForForm( $this->value );\t\t\t\n\t\t\t\n\t\t\tif( $this->value == $ov and $this->value != \"\" )\n\t\t\t{\n\t\t\t\t$this->parsed .= \"field_list[$field['id']]['value'] = $submit_value;\n\t\t\t$save_data[ 'field_' . $field['id'] ] = $submit_value;\n\t\t}\n\t\t\n\t\treturn"..., 8192) = 2906
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text", {st_dev=makedev(145, 106), st_ino=165967277, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:38:57, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser.php", {st_dev=makedev(145, 106), st_ino=165968286, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=136, st_size=67770, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968286, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=136, st_size=67770, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:00:58, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * HTML parsing core\n * Last Updated: $Date: 2012-06-08 09:28:02 +0100 (Fri, 08 Jun 2012) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 10894 $\n *\n * \n * $html = $editor->process( $_POST['Post'] );\n * \n * require( IPS_ROOT_PATH . 'sources/classes/text/parser.php' );\n * \n * $parser = new classes_text_parser();\n * print $parser->HtmlToBBCode( 'Moo!' );\n * \n * Prints:\n * [b]Moo[/b]\n *
\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n * There are three modes\n * html: \t\tMoo
"..., 8192) = 8192
23:33:17 read(4, "\t\t$style = trim( $style );\n\t\t\t\t\t$tmp = explode( ':', $style );\n\t\t\t\t\t$rule = trim( $tmp[0] );\n\t\t\t\t\t\n\t\t\t\t\tif ( in_array( $rule, $workingProps) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$styleClean[] = $style;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( count( $styleClean ) )\n\t\t\t\t{\n\t\t\t\t\t$html = str_replace( $all, '<' . $tag . ' ' . $other . ' style=' . $open . implode( ';', $styleClean ) . $close, $html );\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$html = str_replace( $all, '<' . $tag . $other, $html );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t$tagArray = array();\n\t\t\n\t\t/* Now the rest of the tags */\n\t\tforeach( $disabledTags as $i => $tag )\n\t\t{\n\t\t\tif ( isset( $disabledTagMap[ $tag ] ) )\n\t\t\t{\n\t\t\t\t$tagArray = array_merge( $tagArray, $disabledTagMap[ $tag ] );\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$tagArray[] = $tag;\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* Make sure longest tags go first */\n\t\trsort( $tagArray );\n\t\t\n\t\tforeach( $tagArray as $tag )\n\t\t{\n\t\t\tif ( $tag == 'font' OR $tag == 'background' OR $tag == 'color' OR $tag == 'size' )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t/* else.. */\n\t\t\tpreg_match"..., 8192) = 8192
23:33:17 brk(0x2ee5000) = 0x2ee5000
23:33:17 read(4, "enTag = substr( $text, $o, $data['open'][ $id ] - $o );\n\t\t\t\t$closeTag = substr( $text, $data['close'][ $id ], 8 );\n\n\t\t\t\t$sliceContents = substr( $text, $data['open'][ $id ], $data['close'][ $id ] - $o );\n\n\t\t\t\t$slice = str_replace( $sliceContents, $this->_stripParagraphWrap( $sliceContents ), $slice );\n\n\t\t\t\t$options = $this->getTagAttributes( $openTag );\n\t\t\t\t\n\t\t\t\t# Need to bump up lengths of opening and closing\n\t\t\t\t$_origLength = strlen( $slice );\n\t\t\n\t\t\t\t$ops = array();\n\t\t\n\t\t\t\t# Allow collapse\n\t\t\t\t$options['collapsed'] = ( isset( $options['collapse'] ) ) ? $options['collapse'] : $options['collapsed'];\n\t\t\t\t\n\t\t\t\tif ( $options['name'] )\n\t\t\t\t{\n\t\t\t\t\t$ops[] = 'data-author=\"' . $options['name'] . '\"';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( $options['post'] )\n\t\t\t\t{\n\t\t\t\t\t$ops[] = 'data-cid=\"' . $options['post'] . '\"';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( $options['timestamp'] )\n\t\t\t\t{\n\t\t\t\t\t$ops[] = 'data-time=\"' . $options['timestamp'] . '\"';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( $options['date'] )\n\t\t\t\t{\n\t\t\t\t\t$ops[] = 'data-date=\"' . $options["..., 8192) = 8192
23:33:17 read(4, "atch_all( '#]+?)?>#i', $text, $matches );\n\t\n\t\tforeach( $matches[1] as $id => $match )\n\t\t{\n\t\t\tif ( stristr( $match, 'href' ) )\n\t\t\t{\n\t\t\t\t$count++;\n\t\t\t}\n\t\t}\n\t\n\t\treturn $count;\n\t}\n\t\n\t/**\n\t * Get the number of images\n\t * @param string $text\n\t * @param\tboolean\t$parseTest\n\t */\n\tpublic function getEmoticonCount( $text )\n\t{\n\t\t$count = 0;\n\t\t$text = str_replace( \"<#EMO_DIR#>\", \"\", $text );\n\t\t\n\t\tpreg_match_all( '#
]+?)?>#i', $text, $matches );\n\t\n\t\tforeach( $matches[1] as $id => $match )\n\t\t{\n\t\t\tif ( stristr( $match, 'class=\"bbc_emoticon\"' ) || stristr( $match, \"class='bbc_emoticon'\" ) )\n\t\t\t{\n\t\t\t\t$count++;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $count;\n\t}\n\t\n\t/**\n\t * Is an allowed URL type\n\t * @param string $url\n\t * @return boolean\n\t */\n\tpublic function isAllowedImgUrl( $url )\n\t{\n\t\tif ( $this->settings['img_ext'] )\n\t\t{\n\t\t\t$path\t= @parse_url( html_entity_decode( trim( $url ) ), PHP_URL_PATH );\n\t\t\t$pieces\t= explode( '.', $path );\n\t\t\t$ext\t= array_pop( $pieces );\n\t\t\t$ext\t= strtolower( $ext );\n\n\t\t\tif ( ! in_ar"..., 8192) = 8192
23:33:17 read(4, "----------------------------------------\n\t\t\t\t\t// These are chars that can't surround the emo\n\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\n\t\t\t\t\t$invalidWrappers = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'\\\"/\";\n\t\t\t\t\t\n\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t// Have any more chars to look at?\n\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\n\t\t\t\t\twhile ( ( $position = stripos( $txt, $_emoCode, $emoPosition ) ) !== false )\n\t\t\t\t\t{\n\t\t\t\t\t\t$lastOpenTagPosition = strrpos( substr( $txt, 0, $position ), '[' );\n\t\t\t\t\t\t$lastCloseTagPosition = strrpos( substr( $txt, 0, $position ), ']' );\n\t\t\t\t\t\t\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t// Are we at the start of the string, or\n\t\t\t\t\t\t// is the preceeding char not an invalid wrapper?\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\n\t\t\t\t\t\tif ( ( $position === 0 or stripos( $invalidWrappers, substr( $txt, $position - 1, 1 ) ) === false )\n\t\n\t\t\t\t\t\t//------------------------------"..., 8192) = 8192
23:33:17 brk(0x2f25000) = 0x2f25000
23:33:17 read(4, "([^\\]]+?)\\]#is', \" \", $txt );\n\t\t$txt = preg_replace( '#\\[/([^\\]]+?)\\]#is', \" \", $txt );\n\t\t$txt = preg_replace( '#\\[attachment=(.+?)\\]#is', \" \", $txt );\n\t\t$txt = str_replace( '[*]', '', $txt );\n\t\t\n\t\treturn $txt;\n\t}\n\t\n\t/**\n\t * Remove raw smilies\n\t *\n\t * @access public\n\t * @param\n\t * \tstring\t\tRaw text\n\t * @return string with smiley codes removed\n\t */\n\tpublic function stripEmoticons( $txt )\n\t{\n\t\t$codes_seen = array();\n\t\t\n\t\tif ( count( $this->cache->getCache( 'emoticons' ) ) > 0 )\n\t\t{\n\t\t\tforeach( $this->cache->getCache( 'emoticons' ) as $row )\n\t\t\t{\n\t\t\t\tif ( is_array( $this->registry->output->skin ) and $this->registry->output->skin['set_emo_dir'] and $row['emo_set'] != $this->registry->output->skin['set_emo_dir'] )\n\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$code = $row['typed'];\n\t\t\t\t\n\t\t\t\tif ( in_array( $code, $codes_seen ) )\n\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$codes_seen[] = $code;\n\t\t\t\t\n\t\t\t\t// -----------------------------------------\n\t\t\t\t// Now, check for the html safe versions\n\t\t\t\t// --"..., 8192) = 8192
23:33:17 read(4, "substr_count( strtolower( $_content ), strtolower( $open_tag ) );\n\n\t\t\t\t\t\t\t\t$_nPos = $_closePos + strlen( $close_tag );\n\t\n\t\t\t\t\t\t\t\tif ( $_nPos >= strlen( $txt ) )\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$count == 0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$count\t= 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\t\n\t\t\t$iteration++;\n\t\t\t\t\n\t\t\t$curPos = $closingTagPos ? $closingTagPos : $curPos + 1;\n\t\n\t\t\tif ( $curPos > strlen($txt) )\n\t\t\t{\n\t\t\t\t$curPos\t= 0;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\n\t\treturn $map;\n\t}\n\t\n\t/**\n\t * Build a quote tag\n\t * @param string $content\n\t * @param string $author\n\t * @param string $date\n\t * @param int $pid\n\t */\n\tpublic function buildQuoteTag( $content, $author='', $date='', $collapsed=0, $pid=0 )\n\t{\t\n\t\t$ops = array();\n\t\t\n\t\tif ( $author )\n\t\t{\n\t\t\t$ops[] = 'data-author=\"' . $author . '\"';\n\t\t}\n\t\t\n\t\tif ( $pid )\n\t\t{\n\t\t\t$ops[] = 'data-cid=\"' . $pid . '\"';\n\t\t}\n\t\t\n\t\tif ( $date )\n\t\t{\n\t\t\tif ( strlen( $date ) == 10 && intval( $date ) == $date )\n\t\t\t{\n\t\t\t\t$ops[] = 'data-time=\"' . $date . '\"';\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t"..., 8192) = 8192
23:33:17 read(4, "hort']\t= preg_quote( $r['a_short'], \"/\" );\n\n\t\t\t\t$txt\t\t\t= preg_replace_callback( '/(^|\\b|\\W)(' . $r['a_short'] . ')(\\b|\\W|$)/' . $caseModifier, array( $this, '_replaceAcronym' ), $txt );\n\t\t\t}\n\t\t}\n\n\t\t/* replace urls */\n\t\tif ( count( $urls ) )\n\t\t{\n\t\t\tforeach( $urls as $k => $v )\n\t\t\t{\n\t\t\t\t$txt = str_replace( \"\", $v, $txt );\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* replace tags */\n\t\tif ( count( $tags ) )\n\t\t{\n\t\t\tforeach( $tags as $k => $v )\n\t\t\t{\n\t\t\t\t$txt = str_replace( \"\", $v, $txt );\n\t\t\t}\n\t\t}\n\t\t\n\t\t$txt = str_replace( '-#-#-#EMO_DIR#-#-#-', '<#EMO_DIR#>', $txt );\n\t\t\n\t\treturn $txt ? $txt : $temp_text;\n\t}\n\t\n\t/**\n\t * Callback function to replace a found acronym\n\t *\n\t * @param\tarray\t\t$matches\t\tArray of matches\n\t * @return\t@e string\tReplaced text\n\t */\n\tprivate function _replaceAcronym( $matches=array() )\n\t{\n\t\treturn $this->_currentAcronym['a_semantic'] ? \"{$matches[1]}{$matches[2]}{$matches["..., 8192) = 8192
23:33:17 read(4, "/* Sort by key length so that IMGTEST parses before IMG, for example */\n\t\tuksort( $noParse, create_function('$a,$b', 'return strlen($a) < strlen($b);') );\n\t\t\n\t\tforeach( $noParse as $tag )\n\t\t{\n\t\t\t/* Fetch paired opening and closing tags */\n\t\t\t$data = $this->getTagPositions( $content, $tag, array( '[', ']') );\n\n\t\t\tif ( is_array( $data ) && count( $data ) )\n\t\t\t{\n\t\t\t\tforeach( $data['open'] as $id => $val )\n\t\t\t\t{\n\t\t\t\t\t$o = $data['open'][ $id ];\n\t\t\t\t\t$c = $data['close'][ $id ] - $o;\n\t\t\t\t\t\n\t\t\t\t\t/* Prevent unclosed tags from breaking this */\n\t\t\t\t\tif ( $o < 1 || $c < 1 )\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$slice = substr( $content, $o, $c );\n\t\n\t\t\t\t\t$_origLen = strlen( $slice );\n\t\t\t\t\t\t\n\t\t\t\t\tif ( $passLevel == 2 )\n\t\t\t\t\t{\t\t\t\t\t\n\t\t\t\t\t\t//* No linkify */\n\t\t\t\t\t\tpreg_match_all( '#]+?)href=[\"\\']([^\"\\']+?)[\"\\']([^>]+?)?>(.+?)(|$)#is', $slice, $urlMatches );\n\t\t\t\t\n\t\t\t\t\t\t/* Finish up URLs and such */\n\t\t\t\t\t\tfor( $i = 0 ; $i < count( $urlMatches[0] ) ; $i++ )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$raw = $urlMatche"..., 8192) = 2234
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text", {st_dev=makedev(145, 106), st_ino=165967277, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:38:57, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser", {st_dev=makedev(145, 106), st_ino=165967445, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:39:38, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode.php", {st_dev=makedev(145, 106), st_ino=165968287, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=88, st_size=43657, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968287, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=88, st_size=43657, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * BBCode parsing core - common methods\n * Last Updated: $Date: 2012-06-08 09:28:02 +0100 (Fri, 08 Jun 2012) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 10894 $\n *\n * Revised in 3.4 by Matt Mecham\n * Refactored into a text parsing module\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\n/**\n * @author matt\n *\n */\nclass class_text_parser_bbcode extends classes_text_parser\n{\n\t\n\n\t/**\n\t * Strip quotes?\n\t * Strips quotes from the resulting text\n\t *\n\t * @access\tpublic\n\t * @var\t\tboolean\n\t */\t\n\tpublic $strip_quotes\t\t\t= false;\n\n\t/**\n"..., 8192) = 8192
23:33:17 read(4, "\t\t/* Stop direction swapping */\n\t\t$txt\t= str_replace( \"\", '', $txt );\n\t\t$txt\t= str_replace( \"\", '', $txt );\n\t\t$txt\t= str_replace( \"\", '', $txt );\n\t\t$txt\t= str_replace( \"\", '', $txt );\n\t\t$txt\t= str_replace( \"\", '', $txt );\n\t\t\n\t\t/* Convert to BR */\n\t\t$txt = nl2br( $txt );\n\t\t\n\t\t/* Restore preserved newlines */\n\t\t$txt = str_replace( \"\", \"\\n\", $txt );\n\t\t\n\t\t/* BBCodes to parse */\n\t\t$bbcodes = $this->_builtInBBCode;\n\n\t\t/* Parse BBCode */\n\t\tif ( parent::$Perms['parseBBCode'] )\n\t\t{\n\t\t\t$txt = $this->_parseBBCode( $txt, 'html', $bbcodes );\n\t\t}\n\t\n\t\t/* Tidy up */\n\t\t$txt = str_replace( '
', '', $txt );\n\t\t$txt = str_replace( '
', '', $txt );\n\t\t$txt = str_replace( '
', '', $txt );\n\t\t$txt = str_replace( '
', '', $txt );\n\t\t\n\t\t$txt = $this->_autoLinkUrls( $txt );\n\t\t\n\t\treturn $txt;\n\t}\n\t\n\t/**\n\t * Finish parsing BBCode for display\n\t * \n\t * @param string $txt \t\n\t * @r"..., 8192) = 8192
23:33:17 brk(0x2f65000) = 0x2f65000
23:33:17 read(4, "\t\t\t\t\t\tif ( $_iteration > $this->settings['max_bbcodes_per_post'] )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t$open_length = strlen( $open_tag );\n\t\t\t\t\t\t\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t// Grab the new position to jump to\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\n\t\t\t\t\t\t$new_pos = strpos( $txt, ']', $this->cur_pos ) ? strpos( $txt, ']', $this->cur_pos ) : $this->cur_pos + 1;\n\t\t\t\t\t\t\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t// Extract the option (like surgery)\n\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\n\t\t\t\t\t\t$_option = '';\n\t\t\t\t\t\t\n\t\t\t\t\t\tif ( $_bbcode['bbcode_useoption'] )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\t// Is option optional?\n\t\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif ( $_bbcode['bbcode_optional_option'] )\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\t\t// Does we haz it?\n\t\t\t\t\t\t\t\t// -----------------------------------------\n\t\t\t\t\t\t\t\t\n\t\t\t\t"..., 8192) = 8192
23:33:17 read(4, "if ( is_array( $matches ) and count( $matches ) )\n\t\t{\n\t\t\t$replaceCode = str_replace( $matches[0], $this->lang->words[$matches[1]], $replaceCode );\n\t\t}\n\t\t\n\t\t$replaceCode = str_replace( '{option}', $option, $replaceCode );\n\t\t$replaceCode = str_replace( '{content}', $content, $replaceCode );\n\t\t\n\t\t// -----------------------------------------\n\t\t// Fix linebreaks in textareas\n\t\t// -----------------------------------------\n\t\t\n\t\tif ( stripos( $replaceCode, \"', \"\", $replaceCode );\n\t\t\t$replaceCode = str_replace( \"\\r\", \"\", $replaceCode );\n\t\t\t$replaceCode = str_replace( \"\\n\", \"
\", $replaceCode );\n\t\t}\n\t\t\n\t\treturn $replaceCode;\n\t}\n\t\n\t\n\t\n\t\n\t/**\n\t * Reset function to call to trigger \"new post\" for non-parsed content\n\t *\n\t * @access\tpublic\n\t * @return\t@e void\n\t */\n\tpublic function resetPerPost()\n\t{\n\t\t$this->cache->updateCacheWithoutSaving( '_tmp_bbcode_images', 0 );\n\t}\n\n\n\n\t/**\n\t * Check against XSS\n\t *\n\t * NOTE: When this function "..., 8192) = 8192
23:33:17 read(4, "inish up URLs and such */\n\t\tfor( $i = 0 ; $i < count( $urlMatches[0] ) ; $i++ )\n\t\t{\n\t\t\t$raw = $urlMatches[0][ $i ];\n\t\t\t$url = $urlMatches[1][ $i ];\n\t\t\t$attr = $urlMatches[2][ $i ];\n\t\t\t$text = $urlMatches[3][ $i ];\n\t\t\t$done = false;\n\t\t\t\n\t\t\tpreg_match( '#data-ipb=[\"\\']([^\"\\']+?)?[\"\\']#i', $raw, $matches );\n\t\t\t\n\t\t\tif ( $matches[1] && stristr( $matches[1], 'noparse' ) )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\tpreg_match( '#rel=[\"\\']([^\"\\']+?)?[\"\\']#i', $raw, $matches );\n\t\t\t\t\n\t\t\tif ( $matches[1] && stristr( $matches[1], 'lightbox' ) )\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t/* Urls disabled? */\n\t\t\tif ( $this->_urlsEnabled !== true )\n\t\t\t{\n\t\t\t\t$txt = str_replace( $raw, $url, $txt );\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t/* Restored 1st March, Matt @link http://community.invisionpower.com/resources/bugs.html/_/ip-board/some-previously-embedded-content-youtube-etc-now-showing-as-links-after-upgrade-r41411 */\n\t\t\t/* Is this a media URL? */\n\t\t\tif ( $this->settings['bbcode_automatic_media'] and isset( $this->_bbcodes['media']"..., 8192) = 8192
23:33:17 read(4, "e->getCache( 'mediatag' );\n\t\t\t\n\t\t\t/* Already converted? */\n\t\t\tif ( in_array( $matches[2], $this->_mediaUrlConverted ) )\n\t\t\t{\n\t\t\t\treturn $matches[0];\n\t\t\t}\n\t\t\t\n\t \tif ( is_array( $media ) AND count( $media ) )\n\t\t\t{\n\t\t\t\tforeach( $media as $type => $r )\n\t\t\t\t{\n\t\t\t\t\tif ( preg_match( \"#^\" . $r['match'] . \"$#is\", $matches[2] ) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->cache->updateCacheWithoutSaving( '_tmp_autoparse_media', 1 );\n\t\t\t\t\t\t$_result\t= $this->_parseBBCode( $matches[1] . '[media]' . $matches[2] . '[/media]' . $_extra, 'html', array( 'media' ) );\n\t\t\t\t\t\t$this->cache->updateCacheWithoutSaving( '_tmp_autoparse_media', 0 );\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn $_result;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\t/* It's not media - so we'll use [url] - check we're allowed first */\n\t\tif ( ! isset( $this->_bbcodes['url'] ) or ( $this->_bbcodes['url']['bbcode_sections'] != 'all' and ! in_array( parent::$Perms['parseArea'], explode( ',', $this->_bbcodes['url']['bbcode_sections'] ) ) ) )\n\t\t{\n\t\t\t// We're not allowed to use [url] here\n\t\t\treturn"..., 8192) = 2697
23:33:17 read(4, "", 8192) = 0
23:33:17 brk(0x2fa5000) = 0x2fa5000
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text", {st_dev=makedev(145, 106), st_ino=165967277, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:38:57, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser", {st_dev=makedev(145, 106), st_ino=165967445, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:39:38, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/html.php", {st_dev=makedev(145, 106), st_ino=165968288, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=88, st_size=42949, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/html.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968288, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=88, st_size=42949, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:01:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Text Parsing: HTML\n * Last Updated: $Date: 2012-06-08 09:28:02 +0100 (Fri, 08 Jun 2012) $\n * \n *\n * @author \t\t$Author: mmecham $\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t9th March 2005 11:03\n * @version\t\t$Revision: 10894 $\n *\n * Revised in 3.4 by Matt Mecham\n * Refactored into a text parsing module\n *\n */\n\nif ( ! defined( 'IN_IPB' ) )\n{\n\tprint \"Incorrect access
You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.\";\n\texit();\n}\n\nclass class_text_parser_html extends classes_text_parser\n{\n\t/**\n\t * Parsing array\n\t *\n\t * @access\tpublic\n\t * @var\t\tarray\n\t */\n\tpublic $_nonDelimiters\t\t= array( \"=\", ' ' );\n\t\n\t/**\n\t * Parsing array\n\t *\n\t * @access\tpublic\n\t * @var\t\tarray\n\t */\n\tpublic $_delimiter"..., 8192) = 8192
23:33:17 read(4, " WYSI-Weirdness #6: Image tags\n\t\t// -----------------------------------------\n\t\t\n\t\t$content = preg_replace( '#
#', \"\", $content );\n\t\t$content = preg_replace( '#]+?)?' . '>#is', \"[img]\\\\1[/img]\", $content );\n\t\t\n\t\t// -----------------------------------------\n\t\t// WYSI-Weirdness #7: Linked URL tags\n\t\t// -----------------------------------------\n\t\t\n\t\t$content = preg_replace( '#\\[url=(\\\"|\\'|")#is', \"[url=\\\\1\\\\2\", $content );\n\t\t\n\t\t// -----------------------------------------\n\t\t// WYSI-Weirdness #8: Make relative images full links\n\t\t// -----------------------------------------\n\t\t\n\t\t$content = preg_replace( '#\\[img\\](/)?public/style_(emoticons|images)#i', '[img]' . $this->settings['board_url'] . '/public/style_' . '\\\\2', $content );\n\t\t\n\t\t// -----------------------------------------\n\t\t// Clean up whitespace between lists\n\t\t// ---------------------"..., 8192) = 8192
23:33:17 read(4, "types[$list_type] )\n\t\t{\n\t\t\t$open_tag = \"[list]\\n\";\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$open_tag = '[list=' . $allowed_types[$list_type] . \"]\\n\";\n\t\t}\n\t\t\n\t\treturn $open_tag . $this->_recurseAndParse( $tag, $between_text, '_parseListTag' ) . \"\\n[/list]\";\n\t}\n\t\n\t/**\n\t * RTE: Parse List Element tag\n\t *\n\t * @access protected\n\t * @param\n\t * \tstring\tTag\n\t * @param\n\t * \tstring\tText between opening and closing tag\n\t * @param\n\t * \tstring\tOpening tag complete\n\t * @param\n\t * \tstring\tParse tag\n\t * @return string text\n\t */\n\tprotected function _parseListElement( $tag, $between_text, $opening_tag, $parse_tag )\n\t{\n\t\t/* Check for quote tags */\n\t\t$openQuote = substr_count( strtolower( $between_text ), '[quote' );\n\t\t$closeQuote = substr_count( strtolower( $between_text ), '[/quote]' );\n\t\t\n\t\tif ( $openQuote != $closeQuote )\n\t\t{\n\t\t\t$between_text = str_replace( array( '[quote', '[/quote]' ), array( '[quote', '[/quote]' ), $between_text );\n\t\t}\n\t\t\n\t\treturn '[*]' . rtrim( $between_text ) . "..., 8192) = 8192
23:33:17 read(4, "] ) ) . '\"';\n\t\t}\n\t\t\n\t\t// -----------------------------------------\n\t\t// Get recursive text\n\t\t// -----------------------------------------\n\t\t\n\t\t$final = $this->_recurseAndParse( 'blockquote', $between_text, '_parseBlockquoteTag' );\n\t\t\n\t\t// -----------------------------------------\n\t\t// Now return\n\t\t// -----------------------------------------\n\t\t\n\t\treturn '[quote' . $extra . ']' . $final . '[/quote]';\n\t}\n\t\n\t/**\n\t * RTE: Parse DIV tag\n\t *\n\t * @access protected\n\t * @param\n\t * \tstring\tTag\n\t * @param\n\t * \tstring\tText between opening and closing tag\n\t * @param\n\t * \tstring\tOpening tag complete\n\t * @param\n\t * \tstring\tParse tag\n\t * @return string text\n\t */\n\tprotected function _parseDivTag( $tag, $between_text, $opening_tag, $parse_tag )\n\t{\n\t\t// -----------------------------------------\n\t\t// Reset local start tags\n\t\t// -----------------------------------------\n\t\t$start_tags = \"\";\n\t\t$end_tags = \"\";\n\t\t$allowEndNl = true;\n\t\t\n\t\t// -----------------------------------------\n"..., 8192) = 8192
23:33:17 read(4, "$href ) )\n\t\t{\n\t\t\t$mytag = 'email';\n\t\t\t$href = str_replace( \"mailto:\", \"\", $href );\n\t\t}\n\t\t\n\t\treturn \"[{$mytag}=\\\"{$href}\\\"]\" . $this->_recurseAndParse( $tag, $between_text, '_parseAnchorTag', $parse_tag ) . \"[/{$mytag}]\";\n\t}\n\t\n\t/**\n\t * RTE: Recursively parse tags\n\t *\n\t * @access protected\n\t * @param\n\t * \tstring\tTag\n\t * @param\n\t * \tstring\tText between opening and closing tag\n\t * @param\n\t * \tstring\tCallback Function\n\t * @param\n\t * \tstring\tParse tag\n\t * @return string text\n\t */\n\tprotected function _recurseAndParse( $tag, $text, $function, $parse_tag = '' )\n\t{\n\t\t// -----------------------------------------\n\t\t// INIT\n\t\t// -----------------------------------------\n\t\t$tag = strtolower( $tag );\n\t\t$open_tag = \"<\" . $tag;\n\t\t$open_tag_len = strlen( $open_tag );\n\t\t$close_tag = \"\" . $tag . \">\";\n\t\t$close_tag_len = strlen( $close_tag );\n\t\t$start_search_pos = 0;\n\t\t$tag_begin_loc = 1;\n\t\t\n\t\t// -----------------------------------------\n\t\t// Start the loop\n\t\t// ---------------"..., 8192) = 8192
23:33:17 read(4, "[1] ? $matches[1] : 'a href' );\n\t\t\n\t\t$url = str_replace( '<', '<', $url );\n\t\t$url = str_replace( '>', '>', $url );\n\t\t$url = str_replace( ' ', '%20', $url );\n\t\t\n\t\treturn '<' . $type . '=\"' . $url . '\"';\n\t}\n\t\n\t/**\n\t * Fetches the value of an inline style\n\t * \n\t * @param string $style \t\n\t * @param string $lookFor \t\n\t * @return string boolean\n\t */\n\tprotected function _extractCssValue( $style, $lookFor )\n\t{\n\t\tif ( strstr( $style, 'style=' ) )\n\t\t{\n\t\t\t$style = $this->_getValueOfOption( 'style', $style );\n\t\t}\n\t\t\n\t\tif ( strstr( $style, $lookFor ) )\n\t\t{\n\t\t\tif ( preg_match( '#' . preg_quote( $lookFor, '#' ) . ':(?:\\s+?)?(.+?)(;|$|\\n)#', $style, $matches ) )\n\t\t\t{\n\t\t\t\treturn trim( $matches[1] );\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn false;\n\t}\n\t\n\t/**\n\t * Converts color:rgb(x,x,x) to color:#xxxxxx\n\t *\n\t * @access protected\n\t * @param\n\t * \tstring\trgb contents: x,x,x\n\t * @param\n\t * \tstring\tregex end\n\t * @return string text\n\t */\n\tprotected function _rgbToHex( $matches )\n\t{\n\t\t$t = $match"..., 8192) = 1989
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 stat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode/defaults.php", {st_dev=makedev(145, 106), st_ino=165968291, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=184, st_size=90572, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:02:32, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin", {st_dev=makedev(145, 106), st_ino=165963169, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2011/12/29-10:06:27, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources", {st_dev=makedev(145, 106), st_ino=165963186, st_mode=S_IFDIR|0755, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2011/12/29-10:06:56, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes", {st_dev=makedev(145, 106), st_ino=165967229, st_mode=S_IFDIR|0755, st_nlink=33, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:37:55, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text", {st_dev=makedev(145, 106), st_ino=165967277, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:38:57, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser", {st_dev=makedev(145, 106), st_ino=165967445, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:39:38, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode", {st_dev=makedev(145, 106), st_ino=165967450, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/18-15:39:38, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode/defaults.php", {st_dev=makedev(145, 106), st_ino=165968291, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=184, st_size=90572, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:02:32, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/admin/sources/classes/text/parser/bbcode/defaults.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165968291, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=184, st_size=90572, st_atime=2013/06/26-17:28:22, st_mtime=2013/04/19-11:02:32, st_ctime=2013/06/26-17:28:22}) = 0
23:33:17 read(4, "\n * Invision Power Services\n * IP.Board v3.4.4\n * Custom bbcode plugin interfaces\n * Last Updated: $Date: 2012-05-24 16:33:36 +0100 (Thu, 24 May 2012) $\n * \n *\n * @author \t\t$author$\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 10790 $ \n */\n\n/**\n * \n * Invision Power Services\n * IP.Board v3.4.4\n * BBCode parser: default custom bbcodes: img, quote, list, size, member, media, url, snapback\n * Last Updated: $Date: 2012-05-24 16:33:36 +0100 (Thu, 24 May 2012) $\n *
\n *\n * @author \t\t$author$\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @version\t\t$Rev: 10790 $ \n *\n */\n\nclass bbcode_parent_main_class\n{\n\t/**\n\t * Current position in the text document"..., 8192) = 8192
23:33:17 brk(0x2fe5000) = 0x2fe5000
23:33:17 read(4, "\t */\n\tpublic function __construct( ipsRegistry $registry, $_parent='' )\n\t{\n\t\t$this->currentBbcode\t= 'img';\n\t\t\n\t\tparent::__construct( $registry, $_parent );\n\t}\n\n\t/**\n\t * Do the actual replacement\n\t *\n\t * @access\tprotected\n\t * @param\tstring\t\t$txt\tParsed text from database to be edited\n\t * @return\tstring\t\t\t\tBBCode content, ready for editing\n\t */\n\tprotected function _replaceText( $txt )\n\t{\n\t\t$_tags = $this->_retrieveTags();\n\n\t\tforeach( $_tags as $_tag )\n\t\t{\n\t\t\t//-----------------------------------------\n\t\t\t// Start building open/close tag\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\t$open_tag\t= '[' . $_tag . ']';\n\t\t\t$close_tag\t= '[/' . $_tag . ']';\n\n\t\t\t//-----------------------------------------\n\t\t\t// Infinite loop catcher\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\t$_iteration\t= 0;\n\t\t\t\n\t\t\t//-----------------------------------------\n\t\t\t// Doz I can haz opin tag? Loopy loo\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\twhile( ( $this->cur_pos = stripos( $txt, $open"..., 8192) = 8192
23:33:17 read(4, "--------------\n\n\t\tif( $matches[2] )\n\t\t{\n\t\t\t$matches[2] = str_replace( array( '\"', \"'\", '"', ''', ''', '=' ), '', $matches[2] );\n\t\t}\n\n\t\t$types = array( 'a', 'A', 'i', 'I', '1' );\n\n\t\tif ( in_array( $matches[2], $types ) )\n\t\t{\n\t\t\t$fnl\t= $matches[1];\n\t\t\t$type\t= $matches[2];\n\t\t\t$txt \t= $matches[3];\n\t\t\t$lnl\t= $matches[4];\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$fnl\t= $matches[1];\n\t\t\t$type\t= '';\n\t\t\t$txt\t= $matches[3];\n\t\t\t$lnl\t= $matches[4];\n\t\t}\n\t\t\n\t\tif ( !$txt )\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//-----------------------------------------\n\t\t// No br tags, br tags bad\n\t\t//-----------------------------------------\n\n\t\t$txt\t= str_replace( \"\\n\", \"\", $txt );\n\t\t$txt\t= str_replace( array( '
', '
'), \"\\n\", $txt );\n\t\t$txt\t= str_replace( \"[/list]\\n[*]\", \"[/list][*]\", $txt );\n\t\t$txt = str_replace( '[/*]', '', $txt );\n\t\t\n\t\t$return\t= '';\n\n\t\tif ( ! $type )\n\t\t{\n\t\t\t$return\t= $fnl . \"\" . $this->_listItem($txt) . \"
\" . $lnl;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$_cssClass\t= \"decimal\";\n\t\t\t\n\t\t\tswitch( $type )\n\t\t\t{\n\t\t\t"..., 8192) = 8192
23:33:17 read(4, "ode class\n\t * @return\t@e void\n\t */\n\tpublic function __construct( ipsRegistry $registry, $_parent='' )\n\t{\n\t\t$this->currentBbcode\t= 'size';\n\t\t\n\t\tparent::__construct( $registry, $_parent );\n\t}\n\n\t/**\n\t * Do the actual replacement\n\t *\n\t * @access\tprotected\n\t * @param\tstring\t\t$txt\tParsed text from database to be edited\n\t * @return\tstring\t\t\t\tBBCode content, ready for editing\n\t */\n\tprotected function _replaceText( $txt )\n\t{\n\t\t$_tags = $this->_retrieveTags();\n\n\t\tforeach( $_tags as $_tag )\n\t\t{\n\t\t\t//-----------------------------------------\n\t\t\t// Infinite loop catcher\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\t$_iteration\t= 0;\n\t\t\t\n\t\t\t//-----------------------------------------\n\t\t\t// Start building open tag\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\t$open_tag = '[' . $_tag . '=';\n\t\n\t\t\t//-----------------------------------------\n\t\t\t// Doz I can haz opin tag? Loopy loo\n\t\t\t//-----------------------------------------\n\t\t\t\n\t\t\twhile( ( $this->cur_pos = stripos( $txt, $open_tag, $thi"..., 8192) = 8192
23:33:17 read(4, "str( $txt, $this->cur_pos + strlen($open_tag), 1 ) == '=' )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$open_length\t+= 1;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t//-----------------------------------------\n\t\t\t\t\t\t\t// This is here to try to capture urls with\n\t\t\t\t\t\t\t// [ and ] in them, only works if enclosed in quotes\n\t\t\t\t\t\t\t//-----------------------------------------\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$cur_content\t= '';\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif( substr( $txt, $this->cur_pos + $open_length, 6 ) == '"' )\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t/* Skip the bbocde if there is more than 2 quotes. Bug #21161 */\n\t\t\t\t\t\t\t\tif( strlen( substr( $txt, $this->cur_pos, stripos( $txt, ']', $this->cur_pos ) - $this->cur_pos ) ) < 1 OR ( substr_count( $txt, '"', $this->cur_pos, strlen( substr( $txt, $this->cur_pos, stripos( $txt, ']', $this->cur_pos ) - $this->cur_pos ) ) ) ) > 2 )\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$this->cur_pos = strpos( $txt, ']', $this->cur_pos ) ? strpos( $txt, ']', $this->cur_pos ) : $this->cur_pos + 1;\n\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t$end_pos\t\t= stripos( $txt, '"', $this->cur_"..., 8192) = 8192
23:33:17 read(4, "\t$this->cur_pos = stripos( $txt, $open_tag ) ? stripos( $txt, $open_tag ) : $this->cur_pos + 1; //$new_pos;\n\n\t\t\t\tif( $this->cur_pos > strlen($txt) )\n\t\t\t\t{\n\t\t\t\t\t//-----------------------------------------\n\t\t\t\t\t// Need to reset for next \"tag\"\n\t\t\t\t\t//-----------------------------------------\n\t\t\t\t\t\n\t\t\t\t\t$this->cur_pos\t= 0;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $txt;\n\t}\n\t\n\t/**\n\t * Build the actual output to show\n\t *\n\t * @access\tprotected\n\t * @param\tarray\t\t$content\tDisplay text\n\t * @param\tstring\t\t$option\t\tURL to link to\n\t * @return\tstring\t\t\t\t\tContent to replace bbcode with\n\t */\n\tprotected function _buildOutput( $content, $option )\n\t{\n\t\t// This is problematic if url contains a ' or \"\n\t\t// $option = str_replace( array( '\"', \"'\", ''', '"' ), '', $option );\n\n\t\t//-----------------------------------------\n\t\t// Remove \" and ' from beginning + end\n\t\t//-----------------------------------------\n\t\t\n\t\tif( substr( $option, 0, 5 ) == ''' )\n\t\t{\n\t\t\t$option = substr( $option, 5 );\n\t\t}\n\t\telse if( "..., 8192) = 8192
23:33:17 brk(0x3025000) = 0x3025000
23:33:17 read(4, "r_pos = strpos( $txt, ']', $this->cur_pos ) ? strpos( $txt, ']', $this->cur_pos ) : $this->cur_pos + 1;\n\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$end_pos = stripos( $txt, '"', $this->cur_pos + $open_length + 1 ) ? stripos( $txt, '"', $this->cur_pos + $open_length + 1 ) : strpos( $txt, ']', $this->cur_pos + $open_length + 1 );\n\t\t\t\t\t\t\t\t$cur_content = substr( $txt, $this->cur_pos + $open_length + 6, ( $end_pos - ( $this->cur_pos + $open_length + 6 ) ) );\n\t\t\t\t\t\t\t\t$new_content = str_replace( '[', '%5B', str_replace( ']', '%5D', $cur_content ) );\n\t\t\t\t\t\t\t\t$txt = substr_replace( $txt, $new_content, $this->cur_pos + $open_length + 6, ( $end_pos - ( $this->cur_pos + $open_length + 6 ) ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if ( substr( $txt, $this->cur_pos + $open_length, 5 ) == \"'\" )\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t/*\n\t\t\t\t\t\t\t\t * Skip the bbocde if there is mroe than 2\n\t\t\t\t\t\t\t\t * quotes. Bug #21161\n\t\t\t\t\t\t\t\t */\n\t\t\t\t\t\t\t\tif ( strlen( substr( $txt, $this->cur_pos, stripos( $txt, ']', $this->cur_pos ) - $this"..., 8192) = 8192
23:33:17 read(4, "\n\t{\n\t\t//-----------------------------------------\n\t\t// Strip the optional quote delimiters\n\t\t//-----------------------------------------\n\n\t\t// This shouldn't be intval'd - it is a string exploded on ':' below\n\t\t//$option\t\t\t= intval( $option );\n\t\t$content = trim( $content );\n\t\t\n\t\t$content = preg_replace( '#(
]+?)?>)#i', '', $content );\n\t\t$content = trim( $content );\n\t\t\n\t\t$content = str_replace( '', \"\\n\", $content );\n\t\t\n\t\t/* Make contents of code boxes safe */\n\t\t//$content = preg_replace( '/&(#[0-9]{3,4}|[a-zA-Z]{2,5});/', '&\\1;', $content );\n\t\t$content = str_replace( '<', '<', $content );\n\t\t$content = str_replace( '>', '>', $content );\n\t\t\n\t\t$lineNums = 1;\n\t\t$langAdd = '';\n\t\t\n\t\tif ( $option )\n\t\t{\n\t\t\tlist( $lang, $lineNums ) = explode( ':', $option );\n\t\t}\n\n\t\tif ( $lang )\n\t\t{\n\t\t\t$langAdd = ' _lang-' . trim( $lang );\n\t\t}\n\t\t\n\t\t/* We use underscores so the code is not highlighted when using CKEditor */\n\t\treturn \"
\", \"~~~~~_____~~~~~\" ), \"\", $txt );\n\n\t\t//-----------------------------------------\n\t\t// Swap name replacement (_makeNameSafe) back\n\t\t//-----------------------------------------\n\n\t\t$txt\t= str_replace( ''', \"'\", $txt );\n\n\t\t//-----------------------------------------\n\t\t// Turn attachments into links\n\t\t// Prevents em from breaking on other pages\n\t\t//-----------------------------------------\n\n\t\tpreg_match_all( \"#]+?)>(.+?)
#ims\", $txt, $_outerMatches );\n\n\t\tforeach( $_outerMatches[1] as $_outerMatch )\n\t\t{\n\t\t\tpreg_match_all( '#\\[attachment=(.+?):(.+?)\\]#', $_outerMatch, $_matches );\n\n\t\t\tif( is_array( $_matches[1] ) && count( $_matches[1] ) )\n\t\t\t{\n\t\t\t\tforeach( $_matches[1] as $idx => $attach_id )\n\t\t\t\t{\n\t\t\t\t\t$txt = str_replace( \"[attachment={$attach_id}:{$_matches[2][$idx]}]\", $this->registry->ge"..., 8192) = 8192
23:33:17 read(4, "\t\t\t$open_tag = '[' . $_tag . ']';\n\n\t\t\t//-----------------------------------------\n\t\t\t// Doz I can haz opin tag? Loopy loo\n\t\t\t//-----------------------------------------\n\t\t\t\t\n\t\t\twhile( ( $this->cur_pos = stripos( $txt, $open_tag, $this->cur_pos ) ) !== false )\n\t\t\t{\n\t\t\t\t//-----------------------------------------\n\t\t\t\t// Stop infinite loops\n\t\t\t\t//-----------------------------------------\n\n\t\t\t\tif( $_iteration > $this->settings['max_bbcodes_per_post'] )\n\t\t\t\t{\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t$_iteration++;\n\n\t\t\t\t//-----------------------------------------\n\t\t\t\t// Grab the new position to jump to\n\t\t\t\t//-----------------------------------------\n\n\t\t\t\t$new_pos = strpos( $txt, ']', $this->cur_pos ) ? strpos( $txt, ']', $this->cur_pos ) : $this->cur_pos + 1;\n\n\t\t\t\t//-----------------------------------------\n\t\t\t\t// Grab content\n\t\t\t\t//-----------------------------------------\n\n\t\t\t\t$close_tag\t= '[/' . $_tag . ']';\n\t\t\t\t$_content\t= substr( $txt, ($this->cur_pos + strlen($open_tag) ), (stripos( $txt, $close_tag, $t"..., 8192) = 8192
23:33:17 brk(0x3065000) = 0x3065000
23:33:17 read(4, "erHoverCard( $member );\n\n\t\t$this->memberData['g_mem_info'] = $_temp;\n\n\t\t/* Return output */\n\t\treturn $_output;\n\t}\n}\n\n//----------------------------------------------------------------------------------------------------------\n//----------------------------------------------------------------------------------------------------------\n\nclass bbcode_plugin_media extends bbcode_parent_main_class\n{\n\t/**\n\t * Constructor\n\t *\n\t * @access\tpublic\n\t * @param\tobject\t\tRegistry object\n\t * @param\tobject\t\tParent bbcode class\n\t * @return\t@e void\n\t */\n\tpublic function __construct( ipsRegistry $registry, $_parent='' )\n\t{\n\t\t$this->currentBbcode\t= 'media';\n\n\t\tparent::__construct( $registry, $_parent );\n\t}\n\n\t/**\n\t * Do the actual replacement\n\t *\n\t * @access\tprotected\n\t * @param\tstring\t\t$txt\tParsed text from database to be edited\n\t * @return\tstring\t\t\t\tBBCode content, ready for editing\n\t */\n\tprotected function _replaceText( $txt )\n\t{\n\t\t$_tags = $this->_retrieveTags();\n\n\t\tforeach( $_tags as $_tag )\n\t\t{\n\t\t\t//--"..., 8192) = 8192
23:33:17 read(4, "p?', $content );\n\t\t\t\t\t$content = str_replace( '{board_url}', $this->settings['board_url'], $content );\n\t\t\t\t\t$content = str_replace( '{image_url}', $this->settings['img_url'], $content );\n\t\t\t\t\t\t\n\t\t\t\t\tpreg_match( '/\\{text\\.(.+?)\\}/i', $content, $matches );\n\t\t\t\t\t\t\n\t\t\t\t\tif( is_array($matches) AND count($matches) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$content = str_replace( $matches[0], $this->lang->words[ $matches[1] ], $content );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $content;\n\t}\n}\n\n\n", 8192) = 460
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 poll([{fd=3, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout)
23:33:17 write(3, "\337\2\0\0\3INSERT INTO content_cache_sigs (`cache_content_id`,`cache_content`,`cache_updated`) VALUES(2,'\342\235\205Appreciate what you have, before it becomes what you had.
\\n\342\235\205There is worse pain in the world than yours.
\\n\342\235\205It punches you in the face with how bad it sucks.
',1373603597) ON DUPLICATE KEY UPDATE cache_content_id=VALUES(cache_content_id),cache_content=VALUES(cache_content),cache_updated=VALUES(cache_updated)", 739) = 739
23:33:17 read(3, "^\0\0\1\377\221\0#HY000Table './simsasyl_ipb/content_cache_sigs' is marked as crashed and should be repaired", 16384) = 98
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/sql_error_log_07_12_13.cgi", {st_dev=makedev(145, 106), st_ino=165972062, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=3672, st_size=1874448, st_atime=2013/07/11-20:16:24, st_mtime=2013/07/11-23:33:07, st_ctime=2013/07/11-23:33:07}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/sql_error_log_07_12_13.cgi", O_WRONLY|O_CREAT|O_APPEND, 0666) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=165972062, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=3672, st_size=1874448, st_atime=2013/07/11-20:16:24, st_mtime=2013/07/11-23:33:07, st_ctime=2013/07/11-23:33:07}) = 0
23:33:17 lseek(4, 0, SEEK_CUR) = 0
23:33:17 lseek(4, 0, SEEK_CUR) = 0
23:33:17 write(4, "\n ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n Date: Fri, 12 Jul 2013 04:33:17 +0000\n Error: 145 - Table './simsasyl_ipb/content_cache_sigs' is marked as crashed and should be repaired\n IP Address: 216.110.94.228 - /tfm/index.php?/topic/231-captcha-and-registering/\n ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n mySQL query error: INSERT INTO content_cache_sigs (`cache_content_id`,`cache_content`,`cache_updated`) VALUES(2,'\342\235\205Appreciate what you have, before it becomes what you had.
\\n\342\235\205\342\235\205Appreciate what you have, before it becomes what you had.
\\n\342\235\205\n * Invision Power Services\n * IP.Board v3.4.4\n * System Templates\n * Last Updated: $Date: 2012-05-10 21:10:13 +0100 (Thu, 10 May 2012) $\n * \n *\n * @author \t\tMark Wade\n * @copyright\t(c) 2001 - 2009 Invision Power Services, Inc.\n * @license\t\thttp://www.invisionpower.com/company/standards.php#license\n * @package\t\tIP.Board\n * @link\t\thttp://www.invisionpower.com\n * @since\t\t5th September 2012\n * @version\t\t$Rev: 10721 $\n *\n */\n\n/**\n * System Templates\n */\nclass systemTemplates\n{\n\t/**\n\t * Get Templates\n\t *\n\t * @return\tarray\n\t */\n\tpublic function getList()\n\t{\n\t\t$templates = array();\n\t\n\t\t$directoryIterator = new DirectoryIterator( IPS_CACHE_PATH . 'cache/skin_cache/system' );\n\t\tforeach ( $directoryIterator as $file )\n\t\t{\n\t\t\tif ( !$file->isDot() and $file->isFile() and substr( $file, -4 ) === '.php' )\n\t\t\t{\n\t\t\t\trequire_once $file->getPathName();\n\t\t\t\t\n\t\t\t\t$className = substr( $file, 0, -4 );\n\t\t\t\tif ( class_exists( $className ) )\n\t\t\t\t{\n\t\t\t\t\t$class = new $className;\n\t\t\t\t\tif ("..., 8192) = 4542
23:33:17 read(4, "", 8192) = 0
23:33:17 read(4, "", 8192) = 0
23:33:17 close(4) = 0
23:33:17 access("/home/simsasyl/public_html/tfm/cache/skin_cache/system/ipsDriverError.php", F_OK) = 0
23:33:17 lstat("/home", {st_dev=makedev(145, 106), st_ino=147862332, st_mode=S_IFDIR|0711, st_nlink=8, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/06/28-04:03:16, st_ctime=2013/06/28-04:03:16}) = 0
23:33:17 lstat("/home/simsasyl", {st_dev=makedev(145, 106), st_ino=165941481, st_mode=S_IFDIR|0711, st_nlink=12, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:24:31, st_mtime=2013/07/11-01:27:02, st_ctime=2013/07/11-01:27:02}) = 0
23:33:17 lstat("/home/simsasyl/public_html", {st_dev=makedev(145, 106), st_ino=165941504, st_mode=S_IFDIR|0750, st_nlink=11, st_uid=500, st_gid=99, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/07/11-23:33:16, st_ctime=2013/07/11-23:33:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm", {st_dev=makedev(145, 106), st_ino=165963166, st_mode=S_IFDIR|0755, st_nlink=11, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:16, st_mtime=2013/04/19-12:16:18, st_ctime=2013/06/26-17:28:16}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache", {st_dev=makedev(145, 106), st_ino=165963170, st_mode=S_IFDIR|0777, st_nlink=6, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:59:06, st_mtime=2013/07/11-20:16:24, st_ctime=2013/07/11-20:16:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/skin_cache", {st_dev=makedev(145, 106), st_ino=166068241, st_mode=S_IFDIR|0777, st_nlink=8, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:23, st_mtime=2013/04/19-13:33:01, st_ctime=2013/06/26-17:28:23}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/skin_cache/system", {st_dev=makedev(145, 106), st_ino=166068252, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/18-15:39:52, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 lstat("/home/simsasyl/public_html/tfm/cache/skin_cache/system/ipsDriverError.php", {st_dev=makedev(145, 106), st_ino=166068669, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3711, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/18-15:42:18, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 open("/home/simsasyl/public_html/tfm/cache/skin_cache/system/ipsDriverError.php", O_RDONLY) = 4
23:33:17 fstat(4, {st_dev=makedev(145, 106), st_ino=166068669, st_mode=S_IFREG|0644, st_nlink=1, st_uid=500, st_gid=500, st_blksize=4096, st_blocks=8, st_size=3711, st_atime=2013/06/26-17:28:24, st_mtime=2013/04/18-15:42:18, st_ctime=2013/06/26-17:28:24}) = 0
23:33:17 read(4, "\n\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t{$name} Driver Error \n\t\t