Jump to content

Aaryan

Members
  • Posts

    43
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Aaryan

  1. Hi Sir, I have only developed iCrew v3. iCrew v4 is a property of iCrew Systems. You can contact Leo on that behalf. @LeonardIGO4036
  2. Hi All :)! I am offering services for Skinning phpVMS 7. I am already well versed with laravel and blade files, and it won't take just a long time. Crew Centers / Dashboards Frontends State of the art UX/UI in the box & some modules such as route finder (with latest airac) & Flight Briefing. Email Me or DM me if interested. myself.aaryankapoor@gmail.com Sincerely Aaryan Kapoor
  3. By including Modules, I mean to customize the template files of modules what people have. I do not sell or give away any payware modules. And Mr. Whatever Monkey. Please double read the post. I am not that illiterate, not knowing it is illegal to sell payware modules. I am a Web Developer myself, a Co Founder of a LLP Company. I know how hard it is to code. I realise the rights and respect every Developer committed to the VA industry. It is hard to code. Why would I sell payware modules coded by other developers? I am not a fraud or anything. Nabeel and David have contributed so much to this community, not for us to fight indirectly like you are doing. What we all want is to help all VAs as far as we can and to provide such a platform for the simming community which pilots love. You could have simply put your message in PM, and I could have clarified you. What is the point of this disrespectful act? Hope you understand. Thanks.
  4. Hello Guys I am restarting my Freelancing Services after a long time.. These services include full custom Modules, [Including Route Finder with Latest Airac], Customised Crew Centers, & Customised Front Ends. Hold me up via PM or email me to myself.aaryankapoor@gmail.com Do Consider Sincerely, Aaryan Kapoor Freelance Web Develeoper
  5. Hey Guys, iCrew Classic is available for $60 with modules and all inclusive price. Please PM or email me at myself.aaryankapoor@gmail.com
  6. SALE SALE SALE!!! Hey Guys. iCrew Classic is on Sale. $60, with modules & all inclusive cost. PM or email at myself.aaryankapoor@gmail.com for Quote
  7. What is your php Version? Set it to 5.5
  8. Howdy! So I was actually going through the Forums... Went through some posts discussing about SSL Certificates for phpVMS. You don't actually need any Module to force SSL. Just need to edit some lines of Codes So I'll tell you how to use phpVMS 5.5.x with SSL so that your Login Data is Secured. Please NOTE I have divided this Tutorial into two Parts, One for New Installers and another for the who are already using phpVMS. FOR PEOPLE WHO ARE INSTALLING PHPVMS FOR THE FIRST TIME 1) Install SSL on Domain (First Things First) 2) Install phpVMS in root, subfolder (You can even make it a Subdomain Like https://phpvms.domain.com) 3) Trigger phpVMS, and Navigate to install.php 4) This Part is very important. By default phpVMS will use http in the VA URL. Make sure you change it to https 5) Enter every other field as normal. 6) After you finish installation, you might encounter a weird layout. That's because the elements, jquery, maps etc are being called over HTTP instead of HTTPS... Ignore this, We will fix this in further steps... 7) Now what you need to do is navigate to the folder where phpVMS is installed. Go to admin/templates/core_htmlhead.php, then replace the following scripts <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jqModal.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.bigiframe.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.metadata.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/ckeditor/ckeditor.js'); ?>"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/phpvmsadmin.js"></script> with these <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jqModal.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.bigiframe.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.metadata.js'); ?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/ckeditor/ckeditor.js'); ?>"></script> <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/phpvmsadmin.js"></script> 😎 Now what you need to do next is Go again to the folder where phpVMS is installed. Navigate to your skin's Folder. Open your Skin's Layout.php and change all the http to https 9) Save them and Now open core/templates/core_htmlhead.php and replace the following lines <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script> with <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script> <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script> Thats All! Now Save Everything and Run Your Website on a Secured Server xD FOR EXISTING PHPVMS USERS 1) Open core/local.config.php define('SITE_URL', 'http://mydomain.com'); Change it to define('SITE_URL', 'https://mydomain.com'); Now Repeat the Steps 7, 8 and 9 Mentioned Above! Done. Hope this Helps you Guys Sincerely Aaryan Kapoor
  9. U need to trigger a foreach($bids as $bid) Use the variables used in used in schedule_bids.php
  10. I would suggest setting folder permissions to 777 and use only jpg or png pics
  11. Hmmm I see What host are u using?
  12. Hi Shaun. Do you get any errors when u hit send email? Or have you checked spam emails?
  13. Yup. Reinstall Works. Go for it.
  14. I am back with my services. I am now all settled in my new place and ready to code. Sorry for those whom I ignored or didn't reply. You can email me at hi@myselfaaryan.com or visit myselfaaryan.com or message me on facebook at https://facebook.com/myselfaaryankapoor I have also now added branding and advertising for virtual airlines Sincerely Aaryan Kapoor
  15. Hello People. Does anyone has a solution for this? I tried editing flown_routes_map.php but still it's not getting fixed. How do I get it right fitted in the box? Used this too style="height: auto; width: 100%;" But still....
  16. You are so good buddy! Thanks for your help. This is the thing I wanted! +1 for you Sincerely Aaryan Kapoor
  17. Hmm. Ofcourse. The data is definitely recorded in ACARS. But yes again I would be stuck with the code. I know how to implement the data to any charts but yes I am not in a knowledge to find or call that data. Just like this VA has done. https://dfy-va.net/phpvms/pireps/viewreport/721
  18. I'm wondering how to get an altitude and speed chart on pirep_viewreport.php like the one in vataware? I know data can be extracted but dunno the implementation of the code. Any help?
  19. Well @servetas Thanks Dude! That Did it. Working like a charm. The answer was in front and I was searching here and there.
  20. Hello Peeps. I am working on a new Crew Center. I have renamed the Profile Module as Dashboard. My frontpage_main.php looks like this <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php if(Auth::LoggedIn()) { header('Location:'.SITE_URL.'/dashboard'); } else { header('Location:'.SITE_URL.'/login'); } ?> Now after I log in it still redirects me to Profile Module. I want it to be redirected to Dashboard Module as http://crew.siteurl.com/dashboard. I tried to dig deeper but was afraid to mess up. So any leads or fixes folks? Sincerely, Aaryan Kapoor
  21. Have a Look at my Latest Work for Cathay Virtual Group http://www.virtualcathaygroup.com
×
×
  • Create New...