Jump to content

dimitris

Members
  • Posts

    188
  • Joined

  • Last visited

Everything posted by dimitris

  1. Finally i have read almost all topics about Acars google map but mine still not working i have try kacars,xacars,fsacars but nothing displayed on map... only on xacars a got a display which is wrong . Got anybody this map to work ? i Like to make it working with Fspax if possible and not with other acars.
  2. well thank you for this add on ! but i upload a picture .jpg but it is not in the list waiting for approval... and not in the gallery. my data base got the name: shots is that a problem ? i have import your .sql file EDIT: Working fine! i miss a folder !
  3. nice ! but how the members can upload their pictures ?
  4. ready http://forum.phpvms.net/topic/3273-staff-list-v10-beta/
  5. Hello every one! I m proud to say that the first version of Staff members list is here ! This version is not editable table from the admin center but is editable direct to the . tpl file. 1)Download the files (staff.zip) 2)edit the staff.tpl file and insert your own data (staff members, jobs, mails, images) 3)Upload staff folder to your modules folder 4)Upload staff.tpl to your templates folder 5)Make a link to your website: yourwebsite.com/index.php/staff Remember is not editable from the admin center! only manual direct to .tpl Regards Dimitris446 EDIT: File removed.
  6. the only one i made is this: http://www.greeceairwaysva.com/fss/index.php/staff :lol: not editable from Admin Center but manual direct to the .tpl if you like it until the editable release from admin center ask me for download
  7. yea realy good hours to do updates. p.s. Jeff i saw Location Athens ? is that correct (your profile) you are from Greece ?
  8. thank you both for your answers i contact them and the answer was: Yes, We know that. Thar error coming because our server is under update period to the software
  9. Hello! Today from the morning i m getting the following error : "Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@greeceairwaysva.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." after 1~3 refresh page working fine ! Have something to do with the phpvms ? or is something with my host ?
  10. please someone like to spend some hours
  11. Hello i like to make a new pirep category with name "In Question" how i can do it ? For example i got a pirep with out very good calculate to the fuel and i like to have it in question no accept or reject
  12. well ok i figure it again my self now one more question to get it working need to put times on my schedules ? i m always leaving blank because i didn't like to use specified times
  13. can please someone post again the correct code to show departure and arrivals ? i lost it
  14. hmmm works fine here too... try the .rar Here: http://download290.mediafire.com/2wdcdmimyhlg/rzwqixrkgmh/ranks+and+awards+list.rar and the .zip again from the attachment ranks and awards list.zip
  15. Hello every one ! I don 't know if someone got it but i figure it and i like to share with you Ok the basic idea was to display a list of all rank of the company and a list of all the awards of the company to separated pages: test/develop and works with phpvms version 2.1.934 Download the attachments To install: 1) upload the contents of modules to your phpvms module file on server 2) upload the contents of templates to your templates folder on phpvms server 3)to view your rank list make a link to http://www.yoursite.com/index.php/rank 4)to view your awards list make a link to http://www.yoursite.com/index.php/awards thats it ! you are ready ! How it looks: ranks and awards list.zip
  16. Hello i will be much appreciate if someone can make a tour reporting system. (leg list, pilots signup, accept/reject flight report etc.) i like something separate from phpvms schedules. Thank you in advance !
  17. dimitris

    Tours

    i m searching for a tour system too! the only one i found in addons is the events system.
  18. thank you simpilot! i got it working fine ! Now my question, when i add news the news display both on front page and on the sidebar how i can make it to display only on sidebar and configure a brand new front page without the news ?
  19. Ok i will say that to my CEO thank you so much ! i m the Web Manager
  20. Hello! I got a realy big and strange problem! All the flights from flight schedules has been disappear! look a the screen shot ! and the data base is full! and the schedules_results.tpl is the following: <?php if(!$allroutes) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Flight Info</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach($allroutes as $route) { /* Uncomment this code if you want only schedules which are from the last PIREP that pilot filed */ /*if(Auth::LoggedIn()) { $search = array( 'p.pilotid' => Auth::$userinfo->pilotid, 'p.accepted' => PIREP_ACCEPTED ); $reports = PIREPData::findPIREPS($search, 1); // return only one if(is_object($reports)) { # IF the arrival airport doesn't match the departure airport if($reports->arricao != $route->depicao) { continue; } } }*/ /* Skip over a route if it's not for this day of week Left this here, so it can be omitted if your VA doesn't use this. Comment out these two lines if you don't want to. */ /* Check if a 7 is being used for Sunday, since PHP thinks 0 is Sunday */ $route->daysofweek = str_replace('7', '0', $route->daysofweek); if(strpos($route->daysofweek, date('w')) === false) continue; /* END DAY OF WEEK CHECK */ /* This will skip over a schedule if it's been bid on This only runs if the below setting is enabled If you don't want it to skip, then comment out this code below by adding // in front of each line until the END DISABLE SCHEDULE comment below If you do that, and want to show some text when it's been bid on, see the comment below */ if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { continue; } /* END DISABLE SCHEDULE ON BID */ /* Skip any schedules which have aircraft that the pilot is not rated to fly (according to RANK), only skip them if they are logged in. */ if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn()) { /* This means the aircraft rank level is higher than what the pilot's ranklevel, so just do "continue" and move onto the next route in the list */ if($route->aircraftlevel > Auth::$userinfo->ranklevel) { continue; } } /* THIS BEGINS ONE TABLE ROW */ ?> <tr> <td> <a href="<?php echo url('/schedules/details/'.$route->id);?>"><?php echo $route->code . $route->flightnum?> <?php echo '('.$route->depicao.' - '.$route->arricao.')'?> </a> <br /> <strong>Departure: </strong><?php echo $route->deptime;?> <strong>Arrival: </strong><?php echo $route->arrtime;?><br /> <strong>Equipment: </strong><?php echo $route->aircraft; ?> (<?php echo $route->registration;?>) <strong>Distance: </strong><?php echo $route->distance . Config::Get('UNITS');?> <br /> <strong>Days Flown: </strong><?php echo Util::GetDaysCompact($route->daysofweek); ?><br /> <?php echo ($route->route=='') ? '' : '<strong>Route: </strong>'.$route->route.'<br />' ?> <?php echo ($route->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($route->notes).'<br />' ?> <?php # Note: this will only show if the above code to # skip the schedule is commented out if($route->bidid != 0) { echo 'This route has been bid on'; } ?> </td> <td nowrap> <a href="<?php echo url('/schedules/details/'.$route->id);?>">View Details</a><br /> <a href="<?php echo url('/schedules/brief/'.$route->id);?>">Pilot Brief</a><br /> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { ?> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid');?>">Add to Bid</a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } } ?> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </tbody> </table> <hr>
  21. well i got one on my site and the name is photo gallery: 1)Create a database then import the database (data_base.sql) who is included in the attachment 2)Open db.php and write yours database user name and password 3)Upload all the files to your server 4)Create a link to your site or top menu: <li><a href="http://yoursite.com/your photo gallery upload folder/photo_gallery.php">Photo Gallery</a></li> PS: Accepted formats only .jpg and .gif PS2:If you like to remove a photo you can do it only from the database DEMO: http://greeceairwaysva.com/photogallery/photo_gallery.php If you like to change image thumbs size open photo_gallery.php and edit: $diastaseis = 'width=120 , height=80';
  22. Thank you so much!!!! Working Fine! realy good add on! Regards Dimitris p.s. keep up the good work
×
×
  • Create New...