Jump to content

mark1million

Moderators
  • Posts

    2283
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. HI i dont have a problem with the search, if you like i could pastebin that template for you?
  2. Nice one Roger, i was only commenting about converting across today
  3. Totally agree Thats next on my list to bring my site to the new way Still if it isnt broken dont try to fix it lol found that out when i updated my server to the latest release, should have left well alone, still all sorted now
  4. introbb If you have set widths just adjust them Make that column bigger. Nice to see you guys up and running, nice site by the way.
  5. If i remember right the vids were using the old style of templates, the new way i dont think has been video'd yet
  6. Funny subject, i have been googleing this all day today, i have no problem with the favicon but i cant get it to show up in IE Joeri Yes just set the favicon names to the right image you want to display in the header of your site.
  7. When i go to the news i get /admin/index.php/sitecms/viewnews When i go to edit i get /admin/index.php/sitecms/editnews?id=72 This is your news posts, your first post is 1 2nd is 2 etc etc
  8. I do remember them but cant seem to find them anymore I think thats because they were the old way.
  9. Jeff posted a fix to the sort active inactive and added pilot numbers, ill have a search and post that link. http://forum.phpvms.net/topic/3838-sorting-activeinactive-pilots-solved/page__view__findpost__p__25982 That will fix you up
  10. Have you tried another browser? Also in your browser the first screen shot the url is yoururl/phpvms//admin/index.php etc etc but in another shot its listed as yoururl/phpvms/admin/index.php one /... Just check you have the right path defined in your local config.php file
  11. No what is your site url we can try it see if its just your system or the server?
  12. Do you mean your average landing rate? You could also expand this to show Softest and Hardest landing rate.
  13. Mine is heavily modified what is it you need?
  14. When your pilots register then select their hub then.
  15. Upload the install directory and check your install, that will tell you where most things going wrong.
  16. Thats in your css file just look for the setting tabcontainer or is you have changed the li setting, Just check the code in your schedule_searchform.tpl <div id="tabcontainer"> <ul> <li><a href="#depapttab"><span>By Departure Airport</span></a></li> <li><a href="#arrapttab"><span>By Arrival Airport</span></a></li> <li><a href="#aircrafttab"><span>By Aircraft Type</span></a></li> <li><a href="#distance"><span>By Distance</span></a></li> </ul>
  17. Is it possible to pass the initial requested page as a variable so once they logged it it would take them to that page?
  18. http://forum.phpvms.net/topic/3899-no-hub/page__pid__26364
  19. OK forget that that doesnt work either lol
  20. Yeh that's why i said its not ideal. Like simpilot said you might as well be better off creating your own, you can try this and expand on it, In the pilots_list.tpl you can try, <?php $this->set('pilots', PilotData::getAllPilots()); ?> <div class=â€mcrightâ€> <table width="700" cellspacing="1" cellpadding="5" border="1"> <tr> <td>Pilot</td> <td>Country</td> </tr> <?php foreach($allpilots as $pilot) { echo '<tr>'; echo '<td>'.$pilot->firstname.' '.$pilot->lastname.'</td>'; echo '<td>'.$pilot->location.'</td>'; echo '</tr>'; } ?> </table> </div> Just add to the fields you want to display, not the ideal solution as you have the code in the template.
  21. I don't have much time but this is a quick hack, not the ideal solution but it may be OK for you, Just a couple of edits, Find pilots.php in the core/modules/pilots and comment out the following,line 31 and 32, //$this->set('title', $hub->name); //$this->set('icao', $hub->icao); Then go over to the template pilots_list.tpl in your skins profile and remove the h3 tag at the top.
  22. Yes i seen a post here somewhere, let me have a look and ill get back to you with the code after testing it.
  23. HI these settings are in the app.config.php, just copy them over to your local.config.php and change as you wish, you will need to regenerate your signatures from with in the admin panel once you have changed the settings. # Options for the signature that's generated Config::Set('SIGNATURE_TEXT_COLOR', '#000'); Config::Set('SIGNATURE_USE_CUSTOM_FONT', true); Config::Set('SIGNATURE_FONT_PATH', SITE_ROOT.'/lib/fonts/tahoma.ttf'); Config::Set('SIGNATURE_FONT_SIZE', '10'); Config::Set('SIGNATURE_X_OFFSET', '10'); Config::Set('SIGNATURE_Y_OFFSET', '17'); Config::Set('SIGNATURE_FONT_PADDING', 4); Config::Set('SIGNATURE_SHOW_EARNINGS', true); Config::Set('SIGNATURE_SHOW_RANK_IMAGE', true); Config::Set('SIGNATURE_SHOW_COPYRIGHT', true); If you want to use a custom font just download it and place it in the referenced folder.
  24. I have 2 airline codes in my schedules and they both search fine by selecting the airline, sorry to sound a but stupid but have you tried a copy and paste from the default template in to yours and adapt that? Or even still trying with the default skin see if its doing what you want.
×
×
  • Create New...