Jump to content

reed0427

Members
  • Posts

    82
  • Joined

  • Last visited

Posts posted by reed0427

  1. 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

  2. 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

  3. 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');
            }
        }
    }

  4. 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?

  5. 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?

  6. 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

  7. 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?

  8. I tried installing the newer V2 but failed miserably. In fact, I deleted part of our contact page and now the whole web site is down. Anyone that can help correct this, please contact me as soon as possible. Here’s the error message: 

    Parse error: syntax error, unexpected '<' in/home/historic/public_html/core/modules/Contact/Contact.php on line 24

  9. Good question! Wish I could answer that. On the Admin page, I open the News editing tab and right click on the current news, then click on Inspect Element (Q). In the picture below I have selected "Inspector" and got this info. In the second picture I have selected "Settings". Any help?

    ADMIN2_zpsxw2bwwil.jpg

     

    ADMIN1_zpsddsnzfjp.jpg

  10. Here's where it gets very complicated. In the hosting equation there is phpVMS, VACentral, cpanel and ServInt. Cpanel can't reset it, which seems strange. I'm not even sure what cpanel does. They sent me here: 
    https://tickets.cpanel.net/review/rp.cgi?e=DAVIDREEDBRT@GMAIL.COM&k=PhVc0S3t5MqZq5gE but that didn't work. They said ServInt is the host. I contacted via chat ServInt, and ServInt can reset it, but you have to join ServInt to do that ($$$). They won't do it over chat. Somewhere, somebody at phpVMS or VACentral already is a member and can reset it. Can anyone explain how this place is set up, and who can reset the password? For me and my partner, it's just very confusing as to who does what at VACentral.

  11. Can't select a flight. When I try to search schedules, nothing appears, whether I'm searching be departure airport, destination or aircraft type. Reloaded the flight schedule but still no luck. Monday morning issues?

    David Red

    Historic Airline Group

  12. Anyone know why I'm still getting these messages? I have 100+ pireps ready to submit that will not. I keep getting this message for each of them:

    FAILED exporting PIREP #18364 No response from API server

    This has been going on for a couple of weeks now.

×
×
  • Create New...