Jump to content

Sava

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Sava

  1. Are the mail functions setup correctly and allowed with your host? Try and talk to them. That's the first thing that comes to my mind imho.
  2. Hello everyone. I have been trying to figure out from where the actual sidebar options in the admin panel are rendered. I know I figured it out once but I can't seem to find it again now. The skin calls it from the $sidebar variable but I am trying to figure out from which controller does that variable come from so I can rearrange the options a bit. The template files are only used for displaying the options for the selected sidebar menu. Hope you understand what I am asking for
  3. You can put the enitre code for dispalying in an if statement. if ($usersonline) { before the foreach loop amd then close it } else echo 'no pilots online';
  4. Good to see you are back Kyle!!
  5. You are actually not required to have a link back to phpVMS, but if you don't you won't get any support.
  6. I am respectful and curtous to other members. I won't get into an argument with you since the best you could do is copy my post. And I believe my posts are pretty clear and can be easily understood despite English not being my first, or even second language, which can not be told for you as it seems you are a native speaker based on your location. I won't continue this with you as it is not the point of this topic, but I ask you to think stuff through before you post.
  7. And the point of marketing your VA that uses FSAirlines on the phpVMS forums is? That would be similar to me posting pictures of my new BMW on a Mercedes Benz forum.
  8. There is already a BA Virtual supported by the real BAW which is one of the best VAs around. A friendly tip would be to join one instead of creating yet another one that will exist for less than 2 months.
  9. Sava

    Real Flight Booking

    Well yes I actually can create a module depending on the public response. It is useful for me to get an idea on how many people would buy this before spending time on creating it. I am not scaring anyone....
  10. I really don't get any of your posts to be honest. Most of your posts is just bashing on someone. Of course, not when asking for support. My advice to you would be to be curtous to other memebers if you want them to be curtous and respectful to you. Also, might be good to check your message before posting it as I need to read your messages several time to get a rough idea on what you are saying. That is my opinion. I am not sure how others feel about this... Just some food for thought.
  11. Sava

    Real Flight Booking

    If I get positive response I will start sometime next week in hopes to have it done by end of this year. Ofcourse, as real life and paid projects permit I have two addons out there. LoA and Hub Transfer
  12. Sava

    Real Flight Booking

    It will be different then RSL because you don't need to loop routes etc etc. And I don't think I will need beta testers .
  13. Hello everyone. It has been a while since I had joined the phpVMS community. While it is the best software out there for VAs by far, the lack of realistic flight tracking has always bothered me. I am considering creating this kind of module and I am interested in how many of you would like to use somthing like this. The "bad" news is that I will most probably be releasing the module as payware. I still haven't decided on the price but it will be around the price some of SimPilot's modules are selling for, depending on the amount of work it will take. how the module will function and what it will do has been described by me in an another topic. So, who would be interersted?
  14. You have to edit the first post, click more reply options and change it from there.
  15. You can't. Just add [sOLVED] to the topic title
  16. Glad it works. Ask if you need anything more
  17. Your code is a mess. First of all put the css code to one of your styles, for example the style.css located in your skin folder. What you have now won't work. Also, you have to have <div> tags out of the foreach loop code or else it will close the div and open it for every single line of the table. I can't write the exact code for you as PHP isn't outputted in the source code etc. but I can give you general pointers that will get you up to speed. Just watch out for the PHP parts and where those need to go. <table width="100%" border="0" id="tabledlist" class="tablesorter"--> <tr bgcolor="#87cefa"> <TD><b>Flight</TD> <TD><b>From</TD> <TD><b>To</TD> <TD><b>Dep.<BR />time</b></TD> <TD><b>Arr.<BR />time</b></TD> <TD><b>Flight<BR />info</b></TD> <TD><b>Plane</b></TD> <TD><b>Sched days</b></TD> <TD><b>Pilot<BR />Info</b></TD> <TD><b>Info</b></TD> </tr> <!--table id="tabledlist" class="tablesorter"--> <thead> </thead> <tbody> <?php code that you have here (ie. the loop) ?> ..... </table> change everything starting from the first line from above to (and with) the ending </table> tag with <div id="Schedules"> <table width="100%" border="0" id="tabledlist" class="tablesorter"> <thead> <tr> <TD><b>Flight</b></TD> <TD><b>From</b></TD> <TD><b>To</b></TD> <TD><b>Dep.<BR />time</b></TD> <TD><b>Arr.<BR />time</b></TD> <TD><b>Flight<BR />info</b></TD> <TD><b>Plane</b></TD> <TD><b>Sched days</b></TD> <TD><b>Pilot<BR />Info</b></TD> <TD><b>Info</b></TD> </tr> <!--table id="tabledlist" class="tablesorter"--> </thead> <tbody> <?php all the php that you had before...the loop etc... ?> <tr> <TD title="<?php echo ''.$route->route.''?>"><a href="<?php echo url('/schedules/details/'.$route->id);?>"><?php echo $route->code . $route->flightnum?></TD> <TD title="<?php echo ''.$route->depname.''?>"><?php echo ''.$route->depicao.''?></TD> <TD title="<?php echo ''.$route->arrname.''?>"><?php echo ''.$route->arricao.''?></TD> <TD><?php echo $route->deptime;?></TD> <TD><?php echo $route->arrtime;?></TD> <TD Title="NM: <?php echo $route->distance;?>"><?php echo $route->flighttime;?> hour</TD> <TD Title="<?php echo $route->registration;?>"><?php echo $route->aircraft; ?></TD> <TD><?php echo Util::GetDaysCompact($route->daysofweek); ?></TD> <TD title="<?php echo ''.$route->notes.''?>"><a href="<?php echo url('/schedules/brief/'.$route->id);?>">Pilot Info</a></TD> <TD><a href="#" onclick="window.open('<?php echo actionurl('/schedules/boardingpass/'.$route->id.'?newwindow');?>'); return false;">Boarding Pass</a></TD> </tr> </tbody> </table> </div>
  18. #div_name_here tr:nth-child(even) { background-color:#eee; } change the div_name_here to the name of the DIV which contains the table. You can change (even) to (odd) if you want to change the color of the first row. The structure for the table should be <tr> The end result: http://www.airserbiavirtual.com/index.php/schedules/view <td></td> </tr> etc.
  19. You mean changing the bg colors of every other row in a table?
  20. Sava

    vStatsCenter

    I don't know. I guess you just need to find someone who has it downloaded. I wonder what Kyle has been up to.
  21. Sava

    vStatsCenter

    Kyle seems MIA. Haven't seen him on Skype for a long time too.
  22. Yeap. Seems like I messed up the URL. Its an easy fix. I'll fix it as soon as I can. Thanks for the heads up Bruce. Appreciate it.
  23. If anyone has any ideas, they are welcome. You can also try and contact your host. Maybe its them.
  24. It is a problem on your end. Not sure which one, but it is on your end.
×
×
  • Create New...