CarlosEduardo2409 Posted May 31, 2018 Report Share Posted May 31, 2018 (edited) Hello everyone, I'm happy to announce my new free skin for phpVMS. A skin made in ElixarCode. DOWNLOAD & HOW TO INSTALLATION: DEMO: Demo not working, because I don't have a host. Sorry guys, I don't have money now. I'll try to fix. IMPORANT: This skin was made for phpVMS 5.5.2 This skin is designed using the Bootstrap framework, meaning it is fully responsive and works well on all sized devices, including desktops, tablets and phones. ElaSkin is not a complete website skin, it is only a pilot center application, designed to be installed into a phpVMS installation. If you have any feature, plugin skiing or custom VA branding requests, feel free to post a reply below. Enjoy! Screenshots: Dashboard page Flight Report Page Downloads page AirMail I was inspired by the crewcenter of @swan58 & iCrew Lite of @LeonardIGO4036 EDIT: I just forgot to give credit to the creators of the used modules, sorry: AirMail 3.0 & Touchdown Stats by @simpilot EDIT 2020: I am aware that the credits on the footer are wrong, I will be fixing it. If you already have the skin, please change the footer in "app_bottom.php" to the following: © 2020 All rights reserved. Template designed by Colorlib CrewCenter by Carlos Eduardo | Powered by phpVMS This skin was made using the ElaAdmin Template by Colorlib, due credits must be used on the footer. Edited April 24, 2020 by CarlosEduardo2409 1 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 4, 2018 Author Report Share Posted June 4, 2018 (edited) UPDATE Airmail 3 + Pilot Public Profile + Admin Notification was added to ElaSkin. To download, go back to the top topic and download it through github. Do you have any idea for a new module for a future version? Let me know... Thanks. Edited June 4, 2018 by CarlosEduardo2409 1 Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted June 5, 2018 Moderators Report Share Posted June 5, 2018 Does the php-skins.com know that you are distributing their payware work within your free skin? You also seem to be breaking the copyright law of the admin template you are using. The developer of ElaSkin has stated: "ElaAdmin is licensed under The MIT License (MIT). Which means that you can use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the final products. But you always need to state that Colorlib is the original author of this template." Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 5, 2018 Author Report Share Posted June 5, 2018 (edited) Hi @shakamonkey88, Is there anything on the skin that belongs to him? Because I did not put anything on, even because I never bought anything from him. LICENSE - I'll fix when I get home. Edited June 5, 2018 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted June 5, 2018 Moderators Report Share Posted June 5, 2018 See here: https://i.imgur.com/qSdl62x.png Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 5, 2018 Author Report Share Posted June 5, 2018 (edited) 54 minutes ago, shakamonkey88 said: See here: https://i.imgur.com/qSdl62x.png But this not in the skin. The mail module is Airmail 3 (simpilot) but customized with the skin. Edited June 5, 2018 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted June 5, 2018 Moderators Report Share Posted June 5, 2018 Ah yes - it's pulling that line from my local stack Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 5, 2018 Author Report Share Posted June 5, 2018 Haha no problem Quote Link to comment Share on other sites More sharing options...
Karamellwuerfel Posted June 5, 2018 Report Share Posted June 5, 2018 (edited) +rep love it. Edited June 5, 2018 by MrDonutButter Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 5, 2018 Author Report Share Posted June 5, 2018 1 minute ago, MrDonutButter said: +rep love it. Thank you so much. 1 Quote Link to comment Share on other sites More sharing options...
stifler13371 Posted June 11, 2018 Report Share Posted June 11, 2018 When i install it and then choose it in general settings i get this https://gyazo.com/23d094c75141378c287e1aa410cafd4c Quote Link to comment Share on other sites More sharing options...
LeonardIGO4036 Posted June 11, 2018 Report Share Posted June 11, 2018 On 6/1/2018 at 5:03 AM, CarlosEduardo2409 said: Hello everyone, I'm happy to announce my new free skin for phpVMS. A skin made in ElixarCode. DOWNLOAD: https://github.com/carlosmfreitas2409/ElaSkin-2.0 DEMO: https://elc.fsvas.co.uk/demo/elaskin/index.php (User: ELC0003 - PW: Demo123) IMPORANT: This skin was made for phpVMS 5.5x. This skin is designed using the Bootstrap framework, meaning it is fully responsive and works well on all sized devices, including desktops, tablets and phones. ElaSkin is not a complete website skin, it is only a pilot center application, designed to be installed into a phpVMS installation. Please note that this skin is still being developed, and I hope to update it and add new features over time. You should be able to just overwrite the existing files to update it. It may also have bugs and issues. If you find, feel free to post an issue report here. If you have any feature, plugin skiing or custom VA branding requests, feel free to post a reply below. Enjoy! Screenshots Dashboard page Flight Report Page Downloads page Do you want to become a developer on ElixarCode? Click here. More info from ElixarCode here. I was inspired by the crewcenter of @swan58 & iCrew Lite of @LeonardIGO4036 Such an amazing piece of work. Thank you for keeping it free 1 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 11, 2018 Author Report Share Posted June 11, 2018 (edited) 3 hours ago, stifler13371 said: When i install it and then choose it in general settings i get this https://gyazo.com/23d094c75141378c287e1aa410cafd4c Hi @stifler13371, So for fix this you need to go core/common and open StatsData.class.php After open, you need to paste this code: <?php public static function TotalPilotMiles($pilotid) { $key = 'total_miles'; $key .= '_'.$pilotid; $total = CodonCache::read($key); if($total === false) { $total = 0; $sql = "SELECT * FROM ".TABLE_PREFIX."pireps WHERE pilotid='$pilotid' AND accepted=1"; $results = DB::get_results($sql); if($results) { foreach($results as $result) { $total += $result->distance; } } CodonCache::write($key, $total, '15minute'); } return $total; } Sorry for not coding, nothing I'm finding the function. Edited June 11, 2018 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 11, 2018 Author Report Share Posted June 11, 2018 24 minutes ago, LeonardIGO4036 said: Such an amazing piece of work. Thank you for keeping it free Thank you very much @LeonardIGO4036, I appreciate your work too. 1 Quote Link to comment Share on other sites More sharing options...
stifler13371 Posted June 11, 2018 Report Share Posted June 11, 2018 There we go! thanks man! Love the template! 1 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 11, 2018 Author Report Share Posted June 11, 2018 1 minute ago, stifler13371 said: There we go! thanks man! Love the template! Thank you so much!! It's very good to know that. Quote Link to comment Share on other sites More sharing options...
stifler13371 Posted June 12, 2018 Report Share Posted June 12, 2018 (edited) just a question, is it only me or is the /profile/view not working or is it under development? Edited June 13, 2018 by stifler13371 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 14, 2018 Author Report Share Posted June 14, 2018 (edited) On 6/12/2018 at 2:17 PM, stifler13371 said: just a question, is it only me or is the /profile/view not working or is it under development? The profile/view was added in the latest version along with Airmail 3, you can see a preview here. Login Details for preview: User: ELC0003 PW: Demo123 Edited June 14, 2018 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
EasternVirtualAirlines Posted June 21, 2018 Report Share Posted June 21, 2018 On 6/11/2018 at 12:19 PM, CarlosEduardo2409 said: Hi @stifler13371, So for fix this you need to go core/common and open StatsData.class.php After open, you need to paste this code: <?php public static function TotalPilotMiles($pilotid) { $key = 'total_miles'; $key .= '_'.$pilotid; $total = CodonCache::read($key); if($total === false) { $total = 0; $sql = "SELECT * FROM ".TABLE_PREFIX."pireps WHERE pilotid='$pilotid' AND accepted=1"; $results = DB::get_results($sql); if($results) { foreach($results as $result) { $total += $result->distance; } } CodonCache::write($key, $total, '15minute'); } return $total; } Sorry for not coding, nothing I'm finding the function. I posted this code in my StatsData.class.php and I'm getting this error; https://gyazo.com/0de05b6ccfe4b63fd9117b6f390ea11d Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 21, 2018 Author Report Share Posted June 21, 2018 17 hours ago, BuckkEntertainment said: I posted this code in my StatsData.class.php and I'm getting this error; https://gyazo.com/0de05b6ccfe4b63fd9117b6f390ea11d Can you pass me your entire code from StatsData.class.php? Quote Link to comment Share on other sites More sharing options...
EasternVirtualAirlines Posted June 21, 2018 Report Share Posted June 21, 2018 1 hour ago, CarlosEduardo2409 said: Can you pass me your entire code from StatsData.class.php? This is it, https://pastebin.com/BDwdyi4c Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 21, 2018 Author Report Share Posted June 21, 2018 14 minutes ago, BuckkEntertainment said: This is it, https://pastebin.com/BDwdyi4c Ok, try to use this: https://pastebin.com/rKKceD9j Quote Link to comment Share on other sites More sharing options...
EasternVirtualAirlines Posted June 21, 2018 Report Share Posted June 21, 2018 39 minutes ago, CarlosEduardo2409 said: Ok, try to use this: https://pastebin.com/rKKceD9j That worked! Thank you. Quote Link to comment Share on other sites More sharing options...
smokey68 Posted June 26, 2018 Report Share Posted June 26, 2018 (edited) I am the owner of php-skins.com and taking someones work and turning into freeware is illegal Edited June 26, 2018 by vbegin7 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 26, 2018 Author Report Share Posted June 26, 2018 10 hours ago, vbegin7 said: I am the owner of php-skins.com and taking someones work and turning into freeware is illegal Hello @vbegin7, it's nice to meet you, but as I said, Elaskin did not have anything paid. Quote Link to comment Share on other sites More sharing options...
smokey68 Posted June 27, 2018 Report Share Posted June 27, 2018 12 hours ago, CarlosEduardo2409 said: Hello @vbegin7, it's nice to meet you, but as I said, Elaskin did not have anything paid. me and @shakamonkey88 already figured that out sorry, Thanks Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 27, 2018 Author Report Share Posted June 27, 2018 7 hours ago, vbegin7 said: me and @shakamonkey88 already figured that out sorry, Thanks All right, no problem, I know these things are accurate. Thanks Quote Link to comment Share on other sites More sharing options...
RaajPatel Posted June 29, 2018 Report Share Posted June 29, 2018 Hello! Just a quick question are we allowed to remove the Favicon and logo in the top left to one that represents our airline, and if we are allowed to do you mind briefly showing me where the image file is located so I can change it. Thanks, Raaj Patel Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted June 29, 2018 Author Report Share Posted June 29, 2018 10 hours ago, RaajPatel said: Hello! Just a quick question are we allowed to remove the Favicon and logo in the top left to one that represents our airline, and if we are allowed to do you mind briefly showing me where the image file is located so I can change it. Thanks, Raaj Patel It is totally allowed to remove Favicon and Logo, I advise you to leave some credit for Colorlib, the creator of the admin template, can be in the footer. Quote Link to comment Share on other sites More sharing options...
Boogace Posted July 3, 2018 Report Share Posted July 3, 2018 Hi I have got it working ok but a couple of things how do i add a button for tools and the pilot profile on the dashboard i cannot see a link for pilots or profile page, the only one is to edit your profile ? great work by the way looks awesome !!! Wazza 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.