-
Posts
1076 -
Joined
-
Last visited
-
Days Won
8
Everything posted by Vangelis
-
Hi can you try with this sql ? also are you installing manualy or with simpilots plugin manager ? AutoPirep.zip
-
DId you put any modules or tampered any of the core files ? If the answer is no i would upload all the files again in case anything went wrong during the upload
-
Indeed there was a problem by accepting the pireps with a bigger rate of landing you will find an updated version in the link that i provided you before or you can update the function by downloading PirepAcData.class.php and replacing the one that is in core/common I also deleted the mistaken pireps from my beta site Sorry for the trouble
-
That is a leftover from when i was trying the module I shall delete this pirep
-
Yes but it is not easy to manage the links i know that it automaticly adds a link in the menu but if in any case you do not want it there and you want it for example in the footer you need to do it via html except i miss something. also the component and plugin comunity lets be honest is bigger that phpvms. if you have the time and knowledge to write all that modules then i agree it is better to do a standalone phpvms cms. But now in less than an hour i have ready a website with a decent template (I think) a forum, a download manager, a picture gallery and i can keep going on. But with every respect to everybodys post i just asked if you like the website as a va website and if you think if anything is missing. I agree that each CMS has it advantances and disadvantaces. Best regards
-
Hello finaly i finished it and sharing witht he comunity Are tired of accepting or even rejecting pireps ? Then do not worry Auto Accept/Reject Pirep is here to help you It has a admin interface so you will be able to add 1. The VA's admin pilot admin that declines the PIREP 2. Function that searches the pirep log for custom criteria and decline the pirep 3. Functionality that adds the reason why it was declined in the PIREP's Comments. 4. Custom Reason why the pirep was decliened For Example Your Pirep has been rejected because you " Custom Text" 5. Function that send an e-mail to admin and or to pilot when pirep rejected 6. It is compartible with Simpilot's Plugin Manager You can see a demo of the admin page at www.baggelis.com/phpvms Login with the demo admin account and find the settings page under Pilot Reports (PIREPS) -> Auto Pirep You can download it from here http://baggelis.com/autopirep0.zip Screenshots Below
-
Yes we are expirencing some problems with the host
-
I believe that if you do them you can make a post an if it is worth an admin could make it sticky
-
Because in joomla if you want to add new pages you do not need to know html and upload via ftp and joomla has planty components that we may use.
-
Hello all I am busy a while now by creating our VA Website If you want and have time drop a visit to give me your opinion The link is http://www.gsairways.gr/joomla25 And you can use this login details Username test@test.com Password test@test.com We are using Joomla as main CMS and phpvms as Dispatch Centre Usernames and password are the same for both via JFusion Module It is still work in progress so any feedback is welcome. Best Regards
-
No idea about it as i havent used it but you could w8 if simpilot sees this message or you could open a question in the relative section of the forum http://forum.phpvms.net/forum/45-simpilot-group-addons/
-
I read the build forum section. And yes you just upload everything into your server
-
Hello Nabeel In this folder there is an extra folder called unittest is this part of PHPvms ? as this folder didnt exist before
-
If you are using One.com then you are using a wrong outgoing mail server can you try with "send.one.com" and also EMAIL_SMTP_USE_AUTH should be se to TRUE and if you still have problems i would sugest you try an gmail,yahoo or whatevere else you acount you have in order to elliminate server problems.
-
Yes you can through phpmyadmin or something similar.
-
how to show only pilots with a custom fields in pilot list
Vangelis replied to Tato123's topic in Development Help
Almost everything is possible can post a link so we can seewhat youalready have done ? -
But the pilot in LYBE can fly it ?
-
Everything is said in this post http://forum.phpvms.net/topic/20635-rev-merge-pull-request-122-from-equinoxmattmaster/#entry110836
-
Well the error says it all Retry to send the pireps another day as it seems that vaccentral was down
-
As it seems geonames has a limit of queries. Change in your app.config line 219 from Config::Set('AIRPORT_LOOKUP_SERVER', 'geonames'); to Config::Set('AIRPORT_LOOKUP_SERVER', 'phpvms');
-
Well it is free he can learn on others if they have the patience to w8. I would sugest collinshea to get a free domain setup a phpvms on it and make skins up there so you can show the rest of us a portofolio.
-
Try to add you mailservers in local.config located in root/core aprox line 142 till 151
-
Most propably you will get an error that the function is not found If i wanted to delete the pilot but not the pireps i would create a pilot with a name "Retired Pilot" and would run an sql query to update the pireps to that pilot and then delete the others. Out of curiosity why would you delete the pilots and keep the pireps ?
-
Sory for the confusion That is what i mean that it should work and i pasted the code from pirepdata class to prove my answer
-
When you reject a pirep in admin side an email is sended automaticly to the email of the pilot protected function reject_pirep_post() { $pirepid = $this->post->pirepid; $comment = $this->post->comment; if($pirepid == '' || $comment == '') return; PIREPData::ChangePIREPStatus($pirepid, PIREP_REJECTED); // 2 is rejected $pirep_details = PIREPData::GetReportDetails($pirepid); // If it was previously accepted, subtract the flight data if(intval($pirep_details->accepted) == PIREP_ACCEPTED) { PilotData::UpdateFlightData($pirep_details->pilotid, -1 * floatval($pirep->flighttime), -1); } //PilotData::UpdatePilotStats($pirep_details->pilotid); RanksData::CalculateUpdatePilotRank($pirep_details->pilotid); PilotData::resetPilotPay($pirep_details->pilotid); StatsData::UpdateTotalHours(); // Send comment for rejection if($comment != '') { $commenter = Auth::$userinfo->pilotid; // The person logged in commented PIREPData::AddComment($pirepid, $commenter, $comment); // Send them an email $this->set('firstname', $pirep_details->firstname); $this->set('lastname', $pirep_details->lastname); $this->set('pirepid', $pirepid); $message = Template::GetTemplate('email_commentadded.tpl', true); Util::SendEmail($pirep_details->email, 'Comment Added', $message); } LogData::addLog(Auth::$userinfo->pilotid, 'Rejected PIREP #'.$pirepid); # Call the event CodonEvent::Dispatch('pirep_rejected', 'PIREPAdmin', $pirep_details); }