-
Posts
1823 -
Joined
-
Last visited
-
Days Won
53
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Strider
-
Much easier then that, as that will be overwritten in an update, just remove the code in the tpl file.
-
The reason it replicates the theme multiple times, is the system puts the table through a foreach loop, which displays the seperate rosters for each hub, you will have to merge them all into one roster, that is how to fix that problem.
-
The site needs a lot of work. Dont use iframes to bring a website in from a free web host. It just looks bad, and unprofessional.
- 1 reply
-
- 1
-
-
If you do a google search, there is some code that can help, but it is just to do with making the CSS IE friendly, IE likes to have things its own way. Trial and error is the only way you will get it to work on all browsers, dont use new html, like HTML5 not all browsers accept it yet, wait a few years, and it will be, but until then, also because a lot of users won't have up to date browsers. Work with HTML4, PHP does not do any styling, all styles are done via html and css, php just adds interactivity to a web page.
-
Have to see if that works, I tried one proxy server and it failed to be blocked.
-
No it is not a dynamic IP, as it has gone from starting with 203 to 104, to 116, a Dynamic IP doesn't go through IP ranges like that.
-
I would like to know is there a way to block proxy sites from web servers? As I have a guy that keeps trying to register, and is using a proxy, as I have IP blocked him from the server, yet he keeps registering, and with a different IP each time.
-
I have to agree with roger, I just purchased a custom version of kACARs, and am loving the ease of use, and the quickness of his replies and support when something goes wrong, even if it is unclear of what the problem he will still do his very best to fix it or work with you to get it fixed and make you happy. A huge thanks Jeff! Keep up the good work.
-
With kACARs you don't need to download anything from the site. You upload the module to the core/modules folder, Then open kACARs go to the VA profiles, create a VA profile, and put in the url base for the va, pilot id and password, give the profile a name, then go to user settings and in the drop down beside va profile, select the VA profile you just created, and click save, and you should be able to log in fine.
-
Efficiency and points system / FSAcars pirep send by mail
Strider replied to cgentil's topic in Support Forum
You can restrict the aircraft by rank, not sure you can do it by rank and award. -
Efficiency and points system / FSAcars pirep send by mail
Strider replied to cgentil's topic in Support Forum
Southwestva, please dont be so rude in the future, everyone has to start from somewhere. And at least he is keeping it all in one topic, not hundreds. Help, dont bash. Now back to the topic, cgentil, fsacars has stopped being supported by phpvms, due to it not being built anymore, kacars is the best one out there thus far. -
Works perfectly now, thanks Vansers
-
Make sure the module is there, make sure you have bidded on the flight, make sure that the url is correct.
-
I am thinking that the problem is something to do with the pax side which is MH, and the cargo side MHK, I will change it.
-
Strange thing is, I have two cargo airlines in my VA, and it works fine for the other one.
-
One way is to go to your local.config file and go to line 97 where it says: Config::Set('PAGE_ENCODING', 'ISO-8859-1'); and change it to: Config::Set('PAGE_ENCODING', 'UTF-8');
-
Currently this is happening to me, with the free version, it is not recognising cargo flights. They are set normally with C as the flight type, but when submitted they come through as the passenger side, I think it has to do with the three letter ICAO code which is MHK, which I think it gets caught up on. as it puts the K in the flight number field when the pirep is submitted.
-
I think I know your problem. To select the VA profile you just created (the details will disappear normally, but they are saved) go to Options>User Settings then select the VA profile you just created, your pilot ID and password will be there, select that, save, and login. It should work. You seem to be skipping that step.
-
Or install it to the documents folder, dont install it to the program(X86) folder, as it requires UAC control.
-
It wont work, you need to name each class with a different name, as if you style span4 for one, it will do it for all as they are all div class="span4". Just use span1, span2, span3, and style each one the same but change the float, float:left, float:right, the middle one shouldn't have a float as you are not wanting it to go either to the left or the right, and the float only works with left or right..
-
Find in schedule_results.tpl : <td><?php echo $route->aircraft; ?></td> and replace with: <?php if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { echo $route->aircraft; }?> Try that, see what happens.
-
That is a negative on the previous months.
-
The greased landings is still not working. The SQL Query is still not looking for it. $query = "SELECT p.*, UNIX_TIMESTAMP(p.submitdate) as submitdate, UNIX_TIMESTAMP(p.modifieddate) as modifieddate, u.pilotid, u.firstname, u.lastname, u.email, u.rank, a.id AS aircraftid, a.name as aircraft, a.registration, dep.name as depname, dep.lat AS deplat, dep.lng AS deplng, arr.name as arrname, arr.lat AS arrlat, arr.lng AS arrlng FROM " . TABLE_PREFIX . "pireps p LEFT JOIN " . TABLE_PREFIX . "aircraft a ON a.id = p.aircraft LEFT JOIN " . TABLE_PREFIX . "airports AS dep ON dep.icao = p.depicao LEFT JOIN " . TABLE_PREFIX . "airports AS arr ON arr.icao = p.arricao LEFT JOIN " . TABLE_PREFIX . "pilots u ON u.pilotid = p.pilotid WHERE MONTH(submitdate) = {$month} AND YEAR(submitdate) = {$year} AND p.landingrate != 0 AND p.accepted = 1 AND u.retired = 0 ORDER BY p.landingrate DESC LIMIT 5"; See the p.landingrate, it is only in the order by and where, it has not been instructed to look for it anywhere else.
-
Not really, XML seems to be the only good way of doing it