Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeff

  1. You should be able to see where the other links are located at the top of your layout.tpl just after the <head> <head> <link rel='stylesheet' type='text/css' href='/menu/menu_style.css'> </head>
  2. 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?
  3. 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.
  4. Did we give up on this, or is this thread still open? I'd like to continue working on this if possible.
  5. Jeff

    1st Pilot

    Check in phpMyAdmin to see if 0001 exists in the database.
  6. That is something you need to discuss with Nabeel Shazad about.
  7. You have this link in your footer (http://desktopwallpaper-s.com/42/-/Family_Travel/), but you don't have a background image. Did you forget to put it in?
  8. 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>
  9. Wow! 7 schedules, and on a free host. Not a good start there bud.
  10. Depends on where you have the news item. If you have it on the side bar, you will place it in the layout.tpl if you have it on the front page, you will place it in the frontpage_main.tpl
  11. Jeff

    Schedules

    /* 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
  12. You should be able to do <td><?php echo $report->arricao; ?></td> If you are still having problems, do print_r($report) to see what variables are available to use.
  13. Double check your link. It should look like this <li><a href="<?php echo adminurl('/massmailer/mail_pilot'); ?>">Email Individual Pilot</a></li>
  14. Is there an update on this yet. Or maybe need a little help if I can?
  15. This has been gone over several times. Please search before posting.
  16. Just break the code up that you want to use, and place it where you want it to show.
  17. Aw Man! You lost your gorilla Roger.
  18. Holy Moly! Did you cut an artery? There sure is a lot of red on your site. Maybe you can go with a much more soothing blue.
  19. 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.
  20. 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.
  21. This looks like an easy fix. Try adding a </div> at the end of the custom page until it corrects itself. It usually only takes one, but, depending on your codes, it may require 2 or more. Sometimes, you might have too many </div>'s in there. Try that first, and then get back with your results.
  22. 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...