Jump to content

Eicosav

Members
  • Posts

    42
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Eicosav's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Eicosav

    Problem!

    Here is: phpVMS Virtual Airline Administration Software Install Check get(PHPVMS_API_SERVER.'/version'); if($contents == '') { $error = $file->errors[count($file->errors)-1]; error('Connection failed', 'Could not connect to remote server - error is "'.$error.'"'); } else { success('OK', 'Can contact outside servers'); } unset($file); /* Simple XML? */ echo ' '; echo 'Checking for SimpleXML module... '; if(function_exists('simplexml_load_string') == true) { success('OK', 'SimpleXML module exists!'); } else { error('Fail', 'SimpleXML module doesn\'t exist or is not installed. Contact your host'); } /* File hashes check */ echo ' '; echo 'Checking file hashes for corrupt or mismatched files '; $fp = fopen(HASH_LIST, 'r'); if(!$fp) { error('Fatal', 'Could not read '.HASH_LIST); exit; } $total = 0; $errors = 0; while(!feof($fp)) { $line = fgets($fp); $line = trim($line); if(empty($line)) continue; fscanf($fp, '%s %s', $checksum, $file); $total ++; $file = str_replace('*./', '../', $file); if($file == '../core/local.config.php' || substr_count($file, 'unittest') > 0 || empty($file)) { continue; } if(!file_exists($file)) { $errors++; error('Error', "{$file} doesn't exist"); continue; } $calc_sum = md5_file($file); $file = str_replace('../', '/', $file); # make pretty if($calc_sum === false) { $errors++; error('Checksum failed', "{$file} - permissions might be incorrect!"); continue; } if($calc_sum != $checksum) { $errors++; error('Checksum failed', "{$file} did not match, possibly corrupt or out of date"); continue; } $file = ''; } if($errors == 0) { success('OK', 'No errors found!'); } echo " -- Checked {$total} files, found {$errors} errors "; ?>
  2. Eicosav

    Problem!

    I have the root acess, tell me what to do.
  3. Eicosav

    Problem!

    What I have to do to correct this?
  4. Eicosav

    Problem!

    Still having problems.
  5. Eicosav

    Problem!

    I'm still having this problem. I'm sure that it isn't caused by the free host.
  6. Eicosav

    Problem!

    Hello folks, I had some problems during the installation process. I'm able to acess the index page, but when I try to do anythin in this page (like acess the pilots, or live map) a message like this appears: Warning: include(core/codon.config.php): failed to open stream: Operation not permitted in /www/zxq.net/e/i/c/eicosairlinesvirtual/htdocs/index.php on line 40 Warning: include(): Failed opening 'core/codon.config.php' for inclusion (include_path='.:/usr/lib/php') in /www/zxq.net/e/i/c/eicosairlinesvirtual/htdocs/index.php on line 40 Fatal error: Class 'Config' not found in /www/zxq.net/e/i/c/eicosairlinesvirtual/htdocs/index.php on line 42 What I have to do?
  7. How can I do this? P.S.: I Use FSACARS
  8. Hello folks, I want to know if is it possible to automatically acept my pilots' pireps? Without I have to accept.
  9. Thank you for the tips... Do you have MSN (Messenger) or Skype? I have some more questions to ask you...
  10. Eicos Ailines Virtual BRAZIL Hello Folks, I had some problems here to build my own VA... I asked a lot here, and the Adiministrators solved all my problems. "Thank you all!". Now, my VA is almost finished, but i still have to do somethings, but here: Eicos Airlines Virtual you can see how my work is going. Give a little opnion about my project if you can! The big oppening it will be on 06/01/2010, I'll tell here.
  11. Thank you, problem solved!
  12. Ok I did it and worked... What aboub the other problems?
  13. there isn't any local.config.php there... there are: app.config.php and codon.config.php and bootstrap.inc.php just this files involving congig
×
×
  • Create New...