Jump to content

Tylor Eddy

Members
  • Posts

    275
  • Joined

  • Last visited

Everything posted by Tylor Eddy

  1. Gday Guys Today i added a few test schedules into my website, i noticed that as with the aircraft in the admin panel, the schedules were also not showing, but no big deal, i could go into the tables directly to edit them, but after adding the schedules i went into the pilot center to view them, and only one shows up, they are all enabled, and are all inserted into the tables, so they are there, but only one of them shows for some reason, any help with this bug would be great ! cheers Tylor Eddy
  2. Gday Guys This may have come up already, but i did a forum search and could'nt find anything similar to what i was looking for, my aim, is to integrate the vatsim network statistics with my live to show all pilots on my live map, im aiming to get something similar to this site: http://www.deltava.org/flightboardmap.do?id=VATSIM&op=map anyone know how to do this, has it been done already? if so can someone please provide some instructions and source code. Thanks Tylor Eddy
  3. thats great, i just need some help on implementing it into my pilots_list.tpl file.
  4. Gday guys I am interested in creating a CSS style table for my pilot roster page similar to this one http://www.w3schools.com/css/css_table.asp, except instead of green and white, im after red and white. Anyone able to shed some light into how i can do this? <tr class="odd"> <td>...</td> ... </tr> <tr> <td>...</td> ... </tr> i found this peice of code, but im unsure how to integrate it, i want it to automatically do the horizontal zebra pattern. Cheers
  5. thanks, ill ask them and see if they can change the setting.
  6. Gday All Firstly, id like to say thankyou for sharing this awesome skin, very nice job I'm having a few teething issues though both can be seen on my test site http://qantastest.net16.net/index.php/ the first one is the registration page, i get a php error PHP Error Message Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/home/a8284294/public_html//lib/skins/brilliancev1/<h3>Registration</h3> <p>Welcome to the registration form for Qantas Virtual. After you register, you will be notified by a staff member about your membership.</p> <form method="post" action="http://qantastest.net16.net/index.php/registration"> <dl> <dt>First Name: *</dt> <dd><input type="text" name="firstname" value="" /> </dd> <dt>Last Name: *</dt> <dd><input type="text" name="lastname" value="" /> </dd> <dt>Email Address: *</dt> <dd><input type="text" name="email" value="" /> </dd> <dt>Select Airline: *</dt> <dd> <select name="code" id="code"> in /home/a8284294/public_html/core/classes/TemplateSet.class.php on line 96 im unsure of the cause of this error, and any help would be appreciated. also i have a problem with the pilots page, not showing any information at all once again, any help will be greatly appreciated Thanks Tylor Eddy
  7. yep it was already set to debug mode, i checked the log, no errors , and no fsacars errors, must be an error on my behalf, ill try again and pay even more attention this time, ill be back if it still doesnt work . Thanks
  8. Gday I could find any posts with issues similar to mine so im gonna post it up here. With my live map i cant get it to connect and display pilots. i am using FSacars and followed the tutorial about connecting the map to the sim but i just wont work for me. Maybe you know the cause. forgot to mention it worked on an older version fine 1.27 something and now it wont, im using 2.0.854 at the moment Also is there any way to change the update rate ? Thanks
  9. ok ive got it now, thanks
  10. Ok, thats what im after, just cant find the place to manually change em, is it done in the admin center?
  11. Ok what will setting it to false do ?
  12. Tylor Eddy

    Ranks

    Gday I wanted to know if the ranks, instead of building up just an amount of hours, i wanted to know if it can be awarded as well as the hours. im having an exam or set of exams that needed to be completed before they can go up a rank so i needed to have both of these options instead of them just building up hours. Thanks
  13. <h3><?php echo $title?></h3> <?php if(!$allpilots) { echo 'There are no pilots!'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Pilot ID</th> <th>Name</th> <th>Rank</th> <th>Flights</th> <th>Hours</th> </tr> </thead> <tbody> <?php foreach($allpilots as $pilot) { /* To include a custom field, use the following example: <td width="10%"> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ ?> <tr> <td width="10%"><a href="<?php echo SITE_URL?>/index.php/profile/view/<?php echo $pilot->pilotid?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td width="10%"> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td width="10%"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td> <td width="10%"><?php echo $pilot->totalflights?></td> <td width="10%"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <?php } ?> </tbody> </table>
  14. sorry, im having no luck here. i understand what its doing, but i dont understand how to implement it to my bit of code. i gave it a shot but it didnt budge.
  15. so in other words, ( i think, im not sure ) but for ever <td> i change them to <td width="25%"> then they all have to be the same so they are aligned? what do you mean by they have to equal up to 100% thanks Sorry, but im still learning the loops.
  16. Thanks, unfortunately i couldn't get it to line up correctly. it's a bit more complicated for me. here's what my pilot_list.tpl folder looks like now <h3><?php echo $title?></h3> <?php if(!$allpilots) { echo 'There are no pilots!'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Pilot ID</th> <th>Name</th> <th>Rank</th> <th>Flights</th> <th>Hours</th> </tr> </thead> <tbody> <?php foreach($allpilots as $pilot) { /* To include a custom field, use the following example: <td> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ ?> <tr> <td width="1%" nowrap><a href="<?php echo SITE_URL?>/index.php/profile/view/<?php echo $pilot->pilotid?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td> <td><?php echo $pilot->totalflights?></td> <td><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <?php } ?> </tbody> </table> Thanks for all the help so far. Hopefully we can work out this little delema now
  17. Ok , but what file am i looking at? where is the roster located ?
  18. Ok can you explain this to me a bit simpler please. Im new to this manual coding lol. Thanks for all your help so far Love PhpVMS!
  19. ok, what do i edit?, and how do i fix the parent <div> ?
  20. heres my problem
  21. ok i started from scratch lol, i have my default nav bar, but i want to add a CSS nav bar but im scared ill loose everything again, can someone help me do this ? as i havent got a clue if what im doing is right or wrong, still a beginner at website design, but keen to learn.
  22. This idea would add a bit more realism, what about jumpflights ? can they be implemented too ?
  23. Gday Guys Can someone point me in the right direction with this. My Roster and footer are not centered correctly(only on the Pilot Roster Page for some reason). Im not sure what files need to be edited. Thanks
  24. i have a brand new navigation system which i got from http://www.cssmenumaker.com/ its all set up and i changed the directories in core_navigation.tpl, it worked, but only on the frontpage for some reason, then i tried some editing, and unfortuanely forgot to back up and now ive lost the menubar and my banner.
  25. ive lost my banner and nav bar now, can someone please help me, i have no idea what i did wrong.
×
×
  • Create New...