Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Jeff

  1. Can you upload the images and flash here so we can place them in our directories? I don't like the idea to have images linked to your site. This is just a precaution if you decide (at a later time) to remove and/or change your files. Also can this be moved to "Releases" please?

  2. Actually, this might be possible. About 8 months or so ago, there was a thread about having several skins. I'm not sure, but I think it was for pilots wanting to choose their own skin to use instead of what your default. You might want to search for it, and you might be able to figure something out that you are looking for. Not sure if having several skins for different pages would be a good idea though. It could really get confusing which .tpl file is where.

  3. Here's the code to show the image:

    <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" />

    Here is the whole code:

    <table width="100%" cellpadding="1" cellspacing="0">
    <thead>
    	<tr bgcolor="#003399">
    		<th colspan="3"><font color="#FFFFFF">My Awards</font></th>
    	</tr>
    </thead>
    
    <tbody>
    
                           <?php
                           if(!$allawards)
                           {
                                   echo 'No awards yet';
                           }
                           else
                           {       
    
                                   /* To show the image:
                                           <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" />
                                   */
    
                           ?>
                           <ul>
                                   <?php foreach($allawards as $award){ ?>
    
                             <tr bgcolor="#D8D8D8">
                               <td width="25%"><center><img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /></center></td>
                               <td width="25%"><?php echo $award->name ?></td>
                               <td width="50%"><?php echo $award->descrip ?></td>
                             </tr>
                                   <?php } ?></ul>  
                           </tbody>
                           </table>

  4. /*
    Skip over a route if it's not for this day of week
    Left this here, so it can be omitted if your VA
     doesn't use this. 
    
    Comment out these two lines if you don't want to.
    */
    
    /*	Check if a 7 is being used for Sunday, since PHP
    	thinks 0 is Sunday */
    $route->daysofweek = str_replace('7', '0', $route->daysofweek);
    
    if(strpos($route->daysofweek, date('w')) === false)
    	continue;
    
    /* END DAY OF WEEK CHECK */

    This should be in your schedule_results.tpl

  5. How do you port every time i do it says Notice: The template file "/customers/6/7/1/fastjetvirtual.co.uk/httpd.www//lib/skins/andreas09/header.tpl" doesn't exist in /customers/6/7/1/fastjetvirtual.co.uk/httpd.www/core/classes/TemplateSet.class.php on line 248

    Why does it say httpd.www and not http://www

    You might want to check the code to make sure that you have it linked correctly.

    • Like 1
  6. On the "home" page, it states you have three (3) aircraft types, but on the "Fleet" page, it states you only have two (2). Which is it?

    On the "Staff" page, there is an image missing (incorrectly linked) next to the E-mail.

    I think your "Ranks" and "Awards" could use some re-sizing, as they are a bit big.

    Missing images in the "Events" pages.

    Other than those, it looks very nice.

  7. You should install the latest version of phpVMS, not the Beta. The Beta is only used for testing, and to give feed-back of problems found with the Beta itself. Once the Beta testing is complete, Nabeel will announce a new version that will need to be installed.

    Q #1: Not sure what exactly you are asking here.

    Q #2: What points are you wanting to see?

    Q #3: You can "Export" your flight schedules from the Admin Center, and change your flight numbers. Once the changes have been made, simply import your schedules back into the database (via Admin Center), along with checking the box to delete previous schedules. Your schedules will then have the new flight numbers you changed. You can also import the schedules without checking the box to remove previous routes.

×
×
  • Create New...