-
Posts
2284 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by mark1million
-
The entry yo are looking for is in your stylesheet and .mnm li, its been a while since i found it but your best using firefox firebug and changing the css live time in there till you find the correct one.
-
NO your style sheet you need to find the settings for li entry and change that.
-
Your ObsessBlue directory, in your skins folder
-
Its a class setting, wont take you long to sort.
-
Took me a month to find that tricky setting
-
I had that its in your css remove the .li css (i think!!) Back your stuff up 1st but its a class setting.
-
Hey i dont normally get too annoyed but you my friend are taking the complete p*ss. After all the help i gave you, you decide to copy most my content word for word and put on your va. Shocking!!!!!! You should be ashamed! http://airzenavirtual.com/index.php/pages/terms http://www.easyjetva.com/index.php/pages/terms http://airzenavirtual.com/index.php/pages/disclaimer You cant even be bothered to change the wording here you just copy and paste to your site.
-
Its called mail_inbox.tpl
-
Yeh its a bit tricky that one, have a look at the mail_menu.tpl, should be like this <style type="text/css"> .left { width: 150px; float: left; min-height: 300px; padding: 5px 0 15px 5px; } .right { float: left; margin-left:10px; padding-top: 5px; } </style> <div class="left"> <?php if(isset($message)) {echo $message.'<br />';} $folders = MailData::checkforfolders(Auth::$userinfo->pilotid);?> <br /> <b>AIRPilot Mail Menu</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/newmail">New message</a></li> </ul> <b>Folders</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail">AIRMail Inbox</a></li> <?php if (isset($folders)) {foreach ($folders as $folder) {echo '<li><a href="'.SITE_URL.'/index.php/Mail/getfolder?id='.$folder->id.'">'.$folder->folder_title.'</a></li>';} } ?> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/sent">Sent Messages</a></li> </ul> <b>Folder Options</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/newfolder">New Folder</a></li> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/deletefolder">Delete A Folder</a></li> </ul> </div> And the mail inbox code should sit inbetween the <div class="mcright"> divs. Give that a try.
-
Drop me some links again and ill have a look.
-
Double or tripple bids - how to restrict?
mark1million replied to CEO North Air's topic in Support Forum
I believe you can restrict what a pilot can see on the schedules also preventing him from bidding on flights that he does not have the rank to fly. In the admin section edit the aircrafts, in there you will see minimum rank to fly. In the schedules results tpl (i think) there is an option to uncomment out the code to restrict the display to the aircraft the pilot is ranked to fly. Hope you get what i mean. -
Everything needs to sit in a div class="mcright" tag, every template you need this in to for that skin, also a max width of 95% or 700px
-
Hi what are you trying to login to? To connect to the server just open up your flight sim and go to the multiplayer section and type in the ipaddress of the server and connect, no passwords are required. If you want to display the server ipaddress connection details on your website then just add the server status as an i frame to any page you want it displayed. Link is here, http://fshost.vacentral.net:82/user300.html <iframe src="http://fshost.vacentral.net:82/user300.html" width="200" height="250" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe> Hope that helps.
-
Hey i dont mind helping you but do me a favor and stop ripping off my site, or at lease ask! The code you are looking for is a if else statement for the images active / inactive the code is listed in these forums if you search.
-
I have just made the security modifications and everything is fine. I would suggest if your having problems then its normally best to start from scratch.
-
Hi you have the files in the wrong places. If you remove them all and start again uploading them carefully to their correct locations,
-
All those colors can be changed in the css have a look.
-
Free hosting puts too many restrictions in to its configs, they cram as many sites on to one server as they can so they throttle whats available to you and lock down other features that phpvms uses to function correctly.
-
The easiest way is t use Google translate. You can have it load in what ever your primary language you like.
-
What part do you need help with?
-
Come on guys keep it civil. We will all try to help everybody with the knowledge we have all experienced with phpvms, just might take longer some days to get a response. You cant demand help and throw your toys out when you don't get an immediate response.
-
She will only get the one email warning of her retirement, and yes she will need an account to access the system, as she is now retired nothing else needs to be done, she will continue to be able to login and perform admin functions as normal.
-
OK you need to make table headers, This should be your structure table th tr Example, echo '<h3 align="left">All Time Greats</h3>'; echo '<table width="100%" border="0" cellspacing="0" cellpadding="1">'; echo '<tr><td width="50%" valign="top">'; echo '<center>'; echo '<b>Top Pilots All Time </b>(Flights Flown)'; echo '<table cellspacing="1" cellpadding="1" border="1">'; echo '<tr>'; echo '<th width="175px"><div align="left">Pilot Details</div></th>'; echo '<th><div align="center">Flights Flown</div></th>'; echo '</tr>'; $all_flights = TopPilotData::alltime_flights(10); foreach($all_flights as $all) { $pilot = PilotData::GetPilotData($all->pilotid); echo '<tr>'; echo '<td><div align="left">'.$pilot->firstname.' '.$pilot->lastname.' - '.PilotData::GetPilotCode($pilot->code, $pilot->pilotid).'</div></td>'; echo '<td><div align="center">'.$all->totalflights.'</div></td>'; echo '</tr>'; } echo '</table>'; echo '</td><td width="50%" valign="top">'; echo '<center>'; echo '<b>Top Pilots All Time </b>(Hours Flown)'; echo '<table cellspacing="1" cellpadding="1" border="1">'; echo '<tr>'; echo '<th width="175px"><div align="left">Pilot Details</div></th>'; echo '<th><div align="center">Hours Flown</div></th>'; echo '</tr>'; $all_hours= TopPilotData::alltime_hours(10); foreach($all_hours as $all) { $pilot = PilotData::GetPilotData($all->pilotid); echo '<tr>'; echo '<td><div align="left">'.$pilot->firstname.' '.$pilot->lastname.' - '.PilotData::GetPilotCode($pilot->code, $pilot->pilotid).'</div></td>'; echo '<td><div align="center">'.$all->totalhours.'</div></td>'; echo '</tr>'; } echo '</table>'; echo '</td></tr>'; echo '</table>'; echo '<br />'; echo '<hr />';
-
you could always manually add accreditations per the flights, 50 flights award, 100 flights award etc