Jump to content

Sava

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Sava

  1. A shared hosting can't run a TS server, but you can rent one from a hosting company as well. If you are not so good with tech, that might be the better option, and usually a less expensive one.
  2. At the start, a shared hosting (probably what you mean by web host) will be more than enough. Later on, if you see the need for a dedicated or VPS server, your hosting company will easily transfer you and change your pricing plan.
  3. To add, I'm providing 10$ off for first 10 customers. Use the coupon code 10FOR10.
  4. Probably. Well, once a moderator sees it, they'll move it if needed. Thanks for the nice comments.
  5. I'm posting to let everyone know of a new module that is available for phpVMS. It is a full ticket system solution. Features included are: Opening/Closing Tickets Three different priority settings – Low, Medium, High Commenting on tickets Email Notifications – Users can select which notifications they went to receive on their email. (Three settings – When ticket is updated/edited, when a ticket is commented on, when a ticket is assigned to a staff member) Administration Settings – Option to override user settings, so they always receive emails. Administration Settings – Choose which group is in charge of tickets. Members of the group will be available for ticket assignment. Administration Settings – Easy language change for sites that are not in English Bootstrap Optimized – Template files are already compatible with Twitter Bootstrap, so if you use it, no further design is needed. A demo is available: Pilot ID: 1 Password: ticketuser URL: http://www.savamarkovic.com/ticketdemo You can purchase this add-on through my website: http://www.savamarkovic.com/product/ticket-system-v1-0/ Thanks!
  6. I highly recommend everyone not to use the code, as it contains major security issues. Just a quick look shows that form POST data is not being escaped. That's just on top of the code being a major mess. @Levicosta A friendly suggestion is to learn, practice and code as much as you can, but please be careful when posting code. Else, there can be problems for people who are not that tech oriented, and who try and use your code.
  7. I can also say only the best and kindest words about George. While I don't use this module, I contacted George a while ago with about a matter not related to coding, and he was more than helpful and kind.
  8. Posted 21 July 2012 - 09:56 PM But at the same time...
  9. Another new website is online! http://www.travelairva.com/
  10. Also, as part of my partnership with FSXHost, all customers get 3 months of free hosting with them, with no requirement to continue using them.
  11. I've had a lot of work recently. I'll soon post screenshots and links to some of my latest projects. For start, here is one: www.olympicairlinesvirtual.com/ - website for Olympic Virtual Interested in getting a high quality website yourself? Send me a PM here or contact me through my website - www.savamarkovic.com
  12. You're welcome. Glad I could be of help.
  13. Your materialize.css file contains a select { display:none; } I de-minified the .css file, and found the piece of code. I took just a quick look, so I am not really sure why it is there, and if it will affect anything else. In any case, here is the updated file: http://pastebin.com/raw/GxMe1Um0 Paste the content to lib/skins/holiday/css/materialize.min.css
  14. Taking a look at this as a developer myself, and knowing how much work must have been put in, I think the listed price is a fair one. Great job!
  15. Thanks for the kind words.
  16. I am running a promotion. Everyone who orders a website before May 1st gets 10% off! Send a PM.
  17. Since you haven't got a reply yet, I though I'd help, if it isn't too late. phpVMS is a CMS just like Joomla, but it is created for virtual airline owners. What you can do is download a copy of phpVMS and set it up on your GoDaddy hosting account. That will provide you with basic functionality to run a VA, but to have any chance of success, you will need to get a skin (assuming your VA concept is good etc.). There are free skins out there and there are people who will design custom ones for you. Those cost of course, though.
  18. Haven't posted here in a while. Take a look at my latest project - TUI Dutch Virtual - http://www.tuidutchv...l.com/index.php Also, I've updated my website. On there, you can see my portfolio, VA design packages I provide along with the prices and information about my services. http://www.savamarkovic.com
  19. I can. Send me a message on the forums
  20. <?php echo count(PilotGroups::getUsersInGroup('1')); ?> Change 1 to the ID of the Active pilot group
  21. Really late here, and I am very tired. Just taken a rough look at this, and spotted one obvious error for now. Instead of <div style="width: $pilothours-$nextrank->minhours </div> Try <div style="width: <?php echo round($pilothours-$nextrank->minhours); ?>%"></div> if there is anything else that is making an issue, I'll try and help out tomorrow
  22. In that case $pilothours-$nextrank->minhours should work correctly
  23. I really think the current code could be done better, as it is now showing the % required in total. To better explain, here is an example. Think of a rank structure like this: Rank1 = 0-10h Rank2 = 10-20h Rank3 = 20-30h If I have 15h now, I am 50% on my way to the next rank, Rank3. Correct? (20-10=10h, 15-10=5h, and 5 is a half of 10) But, judging by your code, it would tell me I am 15/20*100 = 75% on my way to the rank. I mean, both ways are technically correct, but I think my way of thinking is a bit better <?php $get_rank_information = RanksData::getRankName(Auth::$userinfo->rank); $current_mh = $get_rank_information->minhours; $difference = $nextrank->minhours - $current_mh; //hours between 2 ranks $hours_in_rank = $pilot_hours - $get_rank_information->minhours; $percent = round(((100 * $hours_in_rank)/$difference)); ?> And you'll probably need to place this in RanksData.class.php public static function getRankName($rank) { $rank = DB::escape($rank); $sql = "SELECT * FROM phpvms_ranks WHERE rank='$rank'"; return DB::get_row($sql); } In the end, I might be wrong, really late here...if that's the case, I'll just edit this in the morning not to confuse people
×
×
  • Create New...