Jump to content

freshJet

Members
  • Posts

    1470
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by freshJet

  1. Are you thinking about using an HTML template? http://forum.phpvms....es-with-phpvms/
  2. Therefore not demographics! You cannot choose your demographics. You quoted it, which generally means you are addressing it. "What do you have to do with any of this" is such a stupid thing to say to someone on a community forum.
  3. Just to clarify, you say you want the form to be displayed and then the schedules? By this, do you mean all schedules are hidden until the form is submitted? If you didn't, this would work far better.
  4. It looks like another strict standards error, add static to the beginning of the function containing that line. Although, that kind of issue would produce more than just one error. Do you have more errors elsehwere on your admin panel or main site?
  5. DJRixton, that first part - irrelevant. Why are you discussing another thread? Firstly, what am I doing here? You have provided code for the community to use, and you are receiving feedback. I gave you feedback, i.e backing up what Tom said, and then I asked why you phrased it the way you did. Second of all, your argument about the demographics is invalid - hub and pilot ID do not fit the definition you provided. You cannot define someone's demographics, they are what they are. You can't tell someone where they live or what age you are. Thirdly, would that mean you are calling your VA perfect, especially right at the launch stage? Regardless, I was only asking what you meant. I was not challenging your word choice. Lastly, 'my country' is where your language originated. Given the two above examples it seems that it's in fact your country where words are tossed around differently. Or, more likely, just you.
  6. Your post was typical of one that hasn't tried. Anyway, did you look for the actual fix made by Nabeel? It's worth mentioning what you have already tried, that way we know you have made an effort
  7. If you had searched first you would have found this: http://forum.phpvms.net/topic/21555-solved-pirep-chart/page__hl__ofcharts#entry115659
  8. Can you change it? Change it to 5.4 if you can, otherwise use the fixes given above,
  9. ^ What Tom said. Apply Courier to it. It will work better than an iframe. If you want to see why, try looking at it on different resolutions.
  10. Very simple. <?php $icao = $_POST['icao']; echo file_get_contents("http://weather.noaa.gov/pub/data/observations/metar/stations/$icao.TXT"); ?> You can remove the time and date if you want: <?php $icao = $_POST['icao']; $metar = file_get_contents("http://weather.noaa.gov/pub/data/observations/metar/stations/$icao.TXT"); $break = explode("/n", $metar); echo $break[0]; ?> That's just for the METAR, if you really want that decoded part then all you need to do is modify the URL like this: <?php $icao = $_POST['icao']; echo file_get_contents("http://weather.noaa.gov/pub/data/observations/metar/decoded/stations/$icao.TXT"); ?>
  11. Can I suggest using file_get_contents() rather than an iframe, much more practical. Of course, I assume the METAR is on a blank page by itself.
  12. Development is back on track after a few months of it being put on hold. Progressing well.
  13. Agreed, don't bother. Why does it say demographic information? That's not demographics? That's just login details. And what did you mean by 'pristine' airline
  14. Take $this->showSchedules(); out of public function view()
  15. The class is fine, it's the module you're concerned with. Can you paste the code for the index function of the core/modules/Schedules.php?
  16. If you go into your core/modules/Schedules.php, look at the index() function and you should find a line similar to $this->show('schedules_results.tpl'); (or .php). Just remove that and it will not display when you open the schedules page. Was a little confused with the screenshot, thought it was an admin center (which is obviously what the author intended it to be).
  17. Screenshot the PIREP, including the ACARS log if you have one.
  18. freshJet

    OceanBlue

    That's a lot of code for a slider.
  19. freshJet

    OceanBlue

    I don't see any code.
  20. freshJet

    OceanBlue

    I don't have this skin downloaded, can you paste the navigation bar CSS?
  21. That's for the table header, put it in the .ocean-table {} section.
  22. Add 'font-size: ..px' to .ocean_table { } in the CSS file
×
×
  • Create New...