Jump to content

mark1million

Moderators
  • Posts

    2283
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. Its not that difficult when you start to sit down and look in to it. Its worth learning to do it if you want to run your own VA.
  2. Yes just add the width and height attribute to the img so, <img src="http://www.bluepanoramava.joomlafree.it/Background.png" width="250" height="100" /> Change to suite your needs
  3. Create it in your css. so, #yourname { color: #your color hex; font-family: Times New Roman; font-size: 16px; } The all you have to do to use it is <p id="yourname">Some Text</p>
  4. Thanks Nabeel, thats great but its sending the wrong email The email that's sent is the email_registered.tpl and should be email_registrationaccepted.tpl
  5. Looks like a couple of unused divs in there, have a look at your frontpagemain.tpl should be nothing in there apart from the top div mcright then the show news module. Not fully sure how v2 goes but thats how is is for v1.
  6. Check that you have the font installed in the lib fonts folder, i would re-upload as it looks as though that file is corrupt or can not be read.
  7. Currently as it is no pilot can login, it needed a change to the top line. they were all set to false
  8. Thanks Nabeel, its the email_registrationaccepted.tpl in the live skins folder.
  9. Can you add that resend button to the admin pilots page, with the addition of the ability to close accounts now it would be good if that button was on their admin profile where we can change their status back to active again then click the resend pilot info button to send them all their details.
  10. See Here http://forum.phpvms.net/topic/5026-rev-v21934-126-g35a51d1-close-24-added-different-pilot-statuses/
  11. Word of warning guys, When you copy this to your local.config.php make sure you change the top part to, can login true or all of your pilots wont be able to log in and your VA will become a bit quiet /* These are pilot statuses which can be selected in the admin panel */ Config::Set('PILOT_STATUS_TYPES', array( 0 => array( 'name' => 'Active', # The title to show in the dropdown 'message' => '', # Message to show if they can't login (below is false) 'canlogin' => true, # Are they allowed to log in Set to True to enable pilots to login 'active' => true, # Are they an active pilot? ), 1 => array( 'name' => 'Inactive', 'message' => 'Your account was marked inactive', 'canlogin' => false, 'active' => false, ), 2 => array( 'name' => 'Banned', 'message' => 'Your account is banned, please contact an admin!', 'canlogin' => false, 'active' => false, ), 3 => array( 'name' => 'On Leave', 'message' => 'You have been marked as on leave', 'canlogin' => false, 'active' => false, ), ));
  12. Nabeel, Pilots list (admin side) is not showing up after this one.
  13. I see, if i remember right they were moved ages ago as to not be overwritten in an update, i wondered why someone was getting old welcome emails If this is a Permanent move ill copy them back to the admin side.
  14. Getting the following when rejecting a pilot, /admin/templates/email_registrationdenied.tpl" doesn't exist in /core/classes/TemplateSet.class.php on line 226 This template is usually in the active skins folder.
  15. Looks like this will be the 3rd update tonight lol Thanks, will make things more definable.
  16. OK well thats your problem then, go to your site admin and download all your aircraft in the csv format, edit the names and upload again, that should fix your problem.
  17. Just replied. Like the rest of us we don't usually reply to pm requests as the community benefits if its a public post
  18. Hi i created this board myself so i cant comment on how other have done it or what code your using in yours. Basically all you need to do is access the api and read the data from your acars table which will translate in to your board. This is the code to access the entries in the table, <?php $flights = ACARSData::GetACARSData(); if ($flights OR $fsfk > 0) { if($flights) { foreach($flights as $flight) { $pid = $flight->pilotid + 100;?> Then all you do is access the table row names with, <?php echo $flight->aircraftname?> Use the $flight->yourtablename?> and it will show. Hope that helps.
  19. Do you have that directory? If so it has to be 777 full read write access. Do you also have a image in the background directory?
×
×
  • Create New...