-
Posts
371 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by VAEA
-
still having problems acessing my site grrrrrrrrrrrr
-
hold on my mistake i used ; My site is down now Fivdev has been like this for a couple of days now
-
NIR0004 - Site Maintenence Flight: NIR1026 Dep/Arr: EGAA/EGBB Flight Time: 1.00 Submit Date: 10/03/12 Current Status: Fatal error: Call to undefined function getLastReports() in /home/airlingu/public_html/admin/templates/pireps_list.tpl on line 63
-
Parse error: syntax error, unexpected ':' in /home/airlingu/public_html/admin/templates/pireps_list.tpl on line 63 $rep = PIREPData:getLastReports($pilotid, 1);
-
Ok mate I am now getting an email for every pirep that has been filed. They are coming through slowly i am at 15 at the moment.
-
still no email mate. are you bald yet
-
Got rid of the error but no email sent arggggggggg
-
lol glad you like your hair lol
-
Parko mate hope you dont like your hair Parse error: syntax error, unexpected T_ELSEIF in /home/airlingu/public_html/admin/templates/pireps_list.tpl on line 77 Sorry
-
Hi Parko, I have had a look at this today with a fresh head. The last code sends out multiple emails[all the same email] even before the pirep has been accepted by admin. I tried moving the code from the Admin/modules to core/modules but the same thing happened. I tried adding if($pirepdata['accepted'] == "1") but then nothing was emailed. Are we at a loose end mate Alan
-
I have removed the code as we said and have left it in the admintemplates and modules but i am still getting 4 emails. I am going to leave it for tonight mate. Thanks for all your help. Maybe catch you tommorrow
-
The link in the email to the report isnt going to the correct page. I can live with that. How do you think I should get it to one email. Should i remove the extra code in pirepdataclass.php
-
Ok mate I am getting 4 emails for each pirep. Feast or a famine lol
-
Ok Parko I just got 4 emails through so I dont know which version worked. Gimme 5 mins mate
-
Ok Parko got rid of the error but still no email mate
-
I am getting this in my admin centre Notice: The template file "/home/airlingu/public_html//admin/templates/email_pirep_accep.tpl" doesn't exist in /home/airlingu/public_html/core/classes/TemplateSet.class.php on line 226
-
no email at all mate
-
still not sending Parko
-
Have sent you a pm mate, the email is not sending
-
sorry no i havnt it came back again. I used your VA email address.
-
I have emailed you Parko
-
Hi Parko mate, Ok here is my email_pirep_accep.tpl which I placed in my skins folder Dear <?php echo $firstname. ' ' .$lastname?>, Your pirep has been accepted. To view it, visit: <?php echo SITE_URL;?>/index.php/pireps/view/<?php echo $pirepid;?> Thanks! The <?php echo SITE_NAME;?> Team now I have added the code you supplied from line 800. but i dont think I have it in the right place * Update a specific PIREP * * @param int $pirepid ID of PIREP to update * @param array $pirepdata Dictionary array of fields to update * @param bool $recalc_finances Recalculate finances or not (fields must be passed!) * @return */ public static function updateFlightReport($pirepid, $pirepdata, $recalc_finances = true) { if (!is_array($pirepdata)) { return false; } if ($pirepdata['depicao'] == '' || $pirepdata['arricao'] == '') { return false; } $pirepinfo = self::getReportDetails($pirepid); if(isset($pirepdata['fuelused']) && isset($pirepdata['fuelunitcost'])) { $pirepdata['fuelprice'] = $pirepdata['fuelused'] * $pirepdata['fuelunitcost']; } if(isset($pirepdata['flighttime'])) { $flighttime_stamp = str_replace('.', ':', $pirepdata['flighttime']) . ':00'; $pirepdata['flighttime'] = str_replace(':', ',', $pirepdata['flighttime']); } # Send an email to the pilot who submitted that PIREP //PILOT INFO $pilotfirstname = $pilotinfo->firstname; $pilotlastname= $pilotinfo->lastname; $email = $pilotinfo->email; //PIREP INFO (This all goes into the email, we will need to add those into the TPL $code = $pirepdata['code']; $flightnum = $pirepdata['flightnum']; Template::Set('pilotinfo', $pilotinfo); Template::Set('flight', $pirepdata); $sub = 'Flight Report for: '.$code.''.$flightnum; $message = Template::Get('email_pirep_accep.tpl', true); $pireps = self::getLastReports($pilotinfo->pilotid, 1); if($pireps->accepted == "1") { Util::SendEmail($email, $sub, $message); } # Recalculate finances if these fields are set... if($recalc_finances === true) { $data = array( 'price' => $pirepdata['price'], 'load' => $pirepdata['load'], 'expenses' => $pirepdata['expenses'], 'fuelprice' => $pirepdata['fuelprice'], 'pilotpay' => $pirepdata['pilotpay'], 'flighttime' => $pirepdata['flighttime'], ); $gross = floatval($pirepdata['load']) * floatval($pirepdata['price']); $revenue = self::getPIREPRevenue($data, $pirepinfo->paytype); $pirepdata = array_merge($pirepdata, array( 'flighttime_stamp' => $flighttime_stamp, 'gross' => $gross, 'revenue' => $revenue, ) ); Am I in the correct file core/common/PIREPData.class.php Salamaty
-
Hi, Has anyone ever produced something that sends an email to the pilot when their pirep has been accepted. I have looked in the forums and have found similar like email pireps data but have been unable to find what I am after. Maybe even an email to say Pirep accepted or if rejected and the reason ?? Looking forward to hearing from someone
-
Hi there, I would suggest using Simpilots POP UP NEWS module and just deleting the news section of your front page. Also I think you have a </div> missing somewhere as your footer seems to be halfway up your page