Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. I do not know which template you are using or where is has the navbar placed. In the default phpVMS crystal template it is inside the layout.php/.tpl file. Alternatively you will have to search on frontpage_main.php/.tpl .
  2. If you have the required knowledge, you can install the new phpVMS version in a new database and check what changes does it have (what is the difference between the database of the old and the new version (new tables, columns etc)). Then, do the changes in the database which has your data inserted (the old one) and connect your new phpVMS with your old database which you will have updated manually using phpmyadmin. The changes are not that much, someone with a basic knowledge will be able to do this without any special issue.
  3. Updating the phpVMS from 2.1 to 5.5 is not that easy and I would suggest it to virtual airlines which have an extended number of database entries etc. I know how much work might this for you but trust me, using the latest phpVMS version if the best you can do for your virtual airline's future. The version you have currently installed is compatible with PHP 5.3 which has started being deprecated by many web hosting providers which the phpVMS I send you is compatible with PHP 5.6 (tested and working).
  4. That is not the latest version and considering that you are starting your virtual airline now, I would suggest you installing the one which is currently under active development and compatible with the latest php versions. https://github.com/DavidJClark/phpvms_5.5.x
  5. Which phpVMS version are you using?
  6. I would like to inform you that I have released version 1.1 of the module. The new version includes several corrections and new additions. Below you can see a list of them: Changes - Added max-width in img's inside the post. In the previous versions, there were design issues when someone posted an image with an extended width. - Changed the way boards are marked as read. Now, the user should have read all the topics inside the board to have the board marked as read. In the previous version, a board was marked as read as soon as someone visited it. - Changed the way search results are shown. The search takes into consideration only words with at least three characters and the post which are not accessible to someone are not included in the results (hidden board, staff board, limited board etc). - According to the above, we have updated the latest posts functions too. - Users are not able to reply to a topic whose board is read only. - Solved some issues with the notification emails. - When there is any error during a board insert or update, the add or edit form is populated with the submitted details. Additions - Added a rating system. There are two options in the settings of the forum. Like only which allows the rest of the forum users to like a post and karma. Karma allows the forum users to like or dislike a forum post. - Added an extra setting to the forum boards which allows you to select whether the user signatures will be shown in their posts or not. - Added an extra setting to the forum boards access drop down menu. Now, you are able to select "Selected Pilot Groups" and select specifically the pilot groups you want to have access to this specific board. The forum administrators and the moderators have access to these boards even if they are not part of any of the selected pilot group. - Mark a topic as unread button has been added to each topic. - View unread topics has been added in the frontpage of the forum system. As always you can check the demo system and review all of the additions in the new version. http://php-mods.eu/phpvms.php?module=forum-system !!SPECIAL OFFER!! Order your Forum System license today and get a 20% discount using FORUMPROMO20 coupon code. Valid until 31/12/2016.
  7. You can use this one. There are not plus or minus. That is better and it is working without issues up to PHP 5.6. https://github.com/DavidJClark/phpvms_5.5.x
  8. You are correct. There is a third update too. 3) Open core/common/PIREPData.class.php, find this: return self::findPIREPS(array('p.pilotid' => $pilotid)); and replace it with this: return self::findPIREPS(array('p.pilotid' => $pilotid), $limit); updated my post above too.
  9. This does not have to do with the airports or the navdata you have added in your system. It has to do with the number of pireps submitted by a pilot. If a pilot has submitted a lot of pireps, his profile in the admin center might be a headache to open as @DesComm said. I would suggest the following updates. 1) Open core/common/PIREPData.class.php, find this: public static function getAllReportsForPilot($pilotid) { and replace it with this: public static function getAllReportsForPilot($pilotid, $limit = '') { 2) Open core/common/PIREPData.class.php, find this: return self::findPIREPS(array('p.pilotid' => $pilotid)); and replace it with this: return self::findPIREPS(array('p.pilotid' => $pilotid), $limit); 3) Then open admin/modules/PilotAdmin/PilotAdmin.php, find this: $this->set('pireps', PIREPData::GetAllReportsForPilot($this->get->pilotid)); and replace it with this: $this->set('pireps', PIREPData::GetAllReportsForPilot($this->get->pilotid,50)); In the above statement you can replace 50 with the number of pireps you wish to be able to view though the pilot's profile in the admin center. Bare in mind that as the number increases the page is going to slow down accordingly.. 50 is an example. I do not know how it is going to work and if 50 is ok.
  10. You are correct. This has to do with the system itself and not with your server. I will try implementing something in the phpVMS core. I will keep it updated.
  11. That's what I did. I added a table row and column (with an extended colspan) to shown the error inside the table.
  12. I made an extra update into the file and merged the pull request. Thank you
  13. Open the lib/skins/CrewCenter/profile_edit.tpl or .php file and replace line 29 from: <input type="text" class="form-control" value="<?php echo $userinfo->email;?>"> to: <input type="text" class="form-control" name="email" value="<?php echo $userinfo->email;?>">
  14. Could you please share with us your website url? Just the source code of your website will allow us to have a clean view of the includes you have done and what is wrong with them.
  15. So, where do you use the codes you pasted above?
  16. How did you add the fields? Did you add them through the Profile fields menu in your admin center or manually?
  17. I can see the pilots without any problem in your website. Are you sure about this?
  18. I agree with mattsmith. Remove the phpVMS you installed and installed the version mattsmith shared.
  19. Which phpVMS version have you installed?
  20. You have already posted your question here: http://forum.phpvms.net/topic/24215-need-help-installing-a-skin-i-can-pay-for-the-help/
  21. I remember that in VAFinancials you do not have access to the database in order to parse the data from their website to phpVMS which is a standalone system. You only have access to lists you have show in your website using iframe. Please correct me if I am mistaken.
  22. What kind of help do you need? Can you share it with us? We might be able to assist you.
  23. You can check how the default phpVMS skin works. It is calling it inside the <head> tags and after them you can include any extra javascript files you want.
×
×
  • Create New...