Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. Does it exists as mail_menu.tpl or mail_menu.php?
  2. I thought that too in the beginning but nothing is impossible
  3. Sorry, it was my fault. I was working on phpVMS 2 and forgot to make the required updates. Please replace this: $('.deleteitem').live('click', function() { with this: $('.deleteitem').on('click', function() {
  4. The selector in the last code I pasted is :"$('.deleteitem')". If it was "target" you would have to change your schedule_bids file too. Now you do not need to. +1 for pointing that
  5. Great! I think that I have managed to do something with the above. Tested it in my mobile phone (safari) and it works. It works on my PC (firefox) too. Open your lib/js/phpvms.js, find this: $('.deleteitem').live('click',function(){return false;}); $('.deleteitem').live('dblclick', function(){ $.post($(this).attr("href"), {id: $(this).attr("id")}); rmvid= "#bid"+$(this).attr("id"); $(rmvid).slideUp(); return false; }); and replace it with this: var touchtime = 0; $('.deleteitem').live('click', function() { if(touchtime == 0) { touchtime = new Date().getTime(); } else { if(((new Date().getTime())-touchtime) < 1000) { $.post($(this).attr("href"), {id: $(this).attr("id")}); rmvid= "#bid"+$(this).attr("id"); $(rmvid).slideUp(); touchtime = 0; } else { touchtime = 0; } } return false; }); Let us know if that solves the issue for you. In general, you have to be fast when you double click on the remove bid link. If you want to make it less sensitive, you can increase number 1000 from the above pasted code. In stackoverflow they had it to 800 and I increased it to 1000.
  6. After a small search on the internet, I found this. The first reply seems very helpful. It seems that mobile phones do not support the dblclick event and the user who posted it suggests to fake the double click via taking into consideration the interval between the two clicks on the remove bid button. Which phpVMS version are you using?
  7. It can be done. You should edit the lib/js/acarsmap.js file of your phpVMS system. Also, a good start would be to use the OperationsData::getAllHubs() function. It already exists within your phpVMS system. Develop a php foreach using the data returned from that function and add the hub marker within the foreach. Use it as a start and let us know if you get stuck anywhere.
  8. I would suggest you to share the error with your web hosting provider. The errors have to do with the server's PHP settings.
  9. You have included the google maps with the following code: <script type="text/javascript" src="http://maps.google.com/maps/api/js?key=AIzaSyBTq3EcPWYUMAJ27n-IzcnQMKBGIWlxjsE&sensor&callback=true"></script> This is wrong. Replace it with this: <script type="text/javascript" src="http://maps.google.com/maps/api/js?key=AIzaSyBTq3EcPWYUMAJ27n-IzcnQMKBGIWlxjsE&sensor=true"></script> Let me know if it works.
  10. I do not understand your question but you will have to remove this: <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBTq3EcPWYUMAJ27n-IzcnQMKBGIWlxjsE&callback=initMap" type="text/javascript"></script> and use only this: <script type="text/javascript" src="http://maps.google.com/maps/api/js?key=AIzaSyBTq3EcPWYUMAJ27n-IzcnQMKBGIWlxjsE&sensor=true"></script> Check your page source that includes two different calls for the google maps api.
  11. Check the source of your website using your browser. It seems that you include the google maps twice in your website (lines 21 and 24-25). I do not know what can cause this but you should only have line 21 from your website's page source.
  12. Remove the "async defer" tags from the google maps script.
  13. As I can see, you are using a different template from the default phpVMS template. This means that you will have to update the core_htmlhead.php of the template that you are currently using. This can be found in your_phpvms_directory/lib/skins/ocean_blue/core_htmlhead.php. Update it and let us know if that solves the issues.
  14. The error states "Class 'ReCaptcha' not found". Which phpVMS version are you using? Can you compare the phpvms_directory/core/lib/recaptcha/recaptchalib.php file with this? https://github.com/DavidJClark/phpvms_5.5.x/blob/master/core/lib/recaptcha/recaptchalib.php Are the above stated files the same?
  15. I can see that it is working now. Did you manage to resolve it?
  16. I have PMed you in order to explain to you all the required information regarding the order and the billing.
  17. I will only suggest the web hosting providers who are part of the phpVMS community. http://fivedev.net/hosting (Nabeel, who is the main phpVMS developer, is offering the service) https://php-mods.eu/webhosting.php (my company) You may find some more in the paid services section.
  18. Hostgator should work although there are several companies according to your visitors country etc. You can download phpVMS 5.5 via here: https://github.com/DavidJClark/phpvms_5.5.x You will have to ensure that you web hosting provider gives you the ability to select PHP 5.6 which is the PHP version that the phpVMS is compatible with.
  19. First of all, ensure that you are using the correct PHP version (PHP 5.6). Also, the main issue that you have is the free web hosting provider. In general, it is reported that phpVMS is not working correctly with free web hosting providers and especially 000webhost.
  20. It seems that I am not able to view or download the zip file. Could you please share with us a link with the screenshots?
  21. Unfortunately, the default phpVMS scheduling system does not allow you to do that. Each schedule can have only one selected aircraft. You should either develop a custom solution based on your requests or hire a developer to do that for you.
  22. Which PHP and phpVMS version are you using?
  23. Is the template based on a payware HTML template is it was completely written by you?
  24. The best option you have is finding a payware/freeware HTML template based on your requests and have someone to convert it into phpVMS.
  25. servetas

    LOGIN

    I searched your posts in phpVMS and I can see that your domain name is historicairlinegroup.com. Your web hosting provider is FiveDev and this means that you have to open a new support ticket via here: http://billing.fivedev.net/submitticket.php?step=2&deptid=1 It requires from you to login in order to open a new ticket. Use the login details that you have for fivedev or follow the url @shakamonkey88 stated.
×
×
  • Create New...