mattsmith
Members-
Posts
373 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by mattsmith
-
[SKIN] Disposable Theme (Current)
mattsmith replied to DisposableHero's topic in Disposable Hero Addons
-
Is there a free acars you can use with phpvms 7 until i can afford the paid version?
-
It's ok i managed it
-
Is there anyone that can help me install Phpvms7, I'm really struggling with it.
-
-
Preferably in English
- 1 reply
-
- 1
-
I an getting a "your connection is not private" warning on my pc
-
How Do You Put vaCentral On Your Va Site?
mattsmith replied to KorrexelzYT's topic in General & Support
Just paste it at the bottom of local.config,php -
Download link?
-
I'm trying to get the pilots stats to show on my front page, i have added the following code to frontpage_main.php but it's not pulling the data. <ul class="list-group"> <li class="list-group-item"><span class="badge"><?php echo $userinfo->totalflights?></span>Total Flights</li> <li class="list-group-item"><span class="badge badge-default"><?php echo $userinfo->totalhours; ?></span>Total Hours</li> <li class="list-group-item"><span class="badge badge-primary"><?php echo $userinfo->transferhours?></span>Transfer Hours</li> <li class="list-group-item"><span class="badge badge-success"><?php echo FinanceData::FormatMoney($userinfo->totalpay) ?></span>Pay</li> <li class="list-group-item"><span class="badge badge-warning"><?php echo $nextrank->rank?></span>Next Rank</li> <li class="list-group-item"><span class="badge badge-warning"><?php echo ($nextrank->minhours - $pilot_hours)?></span>Hrs until Next Rank</li> </ul>
-
I have added the pilot login to frontpage_main so it shows up on the main site. How do i make it disapear once logged in?
-
Thanks that worked.
-
If i try changing ADMIN_EMAIL to the email address i get an error that there is an @ on line 66
-
<?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <h3>Contact Us</h3> <form method="post" action="<?php echo url('/contact'); ?>"> <table width='100%' border='0'> <tr> <td><strong>Name:</strong></td> <td> <?php if(Auth::LoggedIn()) { echo Auth::$userinfo->firstname .' '.Auth::$userinfo->lastname; echo '<input type="hidden" name="name" value="'.Auth::$userinfo->firstname .' '.Auth::$userinfo->lastname.'" />'; } else { ?> <input type="text" name="name" value="" /> <?php } ?> </td> </tr> <tr> <td width="1%" nowrap><strong>E-Mail Address:</strong></td> <td> <?php if(Auth::LoggedIn()) { echo Auth::$userinfo->email; echo '<input type="hidden" name="name" value="'.Auth::$userinfo->email.'" />'; } else { ?> <input type="text" name="email" value="" /> <?php } ?> </td> </tr> <tr> <td><strong>Subject: </strong></td> <td><input type="text" name="subject" value="<?php echo $_POST['subject'];?>" /></td> </tr> <tr> <td><strong>Message:</strong></td> <td> <textarea name="message" cols='45' rows='5'><?php echo $_POST['message'];?></textarea> </td> </tr> <tr> <td width="1%" nowrap><strong>Captcha</strong></td> <td> <?php if(isset($captcha_error)){echo '<p class="error">'.$captcha_error.'</p>';} ?> <div class="g-recaptcha" data-sitekey="<?php echo $sitekey;?>"></div> <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?hl=<?php echo $lang;?>"> </script> </td> </tr> <tr> <td> <input type="hidden" name="loggedin" value="<?php echo (Auth::LoggedIn())?'true':'false'?>" /> </td> <td> <input type="submit" name="submit" value='Send Message'> </td> </tr> </table> </form>
-
I use the custom phpvms contact form.
-
Is there a way of changing the email that the contact form sends to? I want all contact emails to go to my CEO
-
How do you change all the blue colour
-
How do i change this code so it will show a background image from another folder..... (images/fraport.jpg) <body class="hold-transition login-page" style="background-color: #222222;">
-
I want to show it in the profile_main Error: Warning: Invalid argument supplied for foreach() in /home/u230581216/public_html/lib/skins/crewcenter/profile_main.php on line 119
-
No that doesn't work.
-
Can someone tell me the code to show a pilots last 5 flights.