-
Posts
1954 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by TAV1702
-
You need to read the docs in the documents section of this website. It will tell you how to do it. It is pretty strait forward.
-
I'm getting ready to split and head to the Moose Lodge for tonight, but when I get home, if you still have not solved it, I will jump on my crystal template and take a look. I once modded that template and had some success doing it.
-
Yeah it was rough. And great when I finally nipped and tucked the code you offered and it worked. Long story short, I had it right once. It was out putting data, it was just wrong. I then ditched my code in a effort to make it right. That was the wrong move. Once I saw the code you posted, I knew when I used the for each the first time I was on track. I really do thank you for the help though. I normally never try to ask for help until it is the last resort. I try to help myself first. Many times people come here looking for help before they even try to help them selves. Ray
-
Hi Mix. There is a thread in the addons/releases thread for an airport table. It might be in the Simpilot thread too. A quick search will reveal the truth.
-
Wrong forum fellers. Needs to be in Support. I'm not saying, I'm just saying.
-
Auto awards would be sweet while having the option to make some of them manual given only. Like the ranks Nabeel has coded. Manual or auto.
-
Yeah copyright infringement issues will get a site closed down real fast. I am real surprised any of his threads here are left unlocked. I know one or two did get locked.
-
Yeah I think it would need to be recoded a bit to take advantage of the adjust pilot pay code snippets that was released a while back that I use on my site. If you use that and recalculate everything, it will not give the cash back to the pilot.
-
What skin are you using?
-
I had to doctor up the code but by gumpus she works now! Now my only issue is, it is only putting one pilot in the table and dropping the rest out of the table. I wonder if I need to move my <?php } ?> or something. I have never had an issue with a table doing that before to be honest. **EDIT** That was it. I had to move that little ditty of code up inside of the table. Once I did that, everything fell in to place. Thanks for helping me out. I REALLY appreciate it! I did everything for the past week I could think of to do. And yeah it all boiled down to me not having the for each and closing php in the code. Oops!
-
I'll see what I can cook up with that. Thanks a bunch!
-
Yeah.... It is an old machine. lol its got a whole 786 processor I believe and 128 megs Ram. Funny part is, it will dam near smoke the box I am on now which in its own way is far from anything special. I may have to look into that after all.
-
Kind bump. Anyone?
-
Well, I actually have another box sitting right next to me that I have not fired up in a year or two. I was pondering putting it online and installing Linux on it and going the route you just talked about. Probably just take the easy way out and go for total broke and swap hosts. Oh and the funny part of it all is I JUST tried this trick on a phpBB forum on the same server and it worked just fine. Go figure eh? If it werent for bad luck I would have no luck at all. Take care. Ray
-
Yeah that's what I tried to and I keep getting internal server 500 error. The host server I am on sucks major a**! Too bad I am too broke to get off of it. My buddy hosts two sites for me for free and he has no clue at all. I urged him to up the memory usage for me slightly to no avail. Come to find out, he is running like 38 LARGE sites off of one box. I think it would run better on my PC running it off of WAMP. Just not sure how to set up the dns to point to my PC.
-
Ok so I dropped all my airports and added the sql file and tah dah!!! Got all the airports. Now I am fighting the exhausted memory error. Tried using my own fix I posted in the code snippets but not getting it to work. All the rest of the site works great. Now I can not view schedules. I'm sure in the end I will get it all fixed up nice like.
-
Can you fill me in on details to what you added and where please so I can update the code snippets post and so I can fix my own site. I can get this to work in phpBB all day long but can not get it to work on my phpVMS install. I get server 500 errors.
-
Now I am gonna sound stupid here but has anyone got my little trick to work and if so what file did you edit? I am trying my hta access and local config and neither is working for me. I never tried it when I posted this.
-
Is it safe to say to only use this list for a new install? Upon further review, the only way for me to get around the duplicate error is to A) Drop current airports from database and start fresh, or edit the sql list and update ID numbers an remove airports I already have. Good times eh boys? lol This is one hell of a list though. Thanks Simpilot!
-
Yeah that Tour System is bad as hell (meaning it is great)! I wish I had some extra cash. I would buy it just to have it. I believe it is worth every penny he asks for it.
-
I could not help but notice that when a Airmail is sent out to someone, it posts a message that goes top left right under the header that says Mail has been sent or something similar. I am wondering if it possible to toss up a popup or something in the middle of the screen that gives the message and goes away after a couple few seconds maybe. Or something like that. I have been tossing around ideas about that but come up blank every time. I am not so sure what the best route to take is. I am sure I can code it up, it is the best method to not jack up things that is the issue I am facing. Not sure about using java though due to other java being used on site. This issue is not a biggie to me. It was just something I noticed.
-
Independence Air Virtual is Open!!
TAV1702 replied to regional_elite's topic in Virtual Airlines Discussion
Very nice looking site! @ Simpilot. Thanks for that link,. I have been looking forever plus a day to find somehow to make one of those. -
I asked him about this earlier in this thread and he said it was ok to do. I did remove it from the side bar block, BUT His copyright and info remains intact on every news page that comes up in the news center. AND I also have links galore to Simpilot Group for obvious reasons such as bad a** modules Simpilot builds. I was going to do a links/Kudos page to but never got around to it. I suppose I need to do that now that I think of it.
-
Adding Images To Replace Text Links In Pilot Center
TAV1702 replied to Thomas Rozanov's topic in Support Forum
I know you were answering him. No worries eh? I could have explained it to him better to begin with and I should have. And now back to the regularly scheduled program already in progress..... -
Well I am not sure exactly what is going on or why. I used the code and got the same results again. lol Pilod ID 0000 and Nothing for the name. Here is what I got so far. <div class="sidearea2"> <h2>Newest Pilots:</h2> <div class="box3"> <table> <thead> <tr> <th width="50%" scope="col">Pilot ID#</th> <th width="50%" scope="col">Name</th> </tr> </thead> <tbody> <tr> <td><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td><?php echo $pilot->firstname.' '.$pilot->lastname ?> </td> </tr> </tbody> </table> </div> </div> Maybe this topic should get moved to Skinning. I never thought of posting there to begin with. Blonde moment at it's finest I guess.