Hi Guys, I'm seeing this in my logs:
[Tue Sep 07 23:24:43 2010] [warn] [client 59.167.223.XXX] mod_fcgid: stderr: 2 => '9ce34f1f91ed9b4031f7fd9490a3d in /var/www/virtual/tribily.com/htdocs/piwik/core/Tracker/Db/Pdo/Mysql.php on line 178, referer: http://tribily.com/ The code of that php looks like this: 143 /** 144 * Executes a query, using optional bound parameters. 145 * 146 * @param string Query 147 * @param array|string Parameters to bind array('idsite'=> 1) 148 * 149 * @return PDOStatement or false if failed 150 * @throws Exception if an exception occured 151 */ 152 public function query($query, $parameters = array()) 153 { 154 if(is_null($this->connection)) 155 { 156 return false; 157 } 158 159 try { 160 if(self::$profiling) 161 { 162 $timer = $this->initProfiler(); 163 } 164 165 if(!is_array($parameters)) 166 { 167 $parameters = array( $parameters ); 168 } 169 $sth = $this->connection->prepare($query); 170 $sth->execute( $parameters ); 171 172 if(self::$profiling) 173 { 174 $this->recordQueryProfile($query, $timer); 175 } 176 return $sth; 177 } catch (PDOException $e) { 178 throw new Exception("Error query: ".$e->getMessage() . " 179 In query: $query 180 Parameters: ".var_export($parameters, true)); 181 } 182 } Any idea what could be up? I tried googling "mod_fcgid: stderr: 2" but no luck.. -- Walter Heck -- Checkout my new startup: Server Monitoring as a Service @ http://tribily.com ------------------------------------------------------------------------------ This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge 2010. http://p.sf.net/sfu/intel-thread-sfd _______________________________________________ Mod-fcgid-users mailing list Mod-fcgid-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mod-fcgid-users