Jump to content

Connor1994

Members
  • Posts

    167
  • Joined

  • Last visited

Everything posted by Connor1994

  1. Is there anyway to permanently make this the case, I have tried re-directing euroscotva.co.uk to www.euroscotva.co.uk although it doesn't work? Is there another way around this? Thanks
  2. Sounds good, hopefully someone will share
  3. Yeah, Just found out from out host, we have a daily cron job set up daily at 3.00AM now to do it! Thanks all for the suggestions [sOLVED]
  4. Checking phpvms_acarsdata...OK Checking phpvms_adminlog...OK Checking phpvms_aircraft...OK Checking phpvms_airlines...OK Checking phpvms_airports...OK Checking phpvms_awards...OK Checking phpvms_awardsgranted...OK Checking phpvms_bids...OK Checking phpvms_customfields...OK Checking phpvms_downloads...OK Checking phpvms_expenselog...OK Checking phpvms_expenses...OK Checking phpvms_fieldvalues...OK Checking phpvms_financedata...OK Checking phpvms_fuelprices...OK Checking phpvms_groupmembers...OK Checking phpvms_groups...OK Checking phpvms_navdata...OK Checking phpvms_news...OK Checking phpvms_pages...OK Checking phpvms_pilots...OK Checking phpvms_pirepcomments...OK Checking phpvms_pirepfields...OK Checking phpvms_pireps...OK Checking phpvms_pirepvalues...OK Checking phpvms_ranks...OK Checking phpvms_schedules...OK Checking phpvms_sessions...OK Checking phpvms_settings...OK Checking phpvms_updates...OK
  5. Yeah I think its the host, its the same for my friends VA, the perm change doesnt work for me... Thanks Jon
  6. http://www.euroscotva.co.uk/index.php I had this issue before but for some reason it sorted out itself... Is it to do with my host? Thanks... Kind regards Connor
  7. Hi, I get a: Fatal error: Class 'PilotLoginsData' not found in /home/futurava/public_html/www.euroscotva.co.uk/core/modules/Login/Login.php on line 147 This happens when I add PilotLoginsData::AddLogin($pilotid); after PilotData::UpdateLogin($pilotid); Hope you can help
  8. Dont be put down by the comments the made in the other post, I saw them. Some of them was simply creative criticism, others was simply repetition although I do acknowledge that it could have been worded a little better in some cases.
  9. Jeff had made a comment to which I replied to. He then decided to remove it for the best...
  10. Dont think it was smart naming similarly to other post , kind bump
  11. Current Projects: -> New Website -> Divisional Websites -> Updating FIR Controller Agreements -> Controller Area -> Additional TS Server -> Arranging Events
  12. Dear all, Firstly I would like to introduce myself. My name is Connor Sullivan and I am the United Kingdom country manager on Virtual-Skies. Virtual-Skies is a network like no other to date, it offers a free service to all virtual enthusiasts. Virtual Skies is commonly compared with VATSIM, IVAO and other common networks when in fact Virtual Skies strives to be in no way related to these networks. I write to you all today to make a proposal to yourselves, my aim is to offer other simmers an alternative, a new network, a change or even just another network to fly/control on. If you are a Virtual Airline we offer a VA partnership scheme where owners can join us and have access to administrate you VA via our website (www.virtual-skies.com), you can track your hours and compete against other VA's in a roster. We also offer filtered live maps for you to display on your website to show your pilots who are online our network. When you join as a member you are given a unique CID and password where you then have access to features like, mentoring session requests, our forums, flight server, teamspeak and many other additional services we provide. Most days of the week there is commonly most CTR positions online ensuring some sort of coverage to all flights, we are currently putting students through mentoring sessions and at the moment we use Sweatbox for mentoring until such a time traffic levels increase. Virtual Skies isn't like your typical FSHost network, in-fact we operate similar software like VATSIM but are more relaxed but still offer the same level of realism. I hope that you take time to discuss with your fellow simmers and think this through. If you decide you would like to give VSN a go or would like more information then head on over to http://www.virtual-skies.com Thank-you for your time, C-sullivan Connor Sullivan United Kingdom Country Manager http://www.virtual-skies.com
  13. Yes, Yes I do - http://xlvirtualairways.co.uk/index.php/finances ahahah, beat that
  14. Hi all, Just wondering if there is a way to reset the airline finances to start again as we are in quite a bit of debt, Many thanks, Connor Sullivan
  15. Hi all, Just wondering how this is coming on?
  16. I dont know if I was reading that website wrong but, whereabouts in that code would I set it as currently it displays latest flights which if I am correct in saying that code generates it? Its those I want to change colour of.
  17. Hi all, prob a really easy solution to most but its really getting me now I have: <?php if(!$reports) { echo 'No reports have been filed'; return; } ?> <table width="100%" cellpadding="4" cellspacing="0"> <tr align="center"> <th bgcolor="#f5f5f5"><strong>Pilot</strong></th> <th bgcolor="#f5f5f5"><strong>Flight Number</strong></th> <th bgcolor="#f5f5f5"><strong>Departure</strong></th> <th bgcolor="#f5f5f5"><strong>Arrival</strong></th> <th bgcolor="#f5f5f5"><strong>Duration</strong></th> <th bgcolor="#f5f5f5"><strong>Aircraft</strong></th> <th bgcolor="#f5f5f5"><strong>Landing Rate</strong></th> </tr> <?php $rowclass = 0; foreach($reports as $report) { ?> <tr class="row<?php echo $rowclass ?>" align="center"> <td align="center" scope="col"><?php echo $report->firstname . ' ' . $report->lastname?></td> <td scope="col">XLA<?php echo $report->flightnum; ?></td> <td scope="col"><?php echo $report->depicao?></td> <td scope="col"><?php echo $report->arricao?></td> <td scope="col"><?php echo $report->flighttime; ?></td> <td scope="col"><?php echo $report->aircraft?></td> <td scope="col"><?php echo $report->landingrate; ?> ft/min</td> </tr> <?php $rowclass = 1 - $rowclass; } ?> </table> But on every latest flight I want one to be one colour the second to be another and for the third to go back to the first e.g 1 - Blue 2 - Green 3 - Blue 4 - Green How would I go about doing that with that code above? Could I get an example please. Thanks
×
×
  • Create New...