sev Posted July 1, 2017 Report Share Posted July 1, 2017 Just now, tim260 said: Hi, That could have numerous reasons but not for this topic since this is the CrewCenter topic. you could private message me on here Ok cheers Quote Link to comment Share on other sites More sharing options...
livr517 Posted August 5, 2017 Report Share Posted August 5, 2017 Hello all, First let me start by saying Mark, thanks for the great platform. It's taken some work and some serious reading to get things the way I want them, but thanks to so many people sharing solutions it has been a bit easier than I thought. With that said I need help to get the individual profile pictures to change and save. I've attempted a couple of solutions found online with no luck. When I hit that save changes button nothing happens. Can someone please assists? Thanks! in advance FYI I will be sharing screenshots after I have it all sorted out. I will also provide a demo account for you all to look around and let me know what you all think. Quote Link to comment Share on other sites More sharing options...
HCStrike Posted August 7, 2017 Report Share Posted August 7, 2017 Anyone know why my crew center looks like this, http://prntscr.com/g5bus8 I am on phpvms 5.5 and I am using the files in the php_templates folder Quote Link to comment Share on other sites More sharing options...
ncd200 Posted August 7, 2017 Report Share Posted August 7, 2017 21 minutes ago, HCStrike said: Anyone know why my crew center looks like this, http://prntscr.com/g5bus8 I am on phpvms 5.5 and I am using the files in the php_templates folder ing issues with the css not being loaded correctly, why, I cant say right now, are you running minimal php version 5.5 on your host as well? Quote Link to comment Share on other sites More sharing options...
HCStrike Posted August 7, 2017 Report Share Posted August 7, 2017 I fixed it by making my directory lower case, im an idiot ahaha Quote Link to comment Share on other sites More sharing options...
ncd200 Posted August 7, 2017 Report Share Posted August 7, 2017 glad you have fixed it. Quote Link to comment Share on other sites More sharing options...
HCStrike Posted August 7, 2017 Report Share Posted August 7, 2017 Anyone know what code I can change in the profile_main.php so that when users change their avatar in the settings that change is reflected in their profile Quote Link to comment Share on other sites More sharing options...
livr517 Posted August 7, 2017 Report Share Posted August 7, 2017 1 hour ago, HCStrike said: Anyone know what code I can change in the profile_main.php so that when users change their avatar in the settings that change is reflected in their profile im till waiting for assistance with the same question. Quote Link to comment Share on other sites More sharing options...
HCStrike Posted August 7, 2017 Report Share Posted August 7, 2017 Find and replace <?php echo SITE_URL?>/lib/skins/crewcenter/dist/img/pilot.png with "<?php echo PilotData::getPilotAvatar($pilotcode); ?>" There should be one in your (phpVMS Install)/lib/skins/(crewcenter)/profile_main.php and three in /app_top.php Quote Link to comment Share on other sites More sharing options...
livr517 Posted August 8, 2017 Report Share Posted August 8, 2017 3 hours ago, HCStrike said: Find and replace <?php echo SITE_URL?>/lib/skins/crewcenter/dist/img/pilot.png with "<?php echo PilotData::getPilotAvatar($pilotcode); ?>" There should be one in your (phpVMS Install)/lib/skins/(crewcenter)/profile_main.php and three in /app_top.php I only I corrected the profile_main.php however the app_top.php only contains one, not three. Thus far it changed the photo to the default phpvms avatar. would you mind posting the section where I should be finding each one of them? Quote Link to comment Share on other sites More sharing options...
HCStrike Posted August 8, 2017 Report Share Posted August 8, 2017 The app_top contains all the information for both the top and the navbar, the nav bar contains 1 and the header contains 2 as there is a dropdown, I'll post the sections later Quote Link to comment Share on other sites More sharing options...
oghorizon Posted August 30, 2017 Report Share Posted August 30, 2017 I am getting a No route passed error when trying to add a bid from my schedule, I am using Nabeel's version of phpvms using php 7. The build is 936 for phpvms if that helps. Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted September 11, 2017 Report Share Posted September 11, 2017 (edited) I'm going to ask you some questions now, the sooner I want to thank the incredible team center! Thank you! I'm new to phpVMS for all these questions 1: How to add hubs? 2: How to add routes? 3: How to add downloads? 4: When I create hubs this error happens: http://prntscr.com/gjzquw (SBGR edit: http://prntscr.com/gjzr8q) Edited September 11, 2017 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted September 11, 2017 Report Share Posted September 11, 2017 On 01/10/2016 at 7:03 AM, ShrikarG said: Hello , I don't know if this bug is just with me or with everyone :- When I edit any Info in my Profile , It doesnt get saved. It stays with previous values itself. Hence I have modified the code between (approx) line 17 to line 109 in profileedit.php/tpl (after the code "<form action="<?php echo url('/profile');?>" method="post" enctype="multipart/form-data">) Edited Code : <dl> <label>Name</label> <dd><input type="text" class="form-control" disabled placeholder="<?php echo $pilot->firstname . ' ' . $pilot->lastname;?>"></dd> <label>Airline</label> <dd><input type="text" class="form-control" disabled placeholder="<?php echo $pilot->code?>"> <p>To request a change, contact your admin</p> </dd> <label>Email Address</label> <dd><input type="text" class="form-control" name="email" value="<?php echo $pilot->email;?>" /> <?php if(isset($email_error) && $email_error == true) echo '<p class="error">Please enter your email address</p>'; ?> </dd> <label>Location</label> <dd><select name="location" class="form-control"> <?php foreach($countries as $countryCode=>$countryName) { if($pilot->location == $countryCode) $sel = 'selected="selected"'; else $sel = ''; echo '<option value="'.$countryCode.'" '.$sel.'>'.$countryName.'</option>'; } ?> </select> <?php if(isset($location_error) && $location_error == true) echo '<p class="error">Please enter your location</p>'; ?> </dd> <label>Signature Background</label> <dd><select name="bgimage" class="form-control"> <?php foreach($bgimages as $image) { if($pilot->bgimage == $image) $sel = 'selected="selected"'; else $sel = ''; echo '<option value="'.$image.'" '.$sel.'>'.$image.'</option>'; } ?> </select> </dd> <?php if($customfields) { foreach($customfields as $field) { echo '<dt>'.$field->title.'</dt> <dd>'; if($field->type == 'dropdown') { $field_values = SettingsData::GetField($field->fieldid); $values = explode(',', $field_values->value); echo "<select name=\"{$field->fieldname}\">"; if(is_array($values)) { foreach($values as $val) { $val = trim($val); if($val == $field->value) $sel = " selected "; else $sel = ''; echo "<option value=\"{$val}\" {$sel}>{$val}</option>"; } } echo '</select>'; } elseif($field->type == 'textarea') { echo '<textarea name="'.$field->fieldname.'" class="customfield_textarea">'.$field->value.'</textarea>'; } else { echo '<input type="text" name="'.$field->fieldname.'" value="'.$field->value.'" />'; } echo '</dd>'; } } ?> Please NOTE : Do not edit the code unnecessarily. Edit the code only if the changes made in Edit Profile page are not reflected after saving it. The above code works for me. I am using PHPVMS v5.5 @ShrikarG not worked pls help-me, send all code Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted September 18, 2017 Moderators Report Share Posted September 18, 2017 Really love crewcenter but for some reason a pilots avatar does not show on every page. It does on the main dashboard, but any other page just reverts back to the default avatar. Any ideas? Strangely, when you view a different pilots profile, it shows THEIR avatar in the menu instead of your own. Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted September 18, 2017 Report Share Posted September 18, 2017 34 minutes ago, shakamonkey88 said: Really love crewcenter but for some reason a pilots avatar does not show on every page. It does on the main dashboard, but any other page just reverts back to the default avatar. Any ideas? Strangely, when you view a different pilots profile, it shows THEIR avatar in the menu instead of your own. Same thing. @shakamonkey88 Did you get it sorted? Quote Link to comment Share on other sites More sharing options...
frontez Posted September 28, 2017 Report Share Posted September 28, 2017 Hey can anyone tell me why this happens to me? https://gyazo.com/6782b8dc8b4acfad086096d764a0a0ec Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted October 6, 2017 Report Share Posted October 6, 2017 Hey brothers, When I go to someone's profile, the profile gets totally bad, all disorganized, like the following image: https://prnt.sc/gttqru And also appears "My reports" should be "List of reports" as far as I know, and in the blue frame also appears my reports. Can someone help me? Quote Link to comment Share on other sites More sharing options...
VirtualAirMalta Posted November 23, 2017 Report Share Posted November 23, 2017 (edited) Hi, I’m having an issue with this skin. Login goes fine, but when it redirects after a successful login to what is supposed to be the profile page, I just get a blank white screen. The admin panel works fine. I am on Nabeel’s PHPVMS 5.5.2 and have followed the php_templates fix as stated above. The skin folder is named crewcenter. Does anyone know what’s going on here? Edited November 23, 2017 by VirtualAirMalta Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 25, 2017 Report Share Posted November 25, 2017 On 11/23/2017 at 8:52 AM, VirtualAirMalta said: Hi, I’m having an issue with this skin. Login goes fine, but when it redirects after a successful login to what is supposed to be the profile page, I just get a blank white screen. The admin panel works fine. I am on Nabeel’s PHPVMS 5.5.2 and have followed the php_templates fix as stated above. The skin folder is named crewcenter. Does anyone know what’s going on here? Are you on a free host? Free Host have a tough time with phpVMS. If you are on a free host, I would recommend a paid hosting. Quote Link to comment Share on other sites More sharing options...
VirtualAirMalta Posted November 26, 2017 Report Share Posted November 26, 2017 22 hours ago, flyalaska said: Are you on a free host? Free Host have a tough time with phpVMS. If you are on a free host, I would recommend a paid hosting. I am on free, but just to test stuff out and I would like to have it concrete before I pay. Quote Link to comment Share on other sites More sharing options...
RedKingOne Posted December 5, 2017 Report Share Posted December 5, 2017 First off, Mark a great job on this skin. My favorite by far. Now on to business. Although I am new to coding and understanding much of HTML and CSS I have my VA almost at 100%. Two things elude me and I'm hoping to find the help I need here. The 3rd one, not a big deal. 1 - The profile picture is not saving when I change it. I can go to edit profile select what I want, it just won't save the changes. 2 - I installed the phpvms in a subforum of my site as directed however, I wish to bring the acars map to the front page. I've looked around for this one too and no help yet. 3 - This one is not to big of a deal but if anyone knows how to get rid of this error (Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ReCaptcha has a deprecated constructor in /home/flyvirtu/crew.flyvirtualfrontier.com/core/lib/recaptcha/recaptchalib.php on line 42) in the registration page that would be great. Ive already attempted just deleting it and also replacing the line with php7 configs and no luck. I am configured for .PHP and I am using version 5.6 on my hosting site. Any help or suggestion would be very much appreciated. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
atulumello Posted December 5, 2017 Report Share Posted December 5, 2017 On 11/26/2017 at 1:24 PM, VirtualAirMalta said: I am on free, but just to test stuff out and I would like to have it concrete before I pay. There is your problem, you are on a free host. Paid hosts that will work with phpvms are pretty cheap... 5 bucks to test for a month. 2 hours ago, Shadesb181 said: First off, Mark a great job on this skin. My favorite by far. Now on to business. Although I am new to coding and understanding much of HTML and CSS I have my VA almost at 100%. Two things elude me and I'm hoping to find the help I need here. The 3rd one, not a big deal. 1 - The profile picture is not saving when I change it. I can go to edit profile select what I want, it just won't save the changes. 2 - I installed the phpvms in a subforum of my site as directed however, I wish to bring the acars map to the front page. I've looked around for this one too and no help yet. 3 - This one is not to big of a deal but if anyone knows how to get rid of this error (Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ReCaptcha has a deprecated constructor in /home/flyvirtu/crew.flyvirtualfrontier.com/core/lib/recaptcha/recaptchalib.php on line 42) in the registration page that would be great. Ive already attempted just deleting it and also replacing the line with php7 configs and no luck. I am configured for .PHP and I am using version 5.6 on my hosting site. Any help or suggestion would be very much appreciated. Thanks in advance. I'm a bit confused.. are you using PHP 5.6 or 7? Also, I do not believe there is a easy way to pull the acars map up to your front page which is separate from the phpvms install. Quote Link to comment Share on other sites More sharing options...
RedKingOne Posted December 5, 2017 Report Share Posted December 5, 2017 9 hours ago, atulumello said: There is your problem, you are on a free host. Paid hosts that will work with phpvms are pretty cheap... 5 bucks to test for a month. I'm a bit confused.. are you using PHP 5.6 or 7? Also, I do not believe there is a easy way to pull the acars map up to your front page which is separate from the phpvms install. I was using 5.6 downgraded to 5.5. After reading the forums more, learned my version of phpvms works more stable on 5.5. as for the front page acars map, ill have to sort something out. Quote Link to comment Share on other sites More sharing options...
atulumello Posted December 6, 2017 Report Share Posted December 6, 2017 11 hours ago, Shadesb181 said: I was using 5.6 downgraded to 5.5. After reading the forums more, learned my version of phpvms works more stable on 5.5. as for the front page acars map, ill have to sort something out. Ah I see, hopefully your error is fixed.. 5.5.X is build for 5.5 Quote Link to comment Share on other sites More sharing options...
Omerr01 Posted December 30, 2017 Report Share Posted December 30, 2017 Hello, I had some weird problem with a login page, The checkbox "remember" has showen for a 0.5 sec and disappeared from the screen, Any one has a fix for this problem? Quote Link to comment Share on other sites More sharing options...
BlakePope Posted January 3, 2018 Report Share Posted January 3, 2018 Hello, can anyone tell me where to navigate and insert my keys for the reCAPTCHA Google map Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted January 3, 2018 Report Share Posted January 3, 2018 (edited) 14 hours ago, BlakePope said: Hello, can anyone tell me where to navigate and insert my keys for the reCAPTCHA Google map Ok, it's very simple, 1. reCAPTCHA - Go to core/app.config.php or tpl, and approximately on lines 242 to 245 you will find this: /* Keys for recaptcha, you can change these if you want to your own but it's a global key so it should just work */ Config::Set('RECAPTCHA_PUBLIC_KEY', 'YOUR_RECAPTCHA_PUBLIC_KEY'); Config::Set('RECAPTCHA_PRIVATE_KEY', 'YOUR_RECAPTCHA_PRIVATE_KEY'); Just change to your reCAPTCHA public key and private key 2. Google Map - Go to /lib/skins/crewcenter/core_htmlhead.php or tpl, and the line you are looking for is, <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script> Replace to <script async defer src="https://maps.googleapis.com/maps/api/js?key=PLACE YOURKEY IN HERE&callback=initMap"></script> Replace PLACE YOURKEY IN HERE with your generated key Edited January 3, 2018 by CarlosEduardo2409 1 Quote Link to comment Share on other sites More sharing options...
gio1961 Posted March 15, 2018 Report Share Posted March 15, 2018 On 30/12/2017 at 10:53 AM, Omerr01 said: Hello, I had some weird problem with a login page, The checkbox "remember" has showen for a 0.5 sec and disappeared from the screen, Any one has a fix for this problem? Hi, did you solve the problem? if so? I have the same problem too.. Greetings Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted March 15, 2018 Moderators Report Share Posted March 15, 2018 Change this: <input type="checkbox" name="remember"> Remember Me to this: <label style="font-weight: normal;"><input type="checkbox" name="remember"> Remember Me</label> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.