Jump to content

Parkho

Moderators
  • Posts

    1375
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Parkho

  1. Okay. I'll need your cpanel log in access to fix it for you. Send in PM if you'd like.
  2. I think you have install problem. Try reinstalling that would fix your problem.
  3. You really don't need to pay for this, just add a new group and check the areas you want to give access.
  4. email_welcome.tpl and email_warning.tpl are the ones you'll need to change.
  5. This issue has been resolved. Now the problem was that they had a lot of bids on their schedules which haven't been deleted for a while and that was the main reason the schedules didn't show up. To resolve these, anybody with the same issue has to make sure the bids get deleted from time to time in order for the other pilots to be able to view the flights. Another way would be to change the following configuration from "True" to "False" in "core/local.config.php" but I strongly suggest that you go with the first way. Config::Set('DISABLE_SCHED_ON_BID', true); Second issue with schedules not showing up properly would be the days of the week and that means if the schedule is not set for today it simply don't show up. Third issue with schedules not showing up would be that some schedules somehow don't get updated on PIREP submission and the bid column in DB for schedules table, doesn't change from "1" to "0". To resolve this issue you just have to simply change that manually. Of course there might be some other issues in this regard but these are the most common ones.
  6. Sorry, but I don't see any relations between SmartCARS and phpVMS. The only thing that crosses my mind which maybe the issue is the gateway where you submit reports. I don't know if SmarCARS has it's own module for PIREP submission or just uses ACARS.php file. Also, you might wanna check the Lat and Lon as they may be wrong.
  7. The error you're getting in your SmartCARS has nothing to do with phpVMS. The error is because the airport is wrong in your simulator. If you can see KATL added to the list of your airports then it means it's added to the DB with no problem. For the ACARS, i would suggest you use kACARS-free and I'm sure you won't get any errors.
  8. Thanks Alan. I always appreciate your support.
  9. That's right. You could also place it in a new page you created but I thought this is cleaner.
  10. You have installation problem. The tpl file is missing.
  11. Low budget with too many requests but if you want you can get all this done yourself and get help from the forum. If you want someone to do this for you as Paid Service then the charge will be at least $20.00 per hour but I say you " Roll up your sleeves" and we will help you out. Of course you'll have to buy some modules such as "Entrance Exam" from Simpilot and other things unless you know how to write codes.
  12. Look into local.config.php
  13. Would you like to give me access to your cpanel and your website so that I can figure out the problem?
  14. download the software from phpvms.net unzip the download and get from core/templates then upload it in the skin folder.
  15. Have you tried the default skin? If yes and you still have trouble then try adding a copy of your schedule_results.tpl into your skin folder in lib/skins/skinfolder(ex. crystal). Have you edited or added any codes in schedule_results.tpl recently? if yes try rolling it back or upload the default file and overwrite it.
  16. It's in core/templates. If you don't have it there, look into lib/skins/skinfolder(ex. crystal). If you don't have it there either then you're missing that file and that's the reason your schedules don't show up
  17. Switch to default skin and see if your problem persists.
  18. Where do you have your "schedules_results.tpl"? Because I think you have skin problem. Switch to default skin and see if your problem persists.
  19. Alex, The most common issue with schedules not showing up is the days schedules are set for, so make sure of that. If you're getting error messages please post them here. If you don't get errors and you'll see schedules listed up partially then I think the issue goes back to days of week. If you have uploaded a .csv file with your schedules, there might be some fault data inserted into DB. I suggest you re insert schedules table. The last think I would suggest to you is to reinstall phpVMS.
  20. Remove the following from core/templates/page_content.tpl <h1><?php echo $pagename;?></h1>
  21. Please make your post in English.
  22. If you want this on your front page, add it to your frontpage_main.tpl
  23. If you type into your address bar the following link. This will show you a list of your bids and an option to remove them.
  24. If you want your pilots to be in order by their pilot id: Open PilotData.class.php in core/common and add the following before the last closing bracket: public function pilots() { $sql = "SELECT * FROM phpvms_pilots ORDER BY pilotid ASC"; return DB::get_results($sql); } Then open "pilots_list.tpl" in core/templates and add the following right after the "foreach()" loop starts: $allpilots = PilotData::pilots(); This will sort the list by pilot id. In case you want this to be sorted by some other columns, simply change the column name in the following: $sql = "SELECT * FROM phpvms_pilots ORDER BY pilotid//This is your column name ASC"; Cheers
×
×
  • Create New...