Relja12 Posted July 18, 2018 Report Share Posted July 18, 2018 Hey, Is there tpl version? Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted July 19, 2018 Moderators Report Share Posted July 19, 2018 8 hours ago, Relja12 said: Hey, Is there tpl version? You don’t need a tpl version - it is built for phpVMS 5.5x 1 Quote Link to comment Share on other sites More sharing options...
HONGKONGAIRLINESVIRTUAL Posted September 16, 2018 Report Share Posted September 16, 2018 On 6/22/2018 at 3:38 AM, CarlosEduardo2409 said: Can you pass me your entire code from StatsData.class.php? I have the problem as well, could you please help with the code? Thanks a million!!! 1 Quote Link to comment Share on other sites More sharing options...
HONGKONGAIRLINESVIRTUAL Posted September 17, 2018 Report Share Posted September 17, 2018 I see a loading sign in the middle after changed to ela skin. Quote Link to comment Share on other sites More sharing options...
Qshad Posted January 15, 2020 Report Share Posted January 15, 2020 Hi! I am having a problem w/ ElaSkin Fatal error: Call to undefined method StatsData::TotalPilotMiles() in /home/bosnaxxa/crew.bosnaxx-air.com/lib/skins/ela/profile_main.php on line 70 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted January 15, 2020 Author Report Share Posted January 15, 2020 31 minutes ago, Qshad said: Hi! I am having a problem w/ ElaSkin Fatal error: Call to undefined method StatsData::TotalPilotMiles() in /home/bosnaxxa/crew.bosnaxx-air.com/lib/skins/ela/profile_main.php on line 70 Hello @Qshad! You will need to add TotalPilotMiles to the StatsData.class.php file. For this you must do: 1. Go to core/common/StatsData.class.php 2. After opening StatsData.class.php file, add the following code: 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; } Like this: https://prnt.sc/qo9ari I hope it helped you! Quote Link to comment Share on other sites More sharing options...
SmarticleCo Posted January 16, 2020 Report Share Posted January 16, 2020 demo isnt working. Quote Link to comment Share on other sites More sharing options...
Qshad Posted January 16, 2020 Report Share Posted January 16, 2020 14 hours ago, CarlosEduardo2409 said: Hello @Qshad! You will need to add TotalPilotMiles to the StatsData.class.php file. For this you must do: 1. Go to core/common/StatsData.class.php 2. After opening StatsData.class.php file, add the following code: 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; } Like this: https://prnt.sc/qo9ari I hope it helped you! Hey! Yes you helped me! But unfortunately partly. There is only a loading screen. Nothing is loading. Infinite Loading Screen. Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted January 16, 2020 Author Report Share Posted January 16, 2020 4 hours ago, Qshad said: Hey! Yes you helped me! But unfortunately partly. There is only a loading screen. Nothing is loading. Infinite Loading Screen. Make sure you have the AirMail and TouchdownStats modules correctly installed. If they are installed, hit Ctrl + U on your site dashboard and on the page that opened (which will be the code of your page), see if you have any errors. I am knowing about the demo site, I will see if I can host a new site somewhere. Quote Link to comment Share on other sites More sharing options...
Tummi Posted January 18, 2020 Report Share Posted January 18, 2020 On 6/11/2018 at 6: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. tried that, but for me the page keeps the same 😞 Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted January 18, 2020 Author Report Share Posted January 18, 2020 7 hours ago, Tummi said: tried that, but for me the page keeps the same 😞 Did you install all modules correctly? You need Airmail and TouchdownStats installed to work. What error is showing up for you? You can see it by pressing the right button on your page and clicking "Inspect" Quote Link to comment Share on other sites More sharing options...
Tummi Posted January 19, 2020 Report Share Posted January 19, 2020 hey i have no real error.. its just a page as shown: http://prntscr.com/qprv7a Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted January 19, 2020 Author Report Share Posted January 19, 2020 3 hours ago, Tummi said: hey i have no real error.. its just a page as shown: http://prntscr.com/qprv7a From what I see your error is because it is missing or has an error in TotalPilotMiles on StatsData. First, to make sure you have no errors, go to your website and press Ctrl + U, it will open the view-source of your website, scroll down the page and see if there are any errors. Attempt 1: To add TotalPilotMiles to StatsData: Go to core/common/StatsData.class.php At about line 21, add this code (make sure it is not inside another function). <?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; } Attempt 2: If you already have the code and don't have any errors showing, try changing your StatsData by the one below: StatsData.class.php.zip Quote Link to comment Share on other sites More sharing options...
Tummi Posted January 19, 2020 Report Share Posted January 19, 2020 Attempt 2 made it! thanks alot! MAybe you have an idea about making a bid.. when i click "add to bid" the button is switching to "bid added" but in the list "my bids" nothing is in.. i searched the forum for this bug but nothing helped me with that... Quote Link to comment Share on other sites More sharing options...
HellenicTech Posted April 24, 2020 Report Share Posted April 24, 2020 (edited) Amazing, just that the AirMail module provided doesnt include everything Edited April 24, 2020 by HellenicTech Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted April 24, 2020 Author Report Share Posted April 24, 2020 6 hours ago, HellenicTech said: Amazing, just that the AirMail module provided doesnt include everything Hi, thank you for your opinion and I'm sorry for AirMail, but I'm developing another new skin and in addition, admin panel too. In case you want to know more, I made another post talking about the project so I can know your opinion. Quote Link to comment Share on other sites More sharing options...
Administrators ProAvia Posted April 24, 2020 Administrators Report Share Posted April 24, 2020 What base template are you using for this skin and your 2 new skins? Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted April 24, 2020 Author Report Share Posted April 24, 2020 16 minutes ago, ProAvia said: What base template are you using for this skin and your 2 new skins? For this skin, I used the ElaAdmin Template from Colorlib. But there is already a new version of this ElaAdmin, so the version I used disappeared from google, I couldn’t find it on the Colorlib website, just on another website (this one), but it says it’s paid, and it’s not, it was free. For my 3 new skins (All free version): CrewCenter: Stisla Admin Template & Purple Admin Template Admin Panel: Argon Admin Template Quote Link to comment Share on other sites More sharing options...
Administrators ProAvia Posted April 24, 2020 Administrators Report Share Posted April 24, 2020 If the template is no longer freeware, I don't think you can continue to distribute any skin using it - unless you and/or the end-user pays for a license to this (now) payware template. I believe this would apply to each and every skin that is used from the date the template became payware. I suggest you contact the template owner and get clarification on your continued usage of their (now) payware template in your original skin (which initially used the freeware template). It is possible that they updated the template and then made it payware. They may allow you to continue to use the freeware template version - but you will need to ask them. And get their response in writing to protect yourself and the user of your skin. Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted April 24, 2020 Author Report Share Posted April 24, 2020 13 minutes ago, ProAvia said: If the template is no longer freeware, I don't think you can continue to distribute any skin using it - unless you and/or the end-user pays for a license to this (now) payware template. I believe this would apply to each and every skin that is used from the date the template became payware. I suggest you contact the template owner and get clarification on your continued usage of their (now) payware template in your original skin (which initially used the freeware template). It is possible that they updated the template and then made it payware. They may allow you to continue to use the freeware template version - but you will need to ask them. And get their response in writing to protect yourself and the user of your skin. I believe that they have just discontinued the old version and started a new one, not least because the new one is free too, in addition, the site that is talking about being paid for, is not from the original author, but I will be contacting them from anyway, i'm trying to find the contact, thanks. Quote Link to comment Share on other sites More sharing options...
Nicholas Posted May 20, 2020 Report Share Posted May 20, 2020 Hey, im pretty new to this. How do i install the modules? i have read the readme document but im still confused. Anyone able to run me through this? - Nicholas Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted May 20, 2020 Author Report Share Posted May 20, 2020 1 hour ago, Nicholas said: Hey, im pretty new to this. How do i install the modules? i have read the readme document but im still confused. Anyone able to run me through this? - Nicholas Hello Nicholas! So, in this skin we have only 2 modules: AirMail 3 & TouchdownStats. The installation is very simple, in both modules there is a folder called "core", and inside "core" folder we have more folders, which are usually the "modules", "templates" and "common" folder. If you see the directory where your phpVMS is installed, we have this same "core" folder, and inside the same "modules", "templates" and "common" folder. Basically, what you have to do is transfer the files from each folder to their respective location. (EXAMPLE) So it would be like this: You transfer the files that are in the "core/common" folder of the TouchdownStats module to the "core/common" folder of the directory where your phpVMS is installed. The same for the other files (core/modules in your core/modules phpVMS installation, The same for the other files)... Some modules come with a .sql file, which creates some tables in your database, AirMail 3 is an example. If you look at the AirMail 3 module, we have this "airmail.sql" file. To upload it, it's also very simple, you need to go to your database (phpMyAdmin), enter your phpVMS database and click on the "Import" button located on the top menu, it will open another page that it will be there where you should import this file, click on the "execute" button and if everything appears green, success! Quote Link to comment Share on other sites More sharing options...
Nicholas Posted May 21, 2020 Report Share Posted May 21, 2020 (edited) Everything is in order, but wondering can i add my own logo, and change the favicon? I would also like to remove the live map if thats possible. Love this skin btw, thanks for your assistance. Edited May 21, 2020 by Nicholas Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted May 21, 2020 Author Report Share Posted May 21, 2020 (edited) 2 hours ago, Nicholas said: Everything is in order, but wondering can i add my own logo, and change the favicon? I would also like to remove the live map if thats possible. Love this skin btw, thanks for your assistance. Yeah, you can add your own logo and change the favicon. Favicon (in lib/skins/ElaSkin/layout.php): <link rel="shortcut icon" type="image/png" href="http://linktoaimage.com/favicon.png"/> Live Map (in lib/skins/ElaSkin/profile_main.php😞 Open this github link, you will see some lines in yellow, in your FTP file, look for the same lines and remove those lines. You can make any changes, but you MUST keep all the credits that are in the footer! 2 hours ago, Nicholas said: Love this skin btw, thanks for your assistance. I thank you for the use and care! It's the best reward I can earn. Sorry for the delay, I ended up sleeping on the chair hahaha. Edited May 21, 2020 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
Nicholas Posted May 22, 2020 Report Share Posted May 22, 2020 Great. Thank you for your prompt replies. Quote Link to comment Share on other sites More sharing options...
Nicholas Posted May 22, 2020 Report Share Posted May 22, 2020 How do i upload the images? Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted May 22, 2020 Author Report Share Posted May 22, 2020 (edited) 27 minutes ago, Nicholas said: How do i upload the images? Sorry, I didn't understand the question very well, I will kick it: If you want to upload a file, you can just transfer it to your FTP and use the link to it, for example: Let's assume that the image you are going to transfer is called: favicon.png You can transfer an image at lib/skins/ela/images, then, complete would be like this: lib/skins/ela/images/favicon.png To call, you can use the link and get to the image directory, however phpVMS offers the <?php echo SITE_URL; ?> So, an example to call it a favicon: <link rel="shortcut icon" type="image/png" href="<?php echo SITE_URL; ?>/lib/skins/ela/images/favicon.png"/> Or some image: <img src="<?php echo SITE_URL; ?>/lib/skins/ela/images/favicon.png" alt="some image" /> Edited May 22, 2020 by CarlosEduardo2409 Quote Link to comment Share on other sites More sharing options...
Nicholas Posted May 22, 2020 Report Share Posted May 22, 2020 I get Fatal error: Call to undefined method MailData::time_ago() in /home/vol11_1/epizy.com/epiz_25796808/htdocs/lib/skins/ela/mail/mail_inbox.php on line 87 at Pilot mail page Quote Link to comment Share on other sites More sharing options...
CarlosEduardo2409 Posted May 22, 2020 Author Report Share Posted May 22, 2020 10 hours ago, Nicholas said: I get Fatal error: Call to undefined method MailData::time_ago() in /home/vol11_1/epizy.com/epiz_25796808/htdocs/lib/skins/ela/mail/mail_inbox.php on line 87 at Pilot mail page Do not install AirMail 3 default, install what is with my skin, as some files have been customized to work on ElaSkin. However, to fix this error is simple: You need to have the time_ago() function in the MailData.class.php file, which is located at core/common/MailData.class.php (open this file) and in the link below, copy the lines that are in yellow and put it in your MailData.class.php file, but be aware of where you will put it!! You must place, at least below this line: class MailData extends CodonData { https://github.com/carlosmfreitas2409/ElaSkin-2.0/blob/master/Modules (REQUIRED)/Airmail 3/core/common/MailData.class.php#L313-L347 Quote Link to comment Share on other sites More sharing options...
lukasc24 Posted June 15, 2020 Report Share Posted June 15, 2020 Hi, Ive installed ElaSkin and im not getting any error messages but the page just keeps loading and loading with this little icon that spins, anyone know why its doing this? 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.