Sava
Members-
Posts
575 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Sava
-
Virtual Airlines Needed is Web Hosting or Server Hosting?
Sava replied to fidaperkasa's topic in Virtual Airlines Discussion
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. -
Virtual Airlines Needed is Web Hosting or Server Hosting?
Sava replied to fidaperkasa's topic in Virtual Airlines Discussion
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. -
To add, I'm providing 10$ off for first 10 customers. Use the coupon code 10FOR10.
-
Probably. Well, once a moderator sees it, they'll move it if needed. Thanks for the nice comments.
-
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!
-
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.
-
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.
-
Posted 21 July 2012 - 09:56 PM But at the same time...
-
phpVMS Development Services (Modules, Skins and more!)
Sava replied to Sava's topic in Paid Services
Another new website is online! http://www.travelairva.com/ -
phpVMS Development Services (Modules, Skins and more!)
Sava replied to Sava's topic in Paid Services
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. -
phpVMS Development Services (Modules, Skins and more!)
Sava replied to Sava's topic in Paid Services
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 -
Mail sent.
-
You're welcome. Glad I could be of help.
-
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
-
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!
-
phpVMS Development Services (Modules, Skins and more!)
Sava replied to Sava's topic in Paid Services
I am running a promotion. Everyone who orders a website before May 1st gets 10% off! Send a PM. -
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.
-
phpVMS Development Services (Modules, Skins and more!)
Sava replied to Sava's topic in Paid Services
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 -
I can. Send me a message on the forums
-
How do I set the VA Stats number of pilots to be defined by a group?
Sava replied to tobyrice01's topic in Support Forum
You are welcome:) -
How do I set the VA Stats number of pilots to be defined by a group?
Sava replied to tobyrice01's topic in Support Forum
<?php echo count(PilotGroups::getUsersInGroup('1')); ?> Change 1 to the ID of the Active pilot group -
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
-
In that case $pilothours-$nextrank->minhours should work correctly
-
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