Jump to content

reed0427

Members
  • Posts

    82
  • 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

Newbie

Newbie (1/14)

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

Recent Badges

0

Reputation

  1. So what kind of options do we have?
  2. 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
  3. 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
  4. 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
  5. Still getting the same error message
  6. 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!
  7. 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'); } } }
  8. 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.
  9. 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?
  10. 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?
  11. Just changing the news. Not making any changes to the module.
  12. He just switched servers (or something like that) so I’m guessing it didn’t go as smoothly as he had hoped. He’s a genius though and will have it sorted soon, I’m sure 👍
  13. If I try to update the NEWS section of my website, I get this message: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at webmaster@historicairlinegroup.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request. Any ideas? David Reed/Historic Airline Group
  14. So does the recaptcha update work here, or not? I've tried installing it and quite frankly, the knowledge needed to install it is way above my pay grade. So for most of this year we haven't had a single new member because of it. If it does work, would anyone like to try doing the update for us?
  15. Sounds like a plan, except I don't have the original contact.php file. Would it be copied anywhere?
×
×
  • Create New...