Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. Do you mean the favicon? Which template are you using?
  2. servetas

    PHP 5.5

    Add it on your local.config.php file.
  3. Ok, this version of phpVMS is not compatible with the PHP version which is installed on your server. Try downloading phpVMS via here.
  4. Where did you download this version from? Before making the last upload, did you try to re download it in case there are any corrupted files?
  5. Use this: <?php class CreditsData extends CodonData { public static function get_credit($id) { $query = "SELECT * FROM ".TABLE_PREFIX."credits WHERE id=$id"; return DB::get_row($query); } public static function get_all_credits() { $query = "SELECT * FROM ".TABLE_PREFIX."credits ORDER BY name DESC"; return DB::get_results($query); } public static function get_active_credits() { $query = "SELECT * FROM ".TABLE_PREFIX."credits WHERE active = '1' ORDER BY name DESC"; return DB::get_results($query); } public static function save_new_credit($name, $description, $image, $link, $active) { $query = "INSERT INTO ".TABLE_PREFIX."credits (name, description, image, link, active) VALUES('$name', '$description', '$image', '$link', '$active')"; DB::query($query); } public static function save_edit_credit($name, $description, $image, $link, $active, $id) { $query = "UPDATE ".TABLE_PREFIX."credits SET name='$name', description='$description', link='$link', image='$image', active='$active' WHERE id='$id'"; DB::query($query); } public static function delete_credit($id) { $query = "DELETE FROM ".TABLE_PREFIX."credits WHERE id='$id'"; DB::query($query); } }
  6. Open your core/common/CreditsData.class.php file and where: public function replace with: public static function
  7. Go to the admin center->general settings and press "Save Settings". Which template were you using? Try to change back to crystal and check if the template is shown now.
  8. Open your core/local.config.php file. How the file starts? Are there any characters before the <?php open tag?
  9. Have you added the aircraft with code "XPI" on your phpVMS?
  10. http://forum.phpvms.net/topic/23473-fatal-error-when-installing/#entry123746
  11. Unfortunately it is not possible to offer support for something which we do not have access to. I assume that this is a payware phpVMS module. I would suggest you getting in touch with the developer of the module. He will be able to assist you.
  12. Via visiting the url you have posted I understand that you have not uploaded phpVMS files. Download phpVMS via here.
  13. local.config.php is empty because you have not processed with the phpVMS installation. Re-upload the files, visit your website url and follow the installation steps in this page.
  14. The aircraft range field is just informational as far as I remember. The unit is based on your phpVMS settings set on your local.config.php file: Config::Set('UNITS', 'nm'); # Your units: nm, mi or km
  15. What is your website url? Can you give examples of the schedule and the pireps filled for that schedule? I suspect that you are not using a correct flightcode when you file a pirep and as a result the system does not count it.
  16. What is the link you are trying to use for the rank image? Also, is the logo you uploaded as topbanner titled as "topbanner.jpg"? Pay attention to the .jpg extension.
  17. Yes, this is because you are using a php version > 5.3. Try downloading phpVMS via here.
  18. Double check the details you are using to install your website (the database details). It seems that the database host field is not correct. Contact your web hosting provider, they will be able to let you know which host you have to use. GoDaddy is not using localhost as far as I remember.
  19. servetas

    Help

    It would be great if you could use more descriptive titles in your posts. Have you set up all the permissions for the database user over the database you would like to use-access?
  20. What is your website url? Hours should normally get updated as soon as you accept a pirep. As for the total hours, they are cached in the system for a few minutes and as a result when you accept a pirep they might not added immediately on the va total hours. The same applies to the rest of the va statistics too. Have you tried waiting in order to see if they get updated without clearing the cache?
  21. Which phpVMS version have you installed on your web hosting plan? As far as I know the latest phpVMS version developed by simpilot is compatible with PHP 5.5.
  22. Hello, The module is not integrated with the default phpVMS acars map. It is a stand alone module which shows the pilots who are flying on IVAO, or VATSIM or both of them. It gets these data directly from each network. Also, you are able to select one icao code to check only. If your pilots are flying with different ICAO codes based on their flights, this will not fit your needs.
  23. Just to clarify that IPS does not have to do with PHP-Mods. PHP-Mods products and services can be found on our website: http://php-mods.eu/ I am moving this thread to the correct board.
  24. Smaller base of airports based on which region? The best thing you can do is removing the airports you do not need. It can be done through phpMYadmin if you do not want to delete them one by one.
×
×
  • Create New...