Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Nabeel

    Map Control

    What values did you try for the level? The numbers work backwards almost, like a 19 is really zoomed out. Adding a config value directly won't do anything since it's not parsed by JS.
  2. You can PM them but I might not get to it for a few days... well , maybe tomorrow
  3. That's by design for now
  4. Then it would be something like: <?php $lastreport = PIREPData::GetLastReports($pilotid, 1); if(!$lastreport) { ?> <li><strong>Current Location: </strong><?php echo $userinfo->hub;?></li> <?php } else { ?> <li><strong>Current Location: </strong><?php echo $report->arricao; ?></li> <?php } ?> $userinfo might be $pilot Or to clean it up... <?php $lastreport = PIREPData::GetLastReports($pilotid, 1); if(!$lastreport) { $location = $userinfo->hub; } else { $location = $lastreport->arricao; } ?> <li><strong>Current Location: </strong><?php echo $location; ?></li>
  5. Interesting. And th efolder you said is 777? I'll take a look..
  6. You can just call a module directly: index.php/Routemap
  7. Nabeel

    First Skin

    Looks great! I would suggest moving your menu you have now to the footer, then a smaller menu up top, more web2.0 style
  8. Was it working in the past?
  9. 100mb you should be OK I guess. If you have shell access, you can bypass that FTP limit.
  10. Beta install is fine, just some things might be broken. Is adding groups busted in beta?
  11. Nabeel

    Map Control

    I don't know about that, I'd check the Google's docs. I'm pretty sure it's transitional by default. The zoom levels are funky, but I think I had moved the zoom setting to the local config. Unless of course, I didn't... lol
  12. Shouldn't
  13. There isn't really a list, but it will be the same as the column names. The quick trick that I still use for the variable names are var_dump or print_r... print_r($userinfo); And will give you a list of the members
  14. Nabeel

    Map Control

    That's an odd bug. The JS file you edit in place, only templates you move to your skin folder. What exactly are you trying to do?
  15. There's a few bugs with groups, it's being fixed up for the next version (you can see in the build log)
  16. Nabeel

    Add bid

    Try removing it. There are javascript errors on the page
  17. <?php MainController::Run("ModuleName", "functionName', parameter1, parameter2, etc); ?> parameters are optional
  18. Whats your live timeout value in your config file?
  19. Nabeel

    Ranks

    Awards
  20. What's the path? In the lib/avatars folder, did it write anything? What kind of image did you try? Can you try a different type?
  21. I'm gonna look into a replacement for this sucker
  22. Use arrname And you can do: <?php $lastreport = ... if(!$lastreport) { echo 'no reports'; } ?> It will return false if there's no results. If you do print_r or var_dump() on the $report variable, you'll see all the available fields
  23. Is there an error message? Need some more info to go on
  24. What version are you on?
  25. How many PIREPs?
×
×
  • Create New...