Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. I created my own class file and changed the tpl. AircraftUsage.zip
  2. This means you're missing "core_error.tpl" in admin/templates folder. What you can do is to restore the tpl from phpvms download and upload it to the mentioned location. Also, you're doing something wrong or you're not filling all the required fields and that's why you end up with the error message and that error message uses "core_error.tpl" and "core_error.tpl" is not there, so you get this message instead.
  3. Do you need a live map like phpvms when the pilot starts the client like kACARS?
  4. gr8
  5. Set the inactive day to 1 and wait until 12 midnight.
  6. Nothing's hard to do in my opinion. There is always a solution to the task one intend to do.
  7. Open PilotData.class.php and look for the following: foreach($results as $row) { // Set them retired self::updateProfile($row->pilotid, array('retired'=>1)); Template::Set('pilot', $row); $pilot_retired_template = Template::Get('email_pilot_retired.tpl', true, true, true); Util::SendEmail($row->email, Lang::get('email.pilot.retired.subject'), $pilot_retired_template); } And change it to the following and see if it makes any differences. foreach($results as $row) { // Set them retired self::updateProfile($row->pilotid, array('retired'=>1)); Template::Set('pilot', $row); $pilot_retired_template = Template::Get('email_pilot_retired.tpl', true, true, true); $subject = SITE_NAME.':You have been marked as retired.'; Util::SendEmail($row->email, $subject, $pilot_retired_template); }
  8. So you receive emails like this :"SITE_NAME: You've been marked as retired" ?
  9. Are you using a table in your layout.tpl ?
  10. If you mean the mass mailer in admin, use " <?php echo SITE_NAME ;?> " instead of just SITE_NAME itself.
  11. There is no book or DVD to study from and it all really depends on what you want your VA to be. My advice is to look at the other sites and get to know how they operate and what they show and decide based on that. You can find those successful VAs at vacentral.
  12. Nice. You could also set it up for your pilots to bid on the flights right there instead of going through schedule search but of course if they're logged in.
  13. Use their path in browser address bar.
  14. easyphp would be my choice but remember phpvms is not working with latest version, so use EasyPHP-5.3.8.9.
  15. Number 1 and 2 are in "install" folder on your server. 3. You can simply delete everything from your server. 4. Once you deleted everything from your server, you can start installing a fresh copy and perhaps get to page at the screen shot. Cheers
  16. Ha Ha. thank I'll fix it
  17. Dear All, The Fuel Calculator V_1.1 is now released. Below please find out how it works: Thanks Features: -Admin now can add aircraft parameters based on the VA's fleet. -Fuel calculations are now more accurate. -After the result is shown the pilot has an option to email themselves a copy of the result. Tryout: www.parkho.ir - Module Test License : Freeware Screen Shots: Download: FuelCalculator_V1.1
  18. phpMyadmin look for phpvms_pilots table and make sure there are records added there.
  19. Open local.config.php in core folder and look for the following: Config::Set('DISABLE_BIDS_ON_BID', false); And change "false" to "true". That's it.
  20. My pleasure.
  21. Check you DB table for pilots.
  22. It sure is, so go ahead and empty the bids table. You can also set a cron job to automatically remove bids after certain amount of time.
  23. The link in your first post is to the schedules list. If you have active bids in you DB table then the schedules won't show up until you actually remove those bids first, remove all the bids either from admin center or through phpMyadmin and the schedules will show up. Also, as I saw in the table image, you are allowing your pilots to place multiple bids. This may be good for your organization but keep in mind when there are multiple bids for a pilot the schedules start disappearing on each bids placed unless you disable the option to show the schedules even if they have bid on and that's where you give option to 2 pilots bidding on 1 flight at the same time.
  24. Are there any error messages when you submit the pirep? Also, have you checked the DB to see if the pirep info was actually inserted to the table properly or in the admin center/dashboard, can you not see the submitted pireps listed? If the answer to those are "Yes" or "No" then you might wanna run the install check located in install folder. As I mentioned, on EasyPHP the only thing that's not working is the emailing service all other parts should be working if the software was installed properly.
  25. I agree. The reCaptcha is sometimes very difficult to read, so try refreshing it until you can fully read it and finally register.
×
×
  • Create New...