Jump to content

reed0427

Members
  • Posts

    86
  • Joined

  • Last visited

1 Follower

Profile Information

  • Gender
    Male
  • Location
    St Charles MO USA

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

reed0427's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. The Historic Airline Group was formed to provide a historical source of classic airline schedules for the flight sim enthusiast. Using actual, classic airline timetables, we now have over 10,000 flights for 80 airlines worldwide. Flights cover a whole range of aircraft, from the DC3 to the 747. Whether it's PanAm 707's and DC7's, United DC6's and DC8's, or BOAC Comets, we have a wide assortment of flights to choose from. Recently we upgraded to phpVMS V7.0, and the options and resources we can provided are almost limitless. The best part is it's free. We have no membership fees. If you are lookng to try the classics, or are already a classic airline enthusiast, the Historic Airline Group has what you need.
  2. Yes, my earlier comments are no longer applicable. It's a learning process..
  3. Manually doesn't work either.
  4. Today, myself (the website owner) and others have tried to file a pilot report (PIREP) and only get a message "There was an error adding your PIREP : Schedule does not exist. Please update this manually." We can bid on a flight, but we can't submit a PIREP. What is the issue? David Reed Historic Airline Group Welcome - Historic Airline Group
  5. So what kind of options do we have?
  6. Logged into my admin page, but for some reason I can't add an aircraft, or modify an existing aircraft. Little help? David Reed Historic Airline Group historicairlinegroup.com
  7. We have phpVMS 5.5.2.72 installed. When the MariaDB update came along recently (it was updated from 10.1 to 10.2), we lost a lot of our admin functions, and since then we have not been able to do any updates to our schedule, etc. Can you explain more about how this MariaDB update affected v5.5.2.72, and what is being done to correct it? Not being able to update our schedules, etc, is a real problem. David Reed President, Historic Airline Group
  8. this is from the error log in the public_html/admin folder: [24-Oct-2019 01:48:53 UTC] PHP Warning: Invalid argument supplied for foreach() in /home/historic/public_html/admin/modules/PIREPAdmin/PIREPAdmin.php on line 130 [24-Oct-2019 01:48:59 UTC] PHP Warning: Invalid argument supplied for foreach() in /home/historic/public_html/admin/modules/PIREPAdmin/PIREPAdmin.php on line 130 Of course, those are just from recent I'll PM you
  9. Still getting the same error message
  10. We’re on version 2.1 ill check those things next time I get home, but a web site guru I am not by any stretch of the imagination!
  11. You mean this? <?php /** * phpVMS - Virtual Airline Administration Software * Copyright (c) 2008 Nabeel Shahzad * For more information, visit www.phpvms.net * Forums: http://www.phpvms.net/forum * Documentation: http://www.phpvms.net/docs * * phpVMS is licenced under the following license: * Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) * View license.txt in the root, or visit http://creativecommons.org/licenses/by-nc-sa/3.0/ * * @author Nabeel Shahzad * @copyright Copyright (c) 2008, Nabeel Shahzad * @link http://www.phpvms.net * @license http://creativecommons.org/licenses/by-nc-sa/3.0/ */ class News extends CodonModule { public function index() { $this->ShowNewsFront(5); } // This function gets called directly in the template public function ShowNewsFront($count=5) { $sql='SELECT id, subject, body, postedby, UNIX_TIMESTAMP(postdate) AS postdate FROM ' . TABLE_PREFIX .'news ORDER BY postdate DESC LIMIT '.$count; $res = DB::get_results($sql); if(!$res) return; foreach($res as $row) { //TODO: change the date format to a setting in panel $this->set('subject', $row->subject); $this->set('body', $row->body); $this->set('postedby', $row->postedby); $this->set('postdate', date(DATE_FORMAT, $row->postdate)); $this->show('news_newsitem.tpl'); } } }
  12. Still cannot make changes, no matter how small, to my News section. I can make changes on the other various pages, but the front page news section cannot be changed.
  13. I am also thinking of dividing up the VA, but in a slightly different way. I'm looking to divide it into four divisions- Classic Props, Classic Jets, Classic Turboprops and Classic Cargo-Charter All I really need is to list four different .csv's so when you are on one page, you only see the schedule for that particular division. I'm thinking just created three more domains through fivedev, but is there additional cost at phpVMS?
  14. I'm thinking of splitting into two divisions and was wondering if I could divide the schedule into two parts and load them separately, so when you are in one division, you only see the schedule that pertains to that division.Is it possible, or do we need a separate web site from FiveDev?
  15. Just changing the news. Not making any changes to the module.
×
×
  • Create New...