Jump to content

david thompson

Members
  • Posts

    64
  • Joined

  • Last visited

Posts posted by david thompson

  1. We have tried nearly everything we can think of, the database user details are all ok and entered correctly, we cant even access /install/install.php, any help would be greatfully appricated

    regards

  2. Hello, I copyed this code into the profile_mail.tpl but only thing that works is the PIERP chart and the pie chart for the aircraft one doesnt show. Here is the code reagrds.

    <h3>Your Stats</h3>

    <?php

    /*

    Added in 2.0!

    */

    $chart_width = '800';

    $chart_height = '250';

    /* Don't need to change anything below this here */

    ?>

    <div align="center" style="width: 100%;">

    <div align="center" id="months_data"></div>

    </div>

    <br />

    <div align="center" style="width: 100%;">

    <div align="center" id="aircraft_data"></div>

    </div>

    <script type="text/javascript" src="<?php echo fileurl('/lib/js/ofc/js/swfobject.js')?>"></script>

    <script type="text/javascript">

    swfobject.embedSWF("<?php echo fileurl('/lib/js/ofc/open-flash-chart.swf');?>",

    "months_data", "<?php echo $chart_width;?>", "<?php echo $chart_height;?>",

    "9.0.0", "expressInstall.swf",

    {"data-file":"<?php echo actionurl('/pilots/statsmonthsdata/'.Auth::$userinfo->pilotid);?>"});

    <?php

    $chart_width = '800';

    $chart_height = '300';

    /* Don't need to change anything below this here */

    ?>

    swfobject.embedSWF("<?php echo fileurl('/lib/js/ofc/open-flash-chart.swf');?>",

    "aircraft_data", "<?php echo $chart_width;?>", "<?php echo $chart_height;?>",

    "9.0.0", "expressInstall.swf",

    {"data-file":"<?php echo actionurl('/pilots/statsaircraftdata/'.Auth::$userinfo->pilotid);?>"});

    </script>

  3. Hi everyone! I have started a VPS Teamspeak 3 server which has unlimited slots. I am selling you a teamspeak 3 server with your own connection address and unlimited slots for just £2.50 a month complete with maintance support.

    If interested or you would like more information please get into contact with me via

    WLM / MSN - david123u.tv@hpmail.com

    Skype - bfs.davidt

    Email: david123u.tv@hotmail.com

    Regards,

    David

  4. Hello, I have this and for some reason the flag and text doesnt line up? any ideas? my code is...

    <table width="700px" border="0" cellspacing="0" cellpadding="1">

    <?php

    echo '<td width="250px" valign="top">';

    echo '<table cellspacing="1" cellpadding="1" border="1">';

    echo '<th width="150px"><div align="left">Country Location</div></th>';

    echo '<th width="100px"><div align="center">Pilots</div></th>';

    $country_info = DB::get_results('SELECT COUNT(pilotid) as total, location FROM '.TABLE_PREFIX.'pilots GROUP BY location');

    foreach($country_info as $country)

    {

    echo '<tr>';

    echo '<td align= "left">';

    echo '<img src="'.Countries::getCountryImage($country->location).'" /> ';

    echo Countries::getCountryName($country->location);

    echo '</td>';

    echo '<td align="center">';

    echo ' ('.$country->total.')';

    echo '</td>';

    echo '</tr>';

    }

    echo '</table>';

    ?>

    regards

  5. Hello,

    I have make a flight on the new phpVMS 2.1.943, but I have problem's with Gross Revenue, Fuel Coast. The price is always 0 why??? I have set each fuel peice for airport at 1.1 etc and the price of the route but it doesnt register :unsure:

    I do all flight via a custom made kAcars

    Kindest Regards and Thank you!

  6. Hello, I am having trouble with the live map. We use KAcars to track flights and aeven after 12 hours after arrival and flight simulator and the KAcars application is shut down the flight still appear on the live map?

    Anyone any ideas?

    Regards

  7. bmilogowhite.png

    Press Release (United Kingdom, UK): On August 16th, 2010

    BMI Baby Virtual is an exciting up and coming VA created by CEO David Thompson and VCEO Kris Thomson

    in July 2010! We are getting prepared for our big launch on the 21st August at 11:00z.

    Pilot Applications will open at approx 11:01Z (12:01 UK Local) on Saturday August 16th at this present moment Staff Applications are open for more information please visit http://www.bmibaby-virtual.com/index.php/pages/staff;'>http://www.bmibaby-virtual.com/index.php/pages/staff; but as normal staff spaces are filling up fast!

    Visit our site which is currently in the process of being made more exciting with a custom made skin being launched shortly before openeing: http://www.bmibaby-virtual.com

    If you have any further questions, please contact us at

    http://www.bmibaby-virtual.com/index.php/contact or email

    ceo[at]bmibaby-virtual.com / vceo[at]bmibaby-virtual.com

    Regards,

    David Thompson (CEO)

    Kris Thomson (VCEO)

  8. <h3>Contact Us</h3>

    <form method="post" action="<?php echo url('/contact'); ?>">

    <table width='100%' border='0'>

    <tr>

    <td><strong>Name:</strong></td>

    <td>

    <?php

    if(Auth::LoggedIn())

    {

    echo Auth::$userinfo->firstname .' '.Auth::$userinfo->lastname;

    echo '<input type="hidden" name="name"

    value="'.Auth::$userinfo->firstname

    .' '.Auth::$userinfo->lastname.'" />';

    }

    else

    {

    ?>

    <input type="text" name="name" value="" />

    <?php

    }

    ?>

    </td>

    </tr>

    <tr>

    <td width="1%" nowrap><strong>E-Mail Address:</strong></td>

    <td>

    <?php

    if(Auth::LoggedIn())

    {

    echo Auth::$userinfo->email;

    echo '<input type="hidden" name="name"

    value="'.Auth::$userinfo->email.'" />';

    }

    else

    {

    ?>

    <input type="text" name="email" value="" />

    <?php

    }

    ?>

    </td>

    </tr>

    <tr>

    <td><strong>Subject: </strong></td>

    <td><input type="text" name="subject" value="<?php echo $_POST['subject'];?>" /></td>

    </tr>

    <tr>

    <td><strong>Recipient:</strong></td>

    <td><select name="recipient">

    <option value="ceo@bmibaby-virtual.net">David Thompson - CEO</option>

    <option value="vceo@bmibaby-virtual.net">Kris Thomson - Vice CEO</option>

    </select></td>

    </tr>

    <tr>

    <td><strong>Message:</strong></td>

    <td>

    <textarea name="message" cols='45' rows='5'><?php echo $_POST['message'];?></textarea>

    </td>

    </tr>

    <tr>

    <td width="1%" nowrap><strong>Security</strong></td>

    <td>

    <?php

    echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error);

    ?>

    </td>

    </tr>

    <tr>

    <td>

    <input type="hidden" name="loggedin" value="<?php echo (Auth::LoggedIn())?'true':'false'?>" />

    </td>

    <td>

    <input type="submit" name="submit" value='Send Message'>

    </td>

    </tr>

    </table>

    </form>

  9. Ok, added but I get this error... when someone sends

    This message was created automatically by mail delivery software.

    A message that you sent could not be delivered to one or more of its

    recipients. This is a permanent error. The following address(es) failed:

    ceo@bmibaby-virtual.net

    No Such User Here

    regards

  10. I am looking for someone to design me a skin for my virtual airline

    Designer/Website Requirements

    - Previous Experience

    - Must design in at least PHPVMS compatibility

    - Easy Interaction/Functionality

    - Web Browser Friendly

    - Quick Developer, Easy to work with, Very easy to Contact

    Anyone Interested In developing for us MUST accept Paypal for payment.

    Please email, PM me, or add me on msn, skype or yahoo which are all on my profile page.

    Regards

×
×
  • Create New...