Jump to content

ProSkyDesign

Moderators
  • Posts

    207
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ProSkyDesign

  1. because is a repository in github, when someone upload changes into the repository it will be update... And repository is public so you can look up into these files, but isn't released yet a official version of phpvms7
  2. Hi, please find the following code in the line 937 of file /admin/module/Operations/Operations.php and comment lines bellow, this will allow you to add schedules with same flight num. $sched = SchedulesData::getScheduleByFlight($this->post->code, $this->post->flightnum); if (is_object($sched)) { $this->set('message', 'This schedule already exists!'); $this->render('core_error.php'); return; }
  3. but phpvms 7 still isn't released, won't you speak about phpvms with php 7? And other thing, is not the same a skin and code changes to support compatibility issues with php 7 (it means to change the core of your website and will depend on how much modules do you have)
  4. Can I see your .htaccess? sometimes this file throw this issue in web hostings. Try to delete .htaccess (that you have uploaded with phpvms installation), maybe your web hosting provider bring any configuration of this file include.
  5. I can develop a website (payware services) for your airline, if you want to know more about, please PM me.
  6. Personally, I don't recommend to print HTML code with php, please use something like this. <?php if(!$pilots) { echo 'There are no pilots!'; return; } ?> <table class="tablesorter"> <thead> <tr> <th>Pilot ID</th> <th>Name</th> <th>Rank</th> <th>Flights</th> <th>Hours</th> </tr> </thead> <tbody> <tr> <?php foreach($pilots as $pilot) { ?> <td><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"><?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid); ?></a></td> <td><?php echo $pilot->firstname . ' '. $pilot->lastname; ?></td> <td><img src="<?php echo $pilot->rankimage; ?>" alt="<?php echo $pilot->rank; ?>" /></td> <td><?php echo $pilot->totalflights; ?></td> <td><?php echo $pilot->totalflights; ?></td> <td><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <?php } ?> </tr> </tbody> </table> Remember to declare $pilots variable first with your codon config.
  7. now you can access statics functions inside variables like: $pilots = PilotData::getAllPilots(); and then you can iterate the variable with a foreach loop. <?php foreach($pilots as $pilot) { echo $pilot->rank; } ?> Please, be careful including the codon config, include this in top of the file, avoiding headers errors.
  8. @Naabel, can I help you with some Issues of phpvms7? If you need help to finish the project, please tell me.
  9. Hey!, I was out of vms projects because I was very bussy with Others projects, send me a PM with the url of your site and I’ll help you.
  10. do you have the same problem? I can help you, the no route passed error have different causes so I need to check it in private
  11. you should wait until phpvms7 release. I will notify you on ready
  12. Phpvms v7 isn't released yet, but please visit https://proskydesign.com/ here you'll find what you are looking for
  13. Hi, I sent you a PM, you can also visit this forum topic:
  14. PM Sent, I don't know why you are getting these experience with SmartCARS, could it be a wrong connection with your site, maybe your hosting provider.
  15. Do you have composer installed? open your console and write cd C:/xampp/htdocs/sdi then run composer install This command will install all package dependencies that phpvms need to run, if still doesn't work, run composer dump-autoload PS: You can download composer here https://getcomposer.org/download/
  16. I’m working in point system, please we can talk about it
  17. As many people here knows phpvms7 is coming and we don't want to stay in past, so... Who is Pro Sky Design? Pro Sky Design is a company that will sell phpvms modules and templates for virtual airline, bringing interactives and innovators services to make the experience better of the virtual airlines. Let us the hard work! When will Pro Sky Design start operations? We will open our system as soon as phpvms 7 is released What services will Pro Sky Design offer? -Cloud Solutions -Phpvms modules -Phpvms templates -Custom Sites How Pro Sky Design will work? We will set a website application with a Dashboard for our clients where they will be able to purchase our products, manage purchases, have support, share with others Pro Sky Design's customers, etc. Our products will have private API keys to connect to Pro Sky Design sites to make a real experience in some modules (you will interact with our customers). Pro Sky Design will be only for virtual airlines CEO? Negative, developers will be able to purchase our templates and use to offer their services (this will have some limitations specified in license). We are planning to work with others developers to sell their products in our e-commerce too, if you are insterested, send me a PM. Pro Sky Design will only work for phpvms7? The modules and some templates will only work with phpvms7, but others templates and custom sites services will work with phpvms5.5.x too. Our Portfolio (PHPVMS): https://www.aerofast.cl (Phpvms 5.5.x full site) http://iagvirtual.com (Phpvms 5.5.x full site) http://crew.staralliancevirtual.com/ (Phpvms 5.5.x crewcenter) http://coljet.com.co (phpvms 5.5.x site + crewcenter) **This portfolio will be update DON'T FORGET TO VISIT OUR SITE: http://proskydesign.me !!
  18. Do you have skills making custom templates?? (CSS5, HTML5, JS, A little bit of jquery or vue.js, Mockup with Photoshop) If that is your case, please contact me. I have you an offer.
  19. Hi, A solution for this is make a schedule for each fly do you want to add, you should select what days you want to appear this fly on week. If you want to display a different aircraft for the same flight in days that the flight on previous schedule isn’t fly, you should add a new flight into your schedule with the aircraft and configure the days. about the flight types instead of registration, is not possible in Phpvms 5.5.x because you will need to develop a custom acars. but don’t worry in v7 you will have subfleets for this
  20. Can you share me more details to my inbox please?
  21. that is problem with jquery (conflict). Can you check in your browser console?
  22. some people doesn't know anything about programming or how to use a cpanel, host, etc. Sometimes is more usefull explain via skype, for example in stead of text ;).
×
×
  • Create New...