Jump to content

BMI Baby HR

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by BMI Baby HR

  1. staff.png

    Contact: Michael Schwartz

    E-mail: hr@bmibaby-virtual.com

    A farewell to phpvms

    For the last few months BMI Baby Virtual has been fairly quiet. This is due to the fact that we have been developing our new custom system. Since BMI Baby Virtual was created over a year ago we have utilized the phpvms system. Our corporate offices have decided that in order to enhance our operations and expand it is necessary for us to develop our own system where we will have the maximum customization possible.

    We would like to thank all persons involved in the production and maintenance of phpvms. Without this system BMI Baby Virtual would not be where it is today. We are sad to leave this great community but are excited for the road ahead. On behalf of the BMI Baby Virtual corporate offices we extend a farewell to the phpvms community. We currently expect the new system and website to launch January 1st, 2012.

    --

    BMI Baby Virtual

    http://www.bmibaby-virtual.com/

  2. staff.png

    Dear FS Enthusiasts,

    As of 8/28/11 BMI Baby has launched their 2011 recruiting drive. BMI Baby Virtual is a virtual airline simulating the real world BMI Baby operations. We currently operate out of 4 hubs in the United Kingdom, serving over 100 destinations around Europe. BMI Baby boasts a fleet of 737's and works at serving you with the best a virtual airline can offer.

    What we offer:

    1. A custom ACARS system

    2. A community forum

    3. Private team speak server

    4. Fleet downloads

    5. Discount codes for FS2crew and UK2000 scenery

    6. Friendly community of over 100 pilots

    7. Fun schedule

    8. Great events

    9. Great staff

    10. So much more!

    BMI Baby Virtual operates the 737-300 and 737-500 however we also wish to cater to the widest community possible because of this will now be allowing the use of 737NG's because we realize pilots have easier access to these models and payware 737's often require the use of these newer models.

    Have any questions before joining? E-mail us at hr@bmibaby-virtual.com. Thanks and stay tuned for more information regarding the 2011 recruiting drive.

  3. I recommend getting Sony Vegas, if you don't want to buy it they have a 30 day free trial. It is a wonderful program also get the free program fs-recorder(it allows you to record one plane and then re-record with a new plane to get the whole two airplane deal etc. and more). ENB camera will also jazz things up.. Also you can always hire someone to make the video for you. I have a friend who charges but makes excellent videos(Note however that you can achieve a good video by yourself with practice that really is what it takes to make solid videos).

    The video below displays the ENB camera and fs-recorder in use

    One if his videos can be seen below:

  4. I really hate it when posts go into a drag-out, knock 'em, punch 'em debate about something real stupid to be arguing about. Can't these Forums be used for Positive results instead? This can go either way... "It is alright for members to belong to multiple Virtual Airlines, but it isn't okay to have CEO's belong to multiple VA's"? As I see it, this is a hobby. There shouldn't this much drama about someone wanting to join another VA while running another. Come on guys, REALLY!

    I agree with you Jeff. Not a word you wrote I don't agree with.

    Please remember everyone this is something we all share a passion for. FS is one of the purist hobbies out their don't turn this into Modern Warfare 2 on Xbox.

    Get along with each other and have fun sharing this great hobby with all!!!

    • Like 1
  5. Yeah, I am using our flight tracker which has a web browser to access the site:)

    Thanks for the feedback mark1million. It was the browser, chrome was unable to open it but explorer can.

    It's strange though I used to be able to get on the site with chrome.

  6. Hello I am currently unable to get onto my VA's website. Wierd thing is I seem to be the only one every one else is logging on fine. When I go to the URL I get an automatic download and then the website doesn't load. Below is what the download is: some php stuff.

    <?php

    /**

    * Codon PHP Framework

    * www.nsslive.net/codon

    * Software License Agreement (BSD License)

    *

    * Copyright © 2008 Nabeel Shahzad, nsslive.net

    * All rights reserved.

    *

    * Redistribution and use in source and binary forms, with or without

    * modification, are permitted provided that the following conditions

    * are met:

    *

    * 1. Redistributions of source code must retain the above copyright

    * notice, this list of conditions and the following disclaimer.

    * 2. Redistributions in binary form must reproduce the above copyright

    * notice, this list of conditions and the following disclaimer in the

    * documentation and/or other materials provided with the distribution.

    * 3. The name of the author may not be used to endorse or promote products

    * derived from this software without specific prior written permission.

    *

    * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR

    * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

    * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.

    * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,

    * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT

    * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,

    * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY

    * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT

    * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF

    * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

    *

    * @author Nabeel Shahzad

    * @copyright Copyright © 2008, Nabeel Shahzad

    * @link http://www.nsslive.net/codon

    * @license BSD License

    * @package codon_core

    */

    include 'core/codon.config.php';

    if(Config::Get('XDEBUG_BENCHMARK'))

    {

    $memory_start = xdebug_memory_usage();

    }

    $BaseTemplate = new TemplateSet;

    # Load the main skin

    $settings_file = SKINS_PATH.DS.CURRENT_SKIN . '.php';

    if(file_exists($settings_file))

    include $settings_file;

    $BaseTemplate->template_path = SKINS_PATH;

    Template::Set('MODULE_NAV_INC', $NAVBAR);

    Template::Set('MODULE_HEAD_INC', $HTMLHead);

    ob_start();

    MainController::RunAllActions();

    $page_content = ob_get_clean();

    $BaseTemplate->Set('title', MainController::$page_title .' - '.SITE_NAME);

    $BaseTemplate->Set('page_title', MainController::$page_title .' - '.SITE_NAME);

    if(file_exists(SKINS_PATH.'/layout.tpl'))

    {

    $BaseTemplate->Set('page_htmlhead', Template::Get('core_htmlhead.tpl', true));

    $BaseTemplate->Set('page_htmlreq', Template::Get('core_htmlreq.tpl', true));

    $BaseTemplate->Set('page_content', $page_content);

    $BaseTemplate->ShowTemplate('layout.tpl');

    }

    else

    {

    # It's a template sammich!

    $BaseTemplate->ShowTemplate('header.tpl');

    echo $page_content;

    $BaseTemplate->ShowTemplate('footer.tpl');

    }

    # Force connection close

    DB::close();

    if(Config::Get('XDEBUG_BENCHMARK'))

    {

    $run_time = xdebug_time_index();

    $memory_end = xdebug_memory_usage();

    echo 'TOTAL MEMORY: '.($memory_end - $memory_start).'<br />';

    echo 'PEAK: '.xdebug_peak_memory_usage().'<br />';

    echo 'RUN TIME: '.$run_time.'<br />';

    }

  7. Nabeel has created phpVMS in a way that no VA using base files has been hacked, simple as.

    Nabeel is very talented and is a great asset to the fs communtiy but sorry, saying it hasn't been hacked nor can it be is ridiculous I have never seen a malicious attack on the system because I don't look that stuff but I know people who have hacked their own phpvms sites to test them. With the right level of skill and time you can hack into government databases which are guarded by the most advanced walls.

    So if I connect the dotes: you saying phpvms can't be hacked but secure government databases can be then shoot Nabeel is on a gold mine holding the best protection out their and I expect him to be contracted by the US government and more soon.

    P.S. when pictures get uploaded causes a virus etc. that right there points out a flaw. If phpvms was "un-hackable" then that would happen the security walls would stop it dead in its tracks. The most advanced protection can be hacked.

    I garuntee if you read the book "hacking for dummies"(yes it is real and part of the popular series) and learn whats in their you could do damage to a phpvms based website.

    Once again phpvms doesn't get hacked often because no one wants to hack a virtual airline the people that try have really almost no experience

    I am not saying that phpvms is a poorly protected system nor am I saying to go buy hundreds in protection software, I am just saying by itself with no extra protection you leave yourself vulnerable to attack.

    • Like 2
  8. If you know what your doing you can incorporate all that stuff right into your site. Regardless phpvms really isn't all that secure. The reason why you all don't have many issues because people really are not looking to attack virtual airline websites. If I were to attack a site it would not be a virtual airline site, that is a waste. That is why I said above it was most likely an amateur.

    • Like 1
  9. Regularly check your error logs, i have posted about this kind of attack many times and shown examples of how my site was bombarded with over 1000 requests in under a minute.

    Don't use default install directories for php myadmin or the like, protect sensitive areas of your site with example fail2ban and ht password protection, doing all these little things add up to many layers of protection that should give you an edge.

    Also have and maintain and test your backup system that is imperative.

    Yeah these are not bad ideas. Fail2ban isn't too difficult to crack if you have experience but it will buff up your security a little bit. The best thing to do though is analyze where you are weak(by hacking yourself). As I said before look into php nuke it is more advanced and will give people problems when trying to break through your protection.

  10. I would recommend you hire someone with professional experience who is able to "hack your website". I mean this literally...doing this is the best way to prevent this from happening again.

    Hack the sh** out of your site until you can't do it anymore if you find the right person with experience they can hack you site and fix all gaps they find until they cannot do it anymore.

    Also I would expect this person to be an amateur to hack a VA so probably he used his own server etc. so back track that son of a ***** and bring his/her stuff down( I do not stand-by this as it is illegal).

    You may also want to check into php nuke which offers security enhancements.

    Sorry for any language.

  11. staff.png

    Job Title: Web Services Director

    Position Level: Staff

    Job Description: The Web Services Director is in charge of the maintainance of the BMI Baby Virtual website. He/She will be in charge of implenting new modules into the website and working with the current skin.

    Job Description Continued:

    - Adds/edits modules

    - Creates/edits skins

    - Works via the back end of the BMI Baby Virtual website

    - Updates website systems as needed/in charge of ACARS software

    Requirements:

    - Meet all current BMI Baby Virtual policies

    - Knowledge of both PHPVMS

    - Knowledge of the php language

    - Knowledge of HTML, XHTML

    - Ability to work with the back end of the web hosting services

    - Ability to edit skins

    - Experienced working with websites

    - Virtual Airline Staff experience(not required but strongly prefered)

    - Ability to cater to staff website requests.

    How to Apply: In order to apply for this position all applications must be sent to ( hr@bmibaby-virtual.com ).Included in these applications must be a self-developed resume in Microsoft Word Format. All experience with virtual aviation should be listed. Real World employment experience helps us best determine dedicated and responsible individuals however this is not required.

  12. staff.png

    BMI Baby Virtual is now working on starting a brand new training program to furthur enhance daily operation.

    Job Title: Training Director

    Position Level: Staff

    Job Description: The Training Director is responsible for the creation, directing, and moderating of the BMI Baby Virtual Training program. The Training Director not only develops the training program but will be the chief administrator of the program. This person shall personally train BMI Baby members in basic flight procedures along with specific airframe training. The current airframes operated by BMI Baby Virtual are as follows: B737-300, B737-500.

    Job Description Continued:

    - Creates Standard Operating Procedures(SOP's) directly relating to the training program

    - Updates such SOP's to comply with current flight standards and BMI Baby Virtual operations

    - Tracks pilot progress throught the training program

    - Issues certificates to pilots graduating from the training program

    Requirements:

    - Meet all current BMI Baby Virtual policies

    - Knoweldge of both VFR/IFR operations

    - Knoweldge of the Boeing 737's basic systems and operations

    - Real World Flight Experience(not required but preffered)

    - Knoweldge of BMI Baby operations

    - Ability to work with both staff and pilots

    - Experience working with groups

    - Virtual Airline Staff experience(not required but strongly preffered)

    - Ability to cater to a diverse group with all levels of aviation knoweldge

    How to Apply: In order to apply for this position all applications must be sent to ( hr@bmibaby-virtual.com ).Included in these applications must be a self-developed resume in Microsoft Word Format. All experience with virtual aviation should be listed. Real World employment experience helps us best determine dedicated and responsible individuals however this is not required.

  13. As BMI Baby suggested, who would administer and moderate the list? There would have to be measures in place to ensure the usage of the list wasn't abused, and this could quickly turn into a full time job. There would have to be some structure to rules on any system like this.

    This is always the toughest thing. It is the same issue behind controller feedback to pilots on the VATSIM network. I am a fan of this however many think moderation is impossible.

×
×
  • Create New...