관리-도구
편집 파일: strace.log
9364 14:53:44 brk(0x1a5f000) = 0x1a5f000 9364 14:53:44 brk(0x1a80000) = 0x1a80000 9364 14:53:44 lstat("/home", {st_mode=S_IFDIR|0711, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09", {st_mode=S_IFDIR|0711, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php/DB", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php/DB/mysql.php", {st_mode=S_IFREG|0644, st_size=32606, ...}) = 0 9364 14:53:44 open("/home/finest09/php/DB/mysql.php", O_RDONLY) = 4 9364 14:53:44 fstat(4, {st_mode=S_IFREG|0644, st_size=32606, ...}) = 0 9364 14:53:44 open("/home/finest09/php/DB/mysql.php", O_RDONLY) = 5 9364 14:53:44 fstat(5, {st_mode=S_IFREG|0644, st_size=32606, ...}) = 0 9364 14:53:44 mmap(NULL, 32606, PROT_READ, MAP_SHARED, 5, 0) = 0x7f9fa15ab000 9364 14:53:44 munmap(0x7f9fa15ab000, 32606) = 0 9364 14:53:44 close(5) = 0 9364 14:53:44 fcntl(4, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE) 9364 14:53:44 fstat(4, {st_mode=S_IFREG|0644, st_size=32606, ...}) = 0 9364 14:53:44 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9fa15b2000 9364 14:53:44 lseek(4, 0, SEEK_CUR) = 0 9364 14:53:44 lseek(4, 0, SEEK_SET) = 0 9364 14:53:44 read(4, "<?php\n\n/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */\n\n/**\n * The PEAR DB driver for PHP's mysql extension\n * for interacting with MySQL databases\n *\n * PHP version 5\n *\n * LICENSE: This source file is subject to version 3.0 of the PHP license\n * that is available through the world-wide-web at the following URI:\n * http://www.php.net/license/3_0.txt. If you did not receive a copy of\n * the PHP License and are unable to obtain it through the web, please\n * send a note to license@php.net so we can mail you a copy immediately.\n *\n * @category Database\n * @package DB\n * @author Stig Bakken <ssb@php.net>\n * @author Daniel Convissor <danielc@php.net>\n * @copyright 1997-2007 The PHP Group\n * @license http://www.php.net/license/3_0.txt PHP License 3.0\n * @version CVS: $Id$\n * @link http://pear.php.net/package/DB\n */\n\n/**\n * Obtain the DB_common class so it can be extended from\n */\nrequire_once 'DB/common.php';\n\n/**\n * The methods PEAR DB uses to inte"..., 4096) = 4096 9364 14:53:44 lseek(4, 4096, SEEK_SET) = 4096 9364 14:53:44 read(4, "y be designated\n * private in PHP 5 because it is directly accessed in the test suite.}}\n *\n * @var integer\n * @access private\n */\n var $transaction_opcount = 0;\n\n /**\n * The database specified in the DSN\n *\n * It's a fix to allow calls to different databases in the same script.\n *\n * @var string\n * @access private\n */\n var $_db = '';\n\n\n // }}}\n // {{{ constructor\n\n /**\n * This constructor calls <kbd>parent::__construct()</kbd>\n *\n * @return void\n */\n function __construct()\n {\n parent::__construct();\n }\n\n // }}}\n // {{{ connect()\n\n /**\n * Connect to the database server, log in and open the database\n *\n * Don't call this method directly. Use DB::connect() instead.\n *\n * PEAR DB's mysql driver supports the following extra DSN options:\n * + new_link If set to true, causes subsequent calls to connect()\n * to return a new connectio"..., 4096) = 4096 9364 14:53:44 read(4, " DB_OK;\n }\n\n // }}}\n // {{{ disconnect()\n\n /**\n * Disconnects from the database server\n *\n * @return bool TRUE on success, FALSE on failure\n */\n function disconnect()\n {\n $ret = @mysql_close($this->connection);\n $this->connection = null;\n return $ret;\n }\n\n // }}}\n // {{{ simpleQuery()\n\n /**\n * Sends a query to the database server\n *\n * Generally uses mysql_query(). If you want to use\n * mysql_unbuffered_query() set the \"result_buffering\" option to 0 using\n * setOptions(). This option was added in Release 1.7.0.\n *\n * @param string the SQL query string\n *\n * @return mixed + a PHP result resrouce for successful SELECT queries\n * + the DB_OK constant for other successful queries\n * + a DB_Error object on failure\n */\n function simpleQuery($query)\n {\n $ismanip = $this->_checkManip($query);\n $this->last_query = $query;\n "..., 8192) = 8192 9364 14:53:44 read(4, "uery('SET AUTOCOMMIT=1', $this->connection);\n $this->transaction_opcount = 0;\n if (!$result) {\n return $this->mysqlRaiseError();\n }\n }\n return DB_OK;\n }\n\n // }}}\n // {{{ affectedRows()\n\n /**\n * Determines the number of rows affected by a data maniuplation query\n *\n * 0 is returned for queries that don't manipulate data.\n *\n * @return int the number of rows. A DB_Error object on failure.\n */\n function affectedRows()\n {\n if ($this->_last_query_manip) {\n return @mysql_affected_rows($this->connection);\n } else {\n return 0;\n }\n }\n\n // }}}\n // {{{ nextId()\n\n /**\n * Returns the next free id in a sequence\n *\n * @param string $seq_name name of the sequence\n * @param boolean $ondemand when true, the seqence is automatically\n * created if it does not exist\n *\n * @return int the n"..., 8192) = 8192 9364 14:53:44 read(4, "capeSimple($str)\n {\n if (function_exists('mysql_real_escape_string')) {\n return @mysql_real_escape_string($str, $this->connection);\n } else {\n return @mysql_escape_string($str);\n }\n }\n\n // }}}\n // {{{ modifyQuery()\n\n /**\n * Changes a query string for various DBMS specific reasons\n *\n * This little hack lets you know how many rows were deleted\n * when running a \"DELETE FROM table\" query. Only implemented\n * if the DB_PORTABILITY_DELETE_COUNT portability option is on.\n *\n * @param string $query the query string to modify\n *\n * @return string the modified query string\n *\n * @access protected\n * @see DB_common::setOption()\n */\n function modifyQuery($query)\n {\n if ($this->options['portability'] & DB_PORTABILITY_DELETE_COUNT) {\n // \"DELETE FROM table\" gives 0 affected rows in MySQL.\n // This little hack lets you know how many rows were deleted.\n "..., 8192) = 8030 9364 14:53:44 read(4, "", 4096) = 0 9364 14:53:44 read(4, "", 8192) = 0 9364 14:53:44 brk(0x1ac8000) = 0x1ac8000 9364 14:53:44 read(4, "", 8192) = 0 9364 14:53:44 close(4) = 0 9364 14:53:44 munmap(0x7f9fa15b2000, 4096) = 0 9364 14:53:44 lstat("/home", {st_mode=S_IFDIR|0711, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09", {st_mode=S_IFDIR|0711, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php/DB", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 9364 14:53:44 lstat("/home/finest09/php/DB/common.php", {st_mode=S_IFREG|0644, st_size=72441, ...}) = 0 9364 14:53:44 open("/home/finest09/php/DB/common.php", O_RDONLY) = 4 9364 14:53:44 fstat(4, {st_mode=S_IFREG|0644, st_size=72441, ...}) = 0 9364 14:53:44 open("/home/finest09/php/DB/common.php", O_RDONLY) = 5 9364 14:53:44 fstat(5, {st_mode=S_IFREG|0644, st_size=72441, ...}) = 0 9364 14:53:44 mmap(NULL, 72441, PROT_READ, MAP_SHARED, 5, 0) = 0x7f9fa15a1000 9364 14:53:44 munmap(0x7f9fa15a1000, 72441) = 0 9364 14:53:44 close(5) = 0 9364 14:53:44 fcntl(4, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE) 9364 14:53:44 fstat(4, {st_mode=S_IFREG|0644, st_size=72441, ...}) = 0 9364 14:53:44 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9fa15b2000 9364 14:53:44 lseek(4, 0, SEEK_CUR) = 0 9364 14:53:44 lseek(4, 0, SEEK_SET) = 0 9364 14:53:44 read(4, "<?php\n\n/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */\n\n/**\n * Contains the DB_common base class\n *\n * PHP version 5\n *\n * LICENSE: This source file is subject to version 3.0 of the PHP license\n * that is available through the world-wide-web at the following URI:\n * http://www.php.net/license/3_0.txt. If you did not receive a copy of\n * the PHP License and are unable to obtain it through the web, please\n * send a note to license@php.net so we can mail you a copy immediately.\n *\n * @category Database\n * @package DB\n * @author Stig Bakken <ssb@php.net>\n * @author Tomas V.V. Cox <cox@idecnet.com>\n * @author Daniel Convissor <danielc@php.net>\n * @copyright 1997-2007 The PHP Group\n * @license http://www.php.net/license/3_0.txt PHP License 3.0\n * @version CVS: $Id$\n * @link http://pear.php.net/package/DB\n */\n\n/**\n * Obtain the PEAR class so it can be extended from\n */\nrequire_once 'PEAR.php';\n\n/**\n * DB_common is the base class from which each d"..., 4096) = 4096 9364 14:53:44 lseek(4, 4096, SEEK_SET) = 4096 9364 14:53:44 read(4, " */\n function __sleep()\n {\n if ($this->connection) {\n // Don't disconnect(), people use serialize() for many reasons\n $this->was_connected = true;\n } else {\n $this->was_connected = false;\n }\n if (isset($this->autocommit)) {\n return array('autocommit',\n 'dbsyntax',\n 'dsn',\n 'features',\n 'fetchmode',\n 'fetchmode_object_class',\n 'options',\n 'was_connected',\n );\n } else {\n return array('dbsyntax',\n 'dsn',\n 'features',\n 'fetchmode',\n 'fetchmode_object_class',\n 'options',\n 'was_connected',\n );\n }\n }\n\n // }}}\n // {{{ __wakeup()\n\n /**\n"..., 4096) = 4096 9364 14:53:44 read(4, "imited identifiers are known to generally work correctly under\n * the following drivers:\n * + mssql\n * + mysql\n * + mysqli\n * + oci8\n * + odbc(access)\n * + odbc(db2)\n * + pgsql\n * + sqlite\n * + sybase (must execute <kbd>set quoted_identifier on</kbd> sometime\n * prior to use)\n *\n * InterBase doesn't seem to be able to use delimited identifiers\n * via PHP 4. They work fine under PHP 5.\n *\n * @param string $str the identifier name to be quoted\n *\n * @return string the quoted identifier\n *\n * @since Method available since Release 1.6.0\n */\n function quoteIdentifier($str)\n {\n return '\"' . str_replace('\"', '\"\"', $str) . '\"';\n }\n\n // }}}\n // {{{ quoteSmart()\n\n /**\n * Formats input so it can be safely used in a query\n *\n * The output depends on the PHP data type of input and the database\n * type being used.\n *\n * @param mixed $in the da"..., 8192) = 8192 9364 14:53:44 read(4, "/var> <kbd>boolean</kbd> = <samp>false</samp>\n * <br />should results be freed automatically when there are no\n * more rows?\n * </li><li>\n * <var>result_buffering</var> <kbd>integer</kbd> = <samp>500</samp>\n * <br />how many rows of the result set should be buffered?\n * <br />In mysql: mysql_unbuffered_query() is used instead of\n * mysql_query() if this value is 0. (Release 1.7.0)\n * <br />In oci8: this value is passed to ocisetprefetch().\n * (Release 1.7.0)\n * </li><li>\n * <var>debug</var> <kbd>integer</kbd> = <samp>0</samp>\n * <br />debug level\n * </li><li>\n * <var>persistent</var> <kbd>boolean</kbd> = <samp>false</samp>\n * <br />should the connection be persistent?\n * </li><li>\n * <var>portability</var> <kbd>integer</kbd> = <samp>DB_PORTABILITY_NONE</samp>\n * <br />portability mode constant (see below)\n * </li><li>\n * <var>seqname_forma"..., 8192) = 8192 9364 14:53:44 read(4, "prepared\n *\n * @return mixed DB statement resource on success. A DB_Error object\n * on failure.\n *\n * @see DB_common::execute()\n */\n function prepare($query)\n {\n $tokens = preg_split('/((?<!\\\\\\)[&?!])/', $query, -1,\n PREG_SPLIT_DELIM_CAPTURE);\n $token = 0;\n $types = array();\n $newtokens = array();\n\n foreach ($tokens as $val) {\n switch ($val) {\n case '?':\n $types[$token++] = DB_PARAM_SCALAR;\n break;\n case '&':\n $types[$token++] = DB_PARAM_OPAQUE;\n break;\n case '!':\n $types[$token++] = DB_PARAM_MISC;\n break;\n default:\n $newtokens[] = preg_replace('/\\\\\\([&?!])/', \"\\\\1\", $val);\n }\n }\n\n $this->prepare_tokens[] = &$newtokens;\n end($this->pr"..., 8192) = 8192 9364 14:53:44 read(4, " items\n * passed must match quantity of placeholders in\n * query: meaning 1 placeholder for non-array\n * parameters or 1 placeholder per array element.\n *\n * @return mixed a string containing the real query run when emulating\n * prepare/execute. A DB_Error object on failure.\n *\n * @access protected\n * @see DB_common::execute()\n */\n function executeEmulateQuery($stmt, $data = array())\n {\n $stmt = (int)$stmt;\n $data = (array)$data;\n $this->last_parameters = $data;\n\n if (count($this->prepare_types[$stmt]) != count($data)) {\n $this->last_query = $this->prepared_queries[$stmt];\n return $this->raiseError(DB_ERROR_MISMATCH);\n }\n\n $realquery = $this->prepare_tokens[$stmt][0];\n\n $i = 0;\n foreach ($data as $value) {\n if ($this->prepare_types[$stmt][$i] == DB_PARAM_SCALAR) {"..., 8192) = 8192 9364 14:53:44 read(4, "result\n *\n * Takes care of doing the query and freeing the results when finished.\n *\n * @param string $query the SQL query\n * @param mixed $params array, string or numeric data to be used in\n * execution of the statement. Quantity of items\n * passed must match quantity of placeholders in\n * query: meaning 1 placeholder for non-array\n * parameters or 1 placeholder per array element.\n *\n * @return mixed the returned value of the query.\n * A DB_Error object on failure.\n */\n function &getOne($query, $params = array())\n {\n $params = (array)$params;\n // modifyLimitQuery() would be nice here, but it causes BC issues\n if (sizeof($params) > 0) {\n $sth = $this->prepare($query);\n if (DB::isError($sth)) {\n return $sth;\n }\n $res = $this->execute("..., 8192) = 8192 9364 14:53:44 read(4, "f the statement. Quantity of\n * items passed must match quantity of\n * placeholders in query: meaning 1\n * placeholder for non-array parameters or\n * 1 placeholder per array element.\n * @param int $fetchmode the fetch mode to use\n * @param bool $group if true, the values of the returned array\n * is wrapped in another array. If the same\n * key value (in the first column) repeats\n * itself, the values will be appended to\n * this array instead of overwriting the\n * existing values.\n *\n * @return array the associative array containing the query results.\n * A DB_Error object on failure.\n */\n function &getAssoc($query, $force_array = false,"..., 8192) = 8192 9364 14:53:44 brk(0x1b0c000) = 0x1b0c000 9364 14:53:44 read(4, "equence() docblock contains notes about storing sequence\n * names.\n *\n * @param string $sqn the sequence's public name\n *\n * @return string the sequence's name in the backend\n *\n * @access protected\n * @see DB_common::createSequence(), DB_common::dropSequence(),\n * DB_common::nextID(), DB_common::setOption()\n */\n function getSequenceName($sqn)\n {\n return sprintf($this->getOption('seqname_format'),\n preg_replace('/[^a-z0-9_.]/i', '_', $sqn));\n }\n\n // }}}\n // {{{ nextId()\n\n /**\n * Returns the next free id in a sequence\n *\n * @param string $seq_name name of the sequence\n * @param boolean $ondemand when true, the seqence is automatically\n * created if it does not exist\n *\n * @return int the next id number in the sequence.\n * A DB_Error object on failure.\n *\n * @see DB_common::createSequence(), DB_common::dropSeque"..., 8192) = 8192 9364 14:53:44 read(4, "rans] => 1\n * )\n * </pre>\n *\n * </li><li>\n *\n * <kbd>DB_TABLEINFO_ORDERTABLE</kbd>\n *\n * <p>Similar to <kbd>DB_TABLEINFO_ORDER</kbd> but adds more\n * dimensions to the array in which the table names are keys and\n * the field names are sub-keys. This is helpful for queries that\n * join tables which have identical field names.</p>\n *\n * <pre>\n * [num_fields] => 3\n * [ordertable] => Array (\n * [tblFoo] => Array (\n * [fldId] => 0\n * [fldPhone] => 1\n * )\n * [tblBar] => Array (\n * [fldId] => 2\n * )\n * )\n * </pre>\n *\n * </li>\n * </ul>\n *\n * The <samp>flags</samp> element contains a space separated list\n * of extra information about the field. This data is inconsistent\n * between DBMS's due to the way each DBMS works.\n * + <samp>primary_key</samp>\n * + <samp>unique_key</samp>\n * "..., 8192) = 6905 9364 14:53:44 read(4, "", 4096) = 0 9364 14:53:44 read(4, "", 8192) = 0 9364 14:53:44 read(4, "", 8192) = 0 9364 14:53:44 close(4) = 0 9364 14:53:44 munmap(0x7f9fa15b2000, 4096) = 0 9364 14:53:44 open("/home/finest09/php/PEAR.php", O_RDONLY) = 4 9364 14:53:44 fstat(4, {st_mode=S_IFREG|0644, st_size=35456, ...}) = 0 9364 14:53:44 close(4) = 0 9364 14:53:44 socket(PF_LOCAL, SOCK_STREAM, 0) = 4 9364 14:53:44 fcntl(4, F_GETFL) = 0x2 (flags O_RDWR) 9364 14:53:44 fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0 9364 14:53:44 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/mysql/mysql.sock"}, 110) = 0 9364 14:53:44 fcntl(4, F_GETFL) = 0x802 (flags O_RDWR|O_NONBLOCK) 9364 14:53:44 fcntl(4, F_SETFL, O_RDWR) = 0 9364 14:53:44 setsockopt(4, SOL_IP, IP_TOS, [8], 4) = -1 EOPNOTSUPP (Operation not supported) 9364 14:53:44 setsockopt(4, SOL_SOCKET, SO_KEEPALIVE, [1], 4) = 0 9364 14:53:44 poll([{fd=4, events=POLLIN|POLLPRI}], 1, 60000) = 1 ([{fd=4, revents=POLLIN}]) 9364 14:53:44 recvfrom(4, "J\0\0\0\n5.6.27\0\374\217\0\0T;i#m|I5\0\377\367\300\2\0\177\200\25\0\0\0\0\0\0\0\0\0\0oNx5<m1LhJv6\0mysql_native_password\0", 16384, 0, NULL, NULL) = 78 9364 14:53:44 stat("/usr/share/mysql/charsets/Index.xml", {st_mode=S_IFREG|0755, st_size=18305, ...}) = 0 9364 14:53:44 open("/usr/share/mysql/charsets/Index.xml", O_RDONLY) = 5 9364 14:53:44 read(5, "<?xml version='1.0' encoding=\"utf-8\"?>\n\n<charsets max-id=\"99\">\n\n<copyright>\n Copyright (c) 2003-2005 MySQL AB\n Use is subject to license terms\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</copyright>\n\n<description>\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 "..., 18305) = 18305 9364 14:53:44 close(5) = 0 9364 14:53:44 futex(0x7f9fa0236a00, FUTEX_WAKE_PRIVATE, 2147483647) = 0 9364 14:53:44 sendto(4, "\255\0\0\1\205\242>\0\0\0\0@\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0finest09_admin\0\24\344M4\345v\261}\234\370\312\10\35\207.\377\315\24\216\v;mysql_native_password\0R\3_os\5Linux\f_client_name\10libmysql\4_pid\0049364\17_client_version\0065.6.27\t_platform\6x86_64", 177, 0, NULL, 0) = 177 9364 14:53:44 recvfrom(4, "\7\0\0\2\0\0\0\2\0\0\0", 16384, 0, NULL, NULL) = 11 9364 14:53:44 sendto(4, "\20\0\0\0\2finest09_brides", 20, 0, NULL, 0) = 20 9364 14:53:44 recvfrom(4, "\7\0\0\1\0\0\0\2\0\0\0", 16384, 0, NULL, NULL) = 11 9364 14:53:44 sendto(4, "\20\0\0\0\2finest09_brides", 20, 0, NULL, 0) = 20 9364 14:53:44 recvfrom(4, "\7\0\0\1\0\0\0\2\0\0\0", 16384, 0, NULL, NULL) = 11 9364 14:53:44 sendto(4, "\233\1\0\0\3INSERT INTO `users_2011` \n\n\t\t (`firstname` , `lastname` , `address` , `city` , `state` , `zipcode` , `phone` , `emailaddress` , `weddingdate` , `referral` , `comments`, `registereddatetime` , `chkspecialoffers`, `cwlife`) \n\n\t VALUES ('host','gator', '5005 mitcheldale st', 'houston', 'Texas', '77002', '(866) 964-2867', 'cubecitytest@gmail.com', '12/31/2015', 'Magazine', 'test','2015-12-29 14:53:44', '', '');", 415, 0, NULL, 0) = 415 9364 14:53:44 recvfrom(4, "\t\0\0\1\0\1\374\367\5\2\0\0\0", 16384, 0, NULL, NULL) = 13 9364 14:53:44 access("/includes/header_vendors.php", F_OK) = -1 ENOENT (No such file or directory) 9364 14:53:44 write(1, "Status: 302 Moved Temporarily\r\n", 31) = 31 9364 14:53:44 write(1, "X-Powered-By: PHP/5.2.17", 24) = 24 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "Expires: Thu, 19 Nov 1981 08:52:00 GMT", 38) = 38 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0", 77) = 77 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "Pragma: no-cache", 16) = 16 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "location: /error.php", 20) = 20 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "Content-type: text/html", 23) = 23 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "\r\n", 2) = 2 9364 14:53:44 write(1, "\n\t\t<div id=\"topbanner\">\n\n \t\n\n </div>\n\n\t\t<div id=\"wrapper\">\n\n \t<div id=\"content\">\n\n \t <h1 class=\"title\">Thank You</h1>\n\n <p><a href=\"images/PlanYourWedding12-12.pdf\" target=\"_blank\"><img src=\"images/download-button2.gif\" border=\"0\" /><br />\n\n </a></p>\n\n <p>Be sure to browse the rest of our website to find your <a href=\"reception/index.php\">we", 414) = 414 9364 14:53:44 write(1, "dding and reception venue</a>, <a href=\"vendors/photographers.php\">photography</a>, <a href=\"vendors/floral.php\">floral</a>, <a href=\"vendors/cakes.php\">cake</a> and <a href=\"vendors/index.php\">more</a>!</p>\n\n <p> </p>\n\n <p> </p>\n\n \t </div>\n\n</div>\n\n", 293) = 293 9364 14:53:44 access("/includes/footer.php", F_OK) = -1 ENOENT (No such file or directory) 9364 14:53:44 open("error_log", O_WRONLY|O_CREAT|O_APPEND, 0644) = 5 9364 14:53:44 write(5, "[29-Dec-2015 14:53:44] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/finest09/public_html/thankyou.php:235) in /home/finest09/public_html/thankyou.php on line 255\n", 215) = 215 9364 14:53:44 close(5) = 0 9364 14:53:44 write(1, "<br />\n<b>Warning</b>: Cannot modify header information - headers already sent by (output started at /home/finest09/public_html/thankyou.php:235) in <b>/home/finest09/public_html/thankyou.php</b> on line <b>255</b><br />\n", 222) = 222 9364 14:53:44 write(1, "\t\n\n", 3) = 3 9364 14:53:44 pwrite(3, "free_wedding|a:17:{s:12:\"form_token_s\";s:132:\"YTozOntzOjEwOiJ0b2tlbl9jb2RlIjtpOjIwNTI7czoxMDoidG9rZW5fc3RyZyI7czo4OiJibEFkZUJsYSI7czoxNDoidG9rZW5fZXhwX2RhdGUiO2k6MTQ1MTQyMzMxMjt9\";s:10:\"form_token\";s:132:\"YTozOntzOjEwOiJ0b2tlbl9jb2RlIjtpOjIwNTI7czoxMDoidG9rZW5fc3RyZyI7czo4OiJibEFkZUJsYSI7czoxNDoidG9rZW5fZXhwX2RhdGUiO2k6MTQ1MTQyMzMxMjt9\";s:11:\"form_return\";s:0:\"\";s:9:\"firstname\";s:4:\"host\";s:8:\"lastname\";s:5:\"gator\";s:7:\"address\";s:19:\"5005 mitcheldale st\";s:4:\"city\";s:7:\"houston\";s:5:\"state\";s:5:\"Texas\";s:7:\"zipcode\";s:5:\"77002\";s:5:\"phone\";s:14:\"(866) 964-2867\";s:12:\"emailaddress\";s:22:\"cubecitytest@gmail.com\";s:10:\"date_month\";s:2:\"12\";s:8:\"date_day\";s:2:\"31\";s:9:\"date_year\";s:4:\"2015\";s:8:\"referral\";s:8:\"Magazine\";s:8:\"comments\";s:4:\"test\";s:11:\"weddingdate\";s:10:\"12/31/2015\";}error|N;", 799, 0) = 799 9364 14:53:44 close(3) = 0 9364 14:53:44 rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f9f9c5b66a0}, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f9f9c5b66a0}, 8) = 0 9364 14:53:44 sendto(4, "\1\0\0\0\1", 5, 0, NULL, 0) = 5 9364 14:53:44 shutdown(4, SHUT_RDWR) = 0 9364 14:53:44 close(4) = 0 9364 14:53:44 rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f9f9c5b66a0}, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f9f9c5b66a0}, 8) = 0 9364 14:53:44 setitimer(ITIMER_PROF, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0 9364 14:53:44 munmap(0x7f9f9a229000, 2124576) = 0 9364 14:53:44 munmap(0x7f9f9a430000, 2538648) = 0 9364 14:53:44 munmap(0x7f9f9a69c000, 2477728) = 0 9364 14:53:44 munmap(0x7f9f9a8f9000, 2198648) = 0 9364 14:53:44 brk(0x1a87000) = 0x1a87000 9364 14:53:44 munmap(0x7f9f9adc0000, 2189792) = 0 9364 14:53:44 munmap(0x7f9f9ab12000, 2808944) = 0 9364 14:53:44 exit_group(0) = ? 9364 14:53:44 +++ exited with 0 +++