Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Posts posted by Nabeel

  1. I would recommend against using iframes...

    For forums, they have their own skinning usually, similar to the way phpVMS is done. Might be worth looking into (usually its just adding your divs in).

    I haven't designed it for wrapping etc, so you might run into probs..

  2. Yes they have to fill in the registration. I've changed it in the next version so it will warn you if there's no aircraft filled in (it will show up)

    I'm not sure if that's your issue though. Are you sure the reports are reaching the site? Do a quick 5 min flight with everything filled in to see if it works.

    If aircraft is your issue, a temp fix for now:

    core/common/pirepdata.class.php, line 60ish:

    INNER JOIN '.TABLE_PREFIX.'aircraft a ON a.id = p.aircraft

    Change that INNER to LEFT so it reads:

    LEFT JOIN '.TABLE_PREFIX.'aircraft a ON a.id = p.aircraft

  3. According to site referrals, it seems as though there about 60+ VAs now using phpVMS in one form or another. I would like to build a list, but make it voluntary to add your VA to the mix. This list will be automatically aggregated on another page.

    Put your entry as:

    Virtual Airline Name - Website Address

    No other comments please, just the name and address :)

  4. You'll have to adjust the table CSS to fix that. Same with the search.To have them all showing, mess with the HTML in the schedule_searchform.tpl

    As for the aircraft flight, that's a known bug and been fixed in the next version.

  5. Ok, find that sscanf() line, around line 499,

    replace that line and the next one with this:

    $txtcolor = str_replace('#', '',  Config::Get('SIGNATURE_TEXT_COLOR'));
    $color = sscanf($txtcolor, '%2x%2x%2x');
    $textcolor = imagecolorallocate($img, $color[0], $color[1], $color[2]);

×
×
  • Create New...