Administrators Nabeel Posted March 11, 2010 Administrators Report Share Posted March 11, 2010 codonwebservice fix, returned data on post View more details, download from here Link to comment Share on other sites More sharing options...
Moderators mark1million Posted March 11, 2010 Moderators Report Share Posted March 11, 2010 I get the following, Checking PHP version [OK] PHP version is 5.2.x Checking connectivity... [OK] Can contact outside servers Checking for SimpleXML module... [OK] SimpleXML module exists! Checking file hashes for corrupt or mismatched files [Checksum failed] /core/classes/CodonWebService.class.php did not match, possibly corrupt or out of date [Error] /lib/js/jquery.form.js doesn't exist I would really like to get to grips with git but after watching that quick demo im still not confidant. Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 11, 2010 Author Administrators Report Share Posted March 11, 2010 Can you pastebin: /core/classes/CodonWebService.class.php I wonder why it tagged that as different. Maybe I forgot the generate hash, weird. Git a bit more flexible than SVN. I just don't like how it does hashs, etc. I might still switch to bitbucket, which is then another switch.. lol. But we'll see. I want to move away from SVN, my local repository is getting huge and slow Link to comment Share on other sites More sharing options...
Moderators mark1million Posted March 11, 2010 Moderators Report Share Posted March 11, 2010 This is what i have, <?php /** * Codon PHP Framework * www.nsslive.net/codon * Software License Agreement (BSD License) * * Copyright (c) 2008 Nabeel Shahzad, nsslive.net * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * @author Nabeel Shahzad * @copyright Copyright (c) 2008, Nabeel Shahzad * @link http://www.nsslive.net/codon * @license BSD License * @package codon_core */ class CodonWebService { protected $type = 'curl'; protected $curl = null; protected $curl_exists = true; public $_separator = '&'; public $errors = array(); public $options = array( /*CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9) Gecko/2008052906 Firefox/3.0',*/ CURLOPT_FOLLOWLOCATION => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_AUTOREFERER => true, CURLOPT_CONNECTTIMEOUT => 30, CURLOPT_HEADER => false, CURLOPT_FOLLOWLOCATION => true); public function __construct() { # Make sure cURL is installed if(!function_exists('curl_init')) { $this->curl_exists = false; $this->error('cURL not installed'); } if($this->curl_exists == true) { if(!$this->curl = curl_init()) { $this->error(); $this->setType('fopen'); $this->curl = null; } $this->setType('curl'); @curl_setopt_array($this->curl, $this->options); } else { $this->curl = null; $this->setType('fopen'); } } public function __destruct() { if($this->curl) curl_close($this->curl); } /** * Internal error handler * * @param string $txt Error text */ protected function error($txt='') { if($txt != '') $last = $txt; else $last = curl_error($this->curl) .' ('.curl_errno($this->curl).')'; $this->errors[] = $last; } /** * Set the transfer type (curl or fopen). cURL is better * POST cannot be done by fopen, it will be ignored * * @param string $type curl or fopen * @return unknown */ public function setType($type = 'curl') { if($type != 'curl' && $type !='fopen') { $this->error('Invalid connection type'); return false; } $this->type = $type; } /** * Set the curl options, that are different from the default * * @param unknown_type $opt * @return unknown */ public function setOptions($opt) { if(!$this->curl) { $this->error('No valid cURL session'); return false; } curl_setopt_array($this->curl, $opt); } /** * Grab a URL, but use SSL. Returns the reponse * * @param url $url * @param array $params Associative array of key=value * @param string $type post or get (get by default) */ public function getSSL($url, $params, $type='get') { // set SSL options and then go curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, 0); $this->get($url, $params, $type); } /** * Grab a URL, return the reponse * * @param url $url * @param array $params Associative array of key=value */ public function get($url, $params='') { # Builds the parameters list if(is_array($params)) { $q_string = ''; foreach($params as $name=>$value) { $q_string .= $name.'='.urlencode($value).$this->_separator; } $q_string = substr($q_string, 0, strlen($q_string)-1); $url = $url.'?'.$q_string; } if($this->type == 'fopen') { if(strtolower(ini_get('allow_url_fopen')) == 'on') { return file_get_contents($url); } } if(!$this->curl || $this->curl == null) { $this->error('cURL not installed or initialized!'); return false; } curl_setopt ($this->curl, CURLOPT_RETURNTRANSFER, true); curl_setopt ($this->curl, CURLOPT_URL, $url); if(($ret = curl_exec($this->curl)) === false) { $this->error(); return false; } return $ret; } /** * Grab a URL, return the reponse, POST params * * @param url $url * @param array $params Associative array of key=value */ public function post($url, $params='') { if(!$this->curl) { $this->error('cURL not initialized'); return false; } //encode our url data properly if(is_array($params)) { foreach($params as $key=>$value) { $cleaned_params[$key] = urlencode($value); } } else { $cleaned_params = urlencode($params); } curl_setopt($this->curl, CURLOPT_POST, 1); curl_setopt($this->curl, CURLOPT_POSTFIELDS, $cleaned_params); curl_setopt ($this->curl, CURLOPT_RETURNTRANSFER, true); curl_setopt ($this->curl, CURLOPT_URL, $url); if(($ret = curl_exec($this->curl)) === false) { $this->error(); return false; } return $ret; } /** * Download a file from $url to the $tofile * * @param url $url URL of file to download * @param path $tofile Path of file to download to * @return unknown */ public function download($url, $tofile) { if($this->type == 'fopen') { if(strtolower(ini_get('allow_url_fopen')) == 'on') { if(file_put_contents($tofile, file_get_contents($url)) == false) { $this->error('Error getting file'); return false; } } } if(!$this->curl || $this->curl == null) return false; if(($fp = fopen($tofile, 'wb')) == false) { $this->error('Error opening '.$tofile); return false; } curl_setopt($this->curl, CURLOPT_BINARYTRANSFER, true); curl_setopt($this->curl, CURLOPT_FILE, $fp); curl_setopt ($this->curl, CURLOPT_URL, $url); if(($ret = curl_exec($this->curl)) === false) { $this->error(); unlink($tofile); return false; } } } Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 11, 2010 Author Administrators Report Share Posted March 11, 2010 Thanks, yeah, it looks fine, I probably messed up on the hash generator Link to comment Share on other sites More sharing options...
Moderators mark1million Posted March 11, 2010 Moderators Report Share Posted March 11, 2010 Oh by the way i managed to get the recaptcha working, i forgot the require_once in the Registration.php Link to comment Share on other sites More sharing options...
Thomas Posted March 14, 2010 Report Share Posted March 14, 2010 Ok Nabeel, Ive got a problem now When Pilots on my site send there reports on Xacars and FSacars it say successfull, However on FSPAX It gives an error saying unable to send bla bla bla... However even though Xacars and FSacars says they have sent, They dont show up on the website! So then, Guess what i did, I took the website back to the release version: 2.0.854 and they work fine! Bingo! Any help because i liked the new updates on ver 900! -Thomas. Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted March 14, 2010 Author Administrators Report Share Posted March 14, 2010 Ok Nabeel, Ive got a problem now When Pilots on my site send there reports on Xacars and FSacars it say successfull, However on FSPAX It gives an error saying unable to send bla bla bla... However even though Xacars and FSacars says they have sent, They dont show up on the website! So then, Guess what i did, I took the website back to the release version: 2.0.854 and they work fine! Bingo! Any help because i liked the new updates on ver 900! -Thomas. Anything in those debug logs? Several others are using without problems, though I have no personally tested it - there shouldn't be any changed at all to that code. Did it start at a specific revision? If it says sent but don't show up, seems like a DB issue.. so turn DEBUG_MODE to true and let it sit for a while. It should throw something in. Of course, the usual install/checkinstall and checkdb to see if there's anything funky there as well Link to comment Share on other sites More sharing options...
Thomas Posted March 14, 2010 Report Share Posted March 14, 2010 Anything in those debug logs? Several others are using without problems, though I have no personally tested it - there shouldn't be any changed at all to that code. Did it start at a specific revision? If it says sent but don't show up, seems like a DB issue.. so turn DEBUG_MODE to true and let it sit for a while. It should throw something in. Of course, the usual install/checkinstall and checkdb to see if there's anything funky there as well Nothing In the Logs, Yes there 777. Heres the check install, Theres 15 Errors phpVMS Virtual Airline Administration SoftwareInstall Check Checking PHP version [OK] PHP version is 5.2.x Checking connectivity... [OK] Can contact outside servers Checking for SimpleXML module... [OK] SimpleXML module exists! Checking file hashes for corrupt or mismatched files [Checksum failed] /install/templates/s3_setup_finished.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/common/PIREPData.class.php did not match, possibly corrupt or out of date [Checksum failed] /core/common/CentralData.class.php did not match, possibly corrupt or out of date [Checksum failed] /core/templates/fsfk_log_flightimages.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/profile_stats.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/fsfk_log_flightplan.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/fsfk_log_flightdata.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/email_pilot_retired.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/fsfk_vaconfig.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/login_passwordreset.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/templates/pirep_editform.tpl did not match, possibly corrupt or out of date [Checksum failed] /core/classes/CodonEvent.class.php did not match, possibly corrupt or out of date [Checksum failed] /admin/modules/Maintenance/Maintenance.php did not match, possibly corrupt or out of date [Checksum failed] /lib/js/jquery_essentials.js did not match, possibly corrupt or out of date [Checksum failed] /lib/js/ofc/js-ofc-library/ofc.js did not match, possibly corrupt or out of date -- Checked 164 files, found 15 errors Link to comment Share on other sites More sharing options...
Thomas Posted March 14, 2010 Report Share Posted March 14, 2010 Ok Then, Now theres only these two; [Checksum failed] /core/classes/CodonWebService.class.php did not match, possibly corrupt or out of date[Error] /lib/js/jquery.form.js doesn't exist Any ideas? -Thomas. Link to comment Share on other sites More sharing options...
TennShadow Posted March 14, 2010 Report Share Posted March 14, 2010 I just tested a FSPAX and a FSFK flight with build 900 and had no issues with either of them. Is this the only issues your are experiencing? Link to comment Share on other sites More sharing options...
Recommended Posts