Jump to content

Tom

Members
  • Posts

    1517
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tom

  1. Don't even bother watching the video, it's totally disappointingly lacking anything interesting.
  2. Sounds like they just got into your cpanel and/or FTP. Not through phpVMS I expect.
  3. Put all your documents on an external storage. Reformat drive. Insert XP disk. Unfortunately there isn't downgrading like their upgrading option.
  4. You seem to lack a link back... I click it and I go nowhere... I really don't understand why people find it so difficult to make a link back.. If you're worried about people leaving your website just make it open in a new window/tab - not difficult!
  5. You've used their logo and piled stuff on it. It's still got their logo in it, and without written permission from the copyright holder that's illegal - so of course they will ask you to close.
  6. Tom

    Fleet Insert

    Jeff it was removed because it was never used. Simpilot negative, it does what the OP wanted (a quicker way to insert all the aircraft)
  7. Tom

    Fleet Insert

    This: http://forum.phpvms.net/topic/1306-fleet-sql-creator/
  8. Tom

    Fleet Insert

    I had a little tool for this.. Never got used. You lot who have been making your own csv's were missing out. Oh well.
  9. Look for a jQuery image/banner rotator. You won't need to include the jQuery library files as they're in already. You just need to add the other script(s) and the code in where you want it.
  10. Already working on this one. Mistake post.
  11. Nabeel would be a fool to have released it without checking for common exploits, but there's always a way in somehow. Unless they've been reading source code for quite some time it'll be a while before they find anything. Your best bet is to just not piss anyone off
  12. Tom

    Why?

    No. Viewing css files isn't hacking
  13. It was posted over a week ago. Probably closed already...
  14. It's not actually his website, it's a parked site.. the domain hasn't been registered with the .co.cc service yet, so they put these adverts on all unregistered pages - see the little bit in the top left
  15. Technically as what they've done is against the license (illegal) and their hosts terms will likely say that all activity must be legal, it would work. And, I just checked their hosts (ipage.com) User Agreement, which states:
  16. True, they have now changed it to simply say "Copyright 2010" of reasonable size, but without any reference to phpVMS or myself. And they want support dream on.
  17. Tom

    phpvms skin

    Yeah books are full at the moment, with a waiting list Of course you're welcome to join the list.. Joeri has paid for the work, it's entirely up to him what is done with it, but please be sensible. All I ask is the link back remains in the footer (of reasonable size please ) It'd also be nice if you can give me the details of where it is being used so I can update my website to reflect that.
  18. Tom

    Why?

    You don't even need to look at the css to know it's identical.. just look at the site. Atrocious. Be ashamed whoever you are.
  19. As I clearly stated, I was guessing and assuming - so I was wrong - however it is not me being the "Ahole".
  20. Tom

    LOA

    Right OK. That code was wrong any way - it's early <?php if (PilotData::GetFieldValue($pilot->pilotid, 'LOA') == "LOA"){ echo '<td style="color: orange;">LOA</td>'; }else { echo '<td style="color: green;">Active</td>'; } ?> Hopefully should work. Just a ")" in the wrong place.
  21. Tom

    LOA

    So you added LOA to the Active/Inactive select in the admin panel? Have you set it up to be recording another value? For active: retired=0, inactive: retired=1 - so you'll need to modify the form to add retired=2 or something. Alternatively, you can just call Inactive "LOA" on you pilots list, in which case (assuming the way you're retrieving pilot data is correct because I don't remember it off the top of my head): <?php if (PilotData::GetFieldValue($pilot->retired) == 1){ echo '<td style="color: orange;">LOA</td>'; }else { echo '<td style="color: green;">Active</td>'; } ?>
  22. Tom

    LOA

    Is this looking at if a pilot is Active/Inactive?
  23. I don't think it would be too easy to do via the templates, however if you look in core/Modules/Registraion, you could add the process to add the information collected elsewhere in: protected function ProcessRegistration() { (I expect)
×
×
  • Create New...