Jump to content

mark1million

Moderators
  • Posts

    2283
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. What i would suggest is to try to understand how things work with css, there are many skins on here so find one that roughly matches the layout your looking for then redesign to your needs. The hardest part is understanding the different classes and div names, for that you can use firefox to see the different areas.
  2. There is a module here for extract fleet usage already. Maybe this is what you need? http://forum.phpvms.net/topic/1522-fleet-table/page__hl__fleet
  3. Take a look at those dive on line 3 and also below the map code you have an empty div there fir no reason, your right it is a div issue just finding the right one As a start get rid of that div id mainbox extra one so remove lines 3 and 4
  4. Ok i see, what looks to be happening is the content is being placed in the existing div, if you look it is centred according to the div its in. Try removing it or defining a page width.
  5. Sure send me a pm it will only take 5 minutes
  6. The best was is to use Javascript to validate what you need.
  7. No not with out a load of problems, these are auto increment when a new pilot registered. I changed a pilot id once and i had to go and change a load of other stuff, just isnt worth it on a live site.
  8. This may help, http://forum.phpvms.net/topic/3358-gcmap-great-circle-mapper/
  9. Hello, That is a php configuration error, speak with your host, if you have full control over your server then you need to define the session_savepath in your php.ini and give it full read write permissions.
  10. Yes, as soon as there is a flight in the system that will go away.
  11. Do you have filed flights in the database?
  12. Thats a permissions error, just check that the folder where your pictures are going has full read write permissions.
  13. Thanks Jeff and Nabeel for your help.
  14. Hi, I am writing a module to only display unique ICAO aircraft, this is what i have, /** * Get an aircraft by unique name */ public static function getAircraftByName1() { $sql = 'SELECT DISTINCT icao, fullname, weight, cruise, maxpax, maxcargo, imagelink, downloadlink FROM ' . TABLE_PREFIX . 'aircraft WHERE `enabled` = 1 '; return DB::get_results($sql); } That works fine, but when i try to add the range nothing is displayed so if i do, /** * Get an aircraft by unique name */ public static function getAircraftByName1() { $sql = 'SELECT DISTINCT icao, fullname, range, weight, cruise, maxpax, maxcargo, imagelink, downloadlink FROM ' . TABLE_PREFIX . 'aircraft WHERE `enabled` = 1 '; return DB::get_results($sql); } Not sure why but any help would be appreciated Thanks.
  15. lol, I muddle through with help from the community I am no expert, for that you need to be speaking to Nabeel and Dave. Joeri we love you xx
  16. Just check that the jquery include is present in the admin header.
  17. No, dont use cpanel thats what fu*ked my site up. If you need to edit then download the file and upload, i use winscp great program and above all its free and you can do live edits.
  18. Have you got a white space in the file? How is your settings on the ftp, i remember i have changed a setting by mistake once and it really screwed up the whole thing.
  19. just had a look at your site and now it does need an extra div for your content that should be aligned to the right
  20. Let me take a look in FF see if i can get it, give me 5.
  21. That usually means you have a php error, how is your error reporting set? Take a look in the app.config.php and set your error reporting to on see if php outputs anything.
  22. Just quickly looking at your site it looks as if you have an extra div in there somewhere. I dont know that skin but maybe a closed div more likely
×
×
  • Create New...