Jump to content

MaciejO

Members
  • Posts

    94
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Perth, Scotland
  • Interests
    Aviation, Graphic Design, Web Design

Contact Methods

  • Skype
    olbi111

Recent Profile Visitors

9203 profile views

MaciejO's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In Rare

Recent Badges

30

Reputation

  1. Hi, 1. Because phpVMS is based on MVC (Model-View-Controller) structure you will need your handling code to be located inside modules (controllers) and classes (models). Where your template (view) files go to template folder. Just type "MVC" in Google and you should find hundreds of top notch articles about MVC as it is that popular. Best convention I have ever heared of for MVC is "Keep Models Fat and Controllers Thin". 2. Possibly it is a small mistake, or a larger problem within your code. If you send me your code via private message I am more than happy to help you out. Thanks, Mac...
  2. Hi, I currently have a lot of free time and this will be the case until the end of January. I am ready to take on some projects for a very competitive price. Unfortunley my website is down, possibly until the end of year, therfore I am providing my portfolio at the alternative site. My services vary... I offer services like installation, maintanence, module design & implementation, custom template design & implementation and many more. If it's not on the list, ask! I'm here to answer your questions. I also offer two ready to use modules. Dispatch module(20GBP) and phpVMS comments widget(10GBP) or 25GBP for a bundle. To get more info about them, contact me! My DeviantART Portfolio To contact me you can message me on: here my email: olbi123@gmail.com skype: olbi111 Hope to speak to some of you soon! Maciej.
  3. Woops! Sorry about that! It's working now. Maciej.
  4. Hi guys! If anyone is interested from 16th April 2014 at 00:01 GMT until 25th april 2014 at 23:59 GMT I will be offering this dispatch module for only 14.99GBP. Also between these dates you can get comments module posted here: http://forum.phpvms.net/topic/20655-phpvms-comments-module/ for only 7.99GBP. You can also get them both together for only 16.99GBP (best deal)! All that until 25th April! To get them, speak to me through my website http://www.maciejolborski.net/home/contactme or email: email@maciejolborski.net. Maciej.
  5. Hi guys! If anyone is interested from 16th April 2014 at 00:01 GMT until 25th april 2014 at 23:59 GMT I will be offering this product for only 7.99GBP. Also between these dates you can get dispatch module posted here: http://forum.phpvms.net/topic/6666-web-services/ for only 14.99GBP. You can also get them both together for only 16.99GBP (best deal)! All that until 25th April! To get them, speak to me through my website http://www.maciejolborski.net/home/contactme or email: email@maciejolborski.net. Maciej.
  6. Hi. I'm glad you like it! To modify map size you will need to change map width and height values in local.config.php. That should do it: Config::Set('MAP_WIDTH', '645px'); Config::Set('MAP_HEIGHT', '480px'); To get a working fleet page you will need additional module for example: http://forum.phpvms.net/topic/1522-fleet-table/ Hope that helps, Maciej.
  7. Hello guys! Sorry for delay, I am extending the 7.99GBP offer until 25th January 2014 23:59GMT. System now work's without problems and demo can be checked out at http://maciejolborsk...demo/index.php/. Please login using details provided to see two diffrent examples in the menu (News using SimpleNews from Tom with Comments module attached and Single page example) Screenshot: If you are interested in any of those offers please contact me through a private message or drop me an email to email(at)maciejolborski.net. Alternatively you can use contact form here: http://www.maciejolb.../home/contactme. Maciej! Thanks Man!
  8. Hi! 1) You could possibly achieve desired effect through SimPilot's Real Schedule module. 2) You would have to add new rows in schedules table called altnIcao and altnAptRoute and then modify schedules module within admin area and schedules data within core to allow adding data into this columns through admin panel. Then it would be matter of displaying it. Though I have no idea what impact could this have as I never tried modyfing phpvms tables directly. Other way would be creating another database table with name of something like phpvms_alternates and having id, scheduleId, altnIcao, altnAptRoute and then creating an admin module to handle this data with reference to scheduleId from your phpvms_schedules table. Hope that helps, Mac!
  9. Hello fellow pilots! I am happy to announce that today, on Thursday, 16th of January 2014 I will be releasing payware Comments module. It just need's tidying up and some basic style to be applied that's why it wont be available until evening. This module will allow you to add Comments section easily anywhere on your page, for example in your news module or a single page of a HUB. Just anywhere. The process of adding the module will be as easy as including one line of code that will generate the rest for you! Module allows for a comment to be made and two levels of comment replies are available. Comments can be deleted and modified. Pagination of comments come in by default and comments per pages can be modified easily by changing one line of the code. Here is a preview of the module (More pictures to come in when it is released and styled): I will be offering this module for 7.99GBP until 22nd of January 2014 at 23:59GMT. After that the price will be 10GBP. I will be also offering a bundle of this module and my dispatch module (more info on new release cooming soon!) for 23.99GBP which means that you will save 6.01GBP if you go for the bundle. If you are interested in any of those offers please contact me through a private message or drop me an email to email(at)maciejolborski.net Hope you like it, Maciej
  10. Hi! Sorry I've been away on christmas holiday and not been checking forum for a while but. itrobb. <aside>, <section> and <article> are the propper HTML5 tags and are now supported by most modern browsers. http://www.w3schools...ew_elements.asp. Taran. In theory you could create an aside with id right and place it in html like this: <aside id="right"> <section class="box"> <h1>Title 1</h1> </section> <section class="box"> <h1>Title 2</h1> </section> </aside> Then in your CSS you would have to add something like that: #right { position: relative!important; width: 260px!important; float: right!important; } And then take away 260px(aside container) + 25px(right margin) from #contentFrontPage width so it should be: #contentFrontPage { width: 360px; margin-left: 25px; margin-right: 25px; } I didn't test it but it should do the trick, if it doesn't contact me through pm and I'll be more than happy to help you out! Maciej.
  11. Hi there, Something like that? Maciej.
  12. Try loading JQuery library before you load slimscroll. On the site without the phpvms it's loaded in this order: <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> <script type="text/javascript" src="http://www.execusim.com/lib/skins/execusim2014/js/jquery.slimscroll.min.js"></script> But on your phpvms site you load it in this order: <script type="text/javascript" src="http://execusim.com/lib/skins/execusim2014/js/jquery.slimscroll.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> Mac...
  13. You can use some of the functions in StatsData.class.php to display stats based upon the variable named airline_code. http://forum.phpvms.net/topic/4592-airlines-stats/ Mac...
  14. Follow standard HTML pattern for tables: <table> //table start <thead> //header <tr> //row <th></th> //header column <th></th> //header column </tr> //row end </thead> //header end <tbody> //body start <tr> //row <td></td> //body column <td></td> //body column </tr> //row end </tbody> //body end </table> //table end Mac...
×
×
  • Create New...