Sava
Members-
Posts
575 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Sava
-
Good to see you are back Kyle!!
-
You are actually not required to have a link back to phpVMS, but if you don't you won't get any support.
-
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.
-
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.
-
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.
-
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....
-
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.
-
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
-
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 .
-
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?
-
You have to edit the first post, click more reply options and change it from there.
-
You can't. Just add [sOLVED] to the topic title
-
Glad it works. Ask if you need anything more
-
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>
-
#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.
-
You mean changing the bg colors of every other row in a table?
-
I don't know. I guess you just need to find someone who has it downloaded. I wonder what Kyle has been up to.
-
Kyle seems MIA. Haven't seen him on Skype for a long time too.
-
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.
-
If anyone has any ideas, they are welcome. You can also try and contact your host. Maybe its them.
-
It is a problem on your end. Not sure which one, but it is on your end.
-
I will try and add this as soon as I can.
-
Also, this should go in the LoA topic, not this one.
-
As the error says, a connection to the mysql server could not been established. I am not sure what causes that..