Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeff

  1. Not sure, maybe Nabeel or someone with better knowledge will be able to find a solution as I'm as baffled as you are on this one. Let me do some searching in here to see if there were other posts about this, and I will get back to you.
  2. Absolutely, it is called REALSchedule. Just search Real Schedule in the Addons Forum and you can find it there. I use this for my site and it seems to be working great for me now. The one thing is, is that you need to create a separate plane for each route you want it to be used for, and the system does the rest. REALSchedulelite
  3. It's funny that you bring this up, as I was just starting to figure out some Tours to use for my members as well. I do agree that this would be a great project for someone to muster up. I hope it can be done, as I'm sure everyone agrees, it would make a great addition.
  4. Nice, thanks Vansers. Can't wait for the update.
  5. Okay guys, I did a little research on how to setup Expenses. I found a few examples both here in the forum and also on this page (Nabeel, I hope it's okay to show this) http://www.airliners.net/aviation-forums/general_aviation/read.main/1379616/ it doesn't give me/you the charges exactly, but kind of give a person some idea about what you can charge for. I do appreciate your responses on this matter, and hope that this link helps as well. Thanks guys.
  6. It is usually best to manually add the Airports to the system, as opposed to having them automatically generated when you import your flight schedule for a few reasons. Sometimes when you have the airports auto-generated upon import, the Airport name may differ from the ICAO. For example; Shahre-Kord, located in Iraq, will sometimes show up in the system with the ICAO of KORD, now we know that isn't right since KORD is Chicago O'Hare Intl. Airport in Chicago, Illinois. so it's better to do it manually so your flights aren't giving off the wrong information once a member flies one of those routes. But, upon you not being able to see the airport in the Admin Panel, well, that might be something to scratch your head about. Try checking your Database to see if it is showing up in there. Use phpMyAdmin or something similar to see if it is there.
  7. Sometimes, when you are adding airports to the system, you need to refresh the page in order for them to show. Try refreshing the page and see if they show then. Just because they aren't showing, doesn't exactly mean that they don't exist on the system.
  8. First off, I'm just an idiot. I just plain forgot about the pilot ranks. Second, no, I didn't set any expenses. I did in fact just click on add expense, and don't quite understand how that works. Can you give me a few examples of how you put some expenses in there; whether it be plane cost or whatever, not quite sure about this one. Thanks, and sorry for my own stupidity on the first question, but if someone can give some examples of some expenses, that would be great. In the meantime, I will do some hunting for it in this forum. Thanks guys.
  9. Nabeel... can you please help me with this. I am wanting to change the pilot's pay to $4.00 per mile (basically what FSPassengers pays a pilot). Now I saw in this thread here Finance Data and found it in the File Manager, but can't quite understand it. How and/or where do I go to changing it to where my members get more cash in their pockets. I'm looking at my finances charts and it seems like I could be paying them much more since I have all this money I can't do anything about. Here is what I have in there... MONTH-------FLIGHTS--------REVENUE-------PILOT PAY-------EXPENSES----------FUEL------------TOTAL 2010-05------------3-------------$254,870.00----------$376.57------------$0.00--------($-11,158.09)---$ 243,359.56 2010-06-----------21------------$1,227,900.00--------$2,719.73-----------$0.00--------($-62,018.65)---$1,406,817.88 ----------------------------------------------------------------------------------------TOTAL: $1,406,817.88 Now one problem is, that there aren't any Expenses being taken out, and can't understand why. That could also be the big thing as to why my company has so much money. Our site uses FSPassengers only. Could this be why there aren't any expenses being taken out? If so, if there is not a fix for it, can I do something that I can pay my pilots more money? Please help with this, I've been at this for 10 hours now, and could really use some help with this one. Thanx
  10. That is a really nice addition for any site. Now there is an even better one that allows your airline to fly multiple routes. Do a search in Addons for Real Schedule, it really is the one to use.
  11. "Vansers" yeah, it is on the far right of the footer. And yes, Nabeel, it would be nice to rename it, but I tried it, and it wouldn't work correctly.
  12. Vansers, can you update the footer to be centered instead of having it located on the far right, I can't seem to get it there.
  13. Well, thanks for the first version. I know you go way beyond around here. I use this and am loving the look and feel of it. Whatever you do to it, I know it will be just as good.
  14. Not that I'm aware of, but sure wish Nabeel would come up with an update so you can import/export airports and fleet like you can with flights.
  15. Not sure what you are coming out with, since v.1 is great. What does v.2 include?
  16. Very true. Also, most turn-arounds are about 20-45 minutes, depending on the aircraft. Usually if you go to any real airlines' website and click Book Flight, you can search the flights and if they have multiple destinations, it will show you the arrival time, and also the departure for the next leg.
  17. Very nice. Absolutely kick butt material there bud. I've gone to Wikipedia and the FAA and couldn't find Jack. This is a great find and thank you so much for your source. Happy flying.
  18. I thought all my schedules were routed correctly, I will go over them one by one to see what may be causing it. Let me do that and I will let you know what I find in there that may be causing the problem. When looping a schedule, they don't have to use the same route back to the original airport do they? Say for example that I have KBOS -> CYYZ -> CYWG then on the return flight back I have CYWG -> CYUL -> KBOS you don't think that would cause the problem do you? Do the schedules need to have the same route in reverse?
  19. REALSchedulesLite Here is the link to my schedules page. That is the error that comes up when anyone tried to go there. I have uninstalled and reinstalled it 5 times and still keep getting the error. All flights have its own plane so not sure what is going on.
  20. Where's the best place to find the real airliners' tail numbers that they use? I just kinda make them up as I went (N001DL for Delta or N001WN for Southwest...and so on)
  21. Try using this site as a reference. Seat Guru
  22. I'm getting a 504 Gateway Time-out when I click the link for the schedules.
  23. <p><strong>Total Pilots: <?php echo StatsData::PilotCount(); ?></strong></p>
  24. so if I wanted to call up LAX then in this... public function airportInfo($icao="") { // get all departing schedules for departing chosen Airport $params['s.depicao'] = $icao; $params['s.enabled'] = 1; $depflights = SchedulesData::findSchedules($params); return $depflights; } I would just add KLAX like this? public function airportInfo($icao="KLAX") { // get all departing schedules for departing chosen Airport $params['s.depicao'] = $icao; $params['s.enabled'] = 1; $depflights = SchedulesData::findSchedules($params); return $depflights; } ...or is that right? I'm sorry, but I was kinda rushed into PHP when I was so used to using HTML, and am somewhat really confused about all of the new coding, and calling of certain types of scripts.
×
×
  • Create New...