-
Posts
207 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by ProSkyDesign
-
Hi! I don't know how can I run a cron job, do you have any tutorial? thanks for your time!
-
Looking for website creator with phpvms
ProSkyDesign replied to Jordan2's topic in Virtual Airlines Discussion
Buy a template by $5.00 US and then edit it, is easier =). I did a custom site for my VA (www.travelskyalliance.com) and I think is better than a simple template, but if you don't know how to skinning, try with a free or paid template and customizate it -
Nice! Thanks you
-
Hi everybody in app.config.php I edited the Close bids after expire function but it doesn't work Anyone can help me?? I think I need to run a cron Job to get it works but I don't know how can I do it. # Whether to close any bids after a certain amount of time Config::Set('CLOSE_BIDS_AFTER_EXPIRE', true); Config::Set('BID_EXPIRE_TIME', '1'); # How many hours to hold bids for
-
Are you from Argentina?, If you speak spanish mail me and I can help you =) ceo@travelskyalliance.com
-
[SOLVED] Change Signature (Badge) variables
ProSkyDesign replied to ProSkyDesign's topic in Support Forum
Nice, it works like a charm Thanks you so much! -
Hi I want to translate the text of signatures For example change: "Total Flights" To "Vuelos Totales" Where can I do it? thanks!
-
wich is the benefit of be owner of a property? for example of a aircraft? will you earn money for it? or you only will invest for fun?
-
I'm insterested in that add on! Do you know if is possible to change the variables of the Badge? For example: in stead of "Last seen" say: "Última vez" (spanish translate)
-
Yeah! works like a charm =) but in "Flight academy" show No route passed
-
It's works :D! thanks you so much!!
-
Nice, works perfectly with .tpl version Congratulations =), great job !! Now I will try to solve the "Tour Center" Error
-
I'm using .tpl version. Where can I find your fltbook v2??
-
Hi can you helo me? I'm using your fltbook system and A payware module (Tour system of Crazy creatives common). On booking process it works fine but when I try bid with tour center the following error appear: Warning: Missing argument 3 for SchedulesData::addBid(), called in /home1/mcfilmsp/public_html/crewcenter/core/modules/TourCenter/TourCenter.php on line 188 and defined in /home1/mcfilmsp/public_html/crewcenter/core/common/SchedulesData.class.php on line 834 In Tourcenter.php missed the $aircraftid variable
-
Hi, I wanna share my code that I'm using to the briefing to my pilots. This code display the pax and cargo that they will use to their flight. It incluides Cargo and Passengers flight. <div class="col-md-4"> <table style="width: 100%"> <tr> <td class="auto-style12"><span class="auto-style26"><strong> <?php if($schedule->flighttype == "P") { echo "Pasajeros:"; } else if($schedule->flighttype == "C") { echo "Carga (KG):"; } ?></strong></span> <span class="auto-style26"><?php $allaircraft = OperationsData::GetAllAircraft(true); foreach($allaircraft as $aircraft) if($aircraft->registration == $schedule->registration) { if($schedule->flighttype == "P"){ echo round($aircraft->maxpax * 0.80, 0);} else if($schedule->flighttype == "C"){ echo round($aircraft->maxcargo * 0.80, 0) ;} } ?></td> </span></td> </tr> <tr> <td class="auto-style26"><strong><?php if($schedule->flighttype == "P") { echo "Carga (KG):"; } else if($schedule->flighttype == "C") { echo "Pasajeros:"; } ?></strong></span> <span class="auto-style26"><?php $allaircraft = OperationsData::GetAllAircraft(true); foreach($allaircraft as $aircraft) if($aircraft->registration == $schedule->registration) { if($schedule->flighttype == "P"){ echo round($aircraft->maxcargo * 0.30, 0);} else if($schedule->flighttype == "C"){ echo '0';} } ?></td> </tr> </table> </div> Put the code in: "/core/templates/schedule_briefing.tpl"
-
[Free] CrewCenter - Modern and responsive pilot center
ProSkyDesign replied to swan58's topic in Releases
Do you know the solution for the problem about cancel bids?? -
Is correct... Hey servetas there is any way to remvoe captcha in register?
-
Did you create a db user and a database with all permision? and then in installation of phpvms did you put in the form these information?
-
Now it works!! thanks you so much
-
Nice but i Think i don't have any variables for schedule jajaja look at my fleet page snippet code: <?php require 'lib/skins/crewcenter/app_top.php' ?> <section class="content-header"> <h1>Flota</h1> </section> <section class="content"> <section class="content"> <div class="row"> <div class="col-lg-16"> <div class="box box-primary"> <div class="box-body table-responsive"> <table id="tabledlist" class="tablesorter table table-hover"> <thead> <tr> <center> <th>Aerolínea</th> <th>Tipo</th> <th>Matrícula</th> <th>Ubicación</th> <th>Disponibilidad</th> <th>Estado</th> <th>Detalles</th> </tr> </thead> <tbody> <center> <?php if($aircrafts != null){ foreach($aircrafts as $aircrafts){ ?> <tr> <td><?php $allairlines = OperationsData::GetAllAirlines(true); foreach($allairlines as $airline) if($airline->code == $aircrafts->airline) { echo '<option value="'.$airline->code.'">'.$airline->name.'</option>'; } ?></td> <td><?php echo $aircrafts->fullname; ?></td> <td><?php echo $aircrafts->registration; ?></td> <?php $params = (array('a.registration'=>$aircrafts->registration, 'p.accepted'=>PIREP_ACCEPTED)); $pirep = PIREPData::findPIREPS($params); $current_location2 = $pirep[0]->arrname; ?> <td style="font-weight: bolder;"><?php echo $current_location.''.$current_location2; ?></td> <td><?php If($aircrafts->enabled == 1){echo 'Disponible';} elseif($aircrafts->enabled == 0) {echo '<p style="color:red">En Mantenimiento';} ?></td> <td><?php echo AircraftMarketData::getaccond($aircrafts->id);?>%</td> <td><a class="btn btn-primary btn-block" href="<?php echo url('fleet/view/' . $aircrafts->id); ?>">Ver</a></td> </tr> <?php } }?> </tbody> </table> </div> </div> </div> </div> </section> <?php require 'lib/skins/crewcenter/app_bottom.php' ?>
-
Same error Parse error: syntax error, unexpected '{' in /home1/mcfilmsp/public_html/crewcenter/core/pages/aeropuertos.php on line 2
-
Phpvms have some problems with free host for the functions that a premium host use (SQL, PHP version, Cronjob, etc.)
-
I'm using the same version if you don't use a free hosting, I can help you. Mail me: ceo@travelskyalliance.com
-
Maybe you have installed wrong the phpvms... What version did you install?
-
Cant register accounts no hubs,loactations or airlines
ProSkyDesign replied to Ayce's topic in Support Forum
Can you provide your website and for inbox?