Jump to content

Simon

Members
  • Posts

    29
  • Joined

  • Last visited

Posts posted by Simon

  1. you mean this?

    class ACARS extends CodonModule
    {
    public $title = 'ACARS';
    public $acarsflights;
    
    public function index()
    {
    	$this->viewmap();
    }
    
    public function viewmap()
    {
    	$this->title = 'ACARS Map';
    	$this->set('acarsdata', ACARSData::GetACARSData());
    	$this->render('acarsmap.tpl');
    

  2. That needs to be set in your app.config or local.config found in /core/ and also make sure that it is the same in the acarsmap.tpl in /core/templates

    Please explain.

    my app.config and local.config should be correct because routemap and liveacars work in 4 different templates out of 5.

    The acarsmap.tpl in /core/template is identical to the one in /lib/skins/vvair template.

    Please check my http://vvair.volovirtuale.com

    I've put default template and everything works fine.

  3. have you tried firebug to see iff an error is on the page?

    No, didn't know such a program.

    This is what it sais :

    routemap

    google.maps.MapTypeId is undefined

    mapTypeId: google.maps.MapTypeId.ROADMAP

    and on livemap

    google.maps.MapTypeId is undefined

    [interrompi per questo errore]

    mapTypeId: google.maps.MapTypeId.TERRAIN,

    acars (riga 53)

    google.maps.MapTypeId is undefined

    [interrompi per questo errore]

    mapTypeId: google.maps.MapTypeId.TERRAIN,

  4. I don't need your username and passwords I just need your template to install on my website. That doesn't require any user/pass. ;)

    i did not say that :)

    I said that in some files in my template i'm pretty sure i had my access data but it do not remember wich ones :)

  5. Okay! I was looking at the codes you pasted here and noticed it's slightly structured differently with mine but you did copy and paste my codes and still don't get it up! That's surprisingly strange!!!!! huh.gif Would you consider changing your skin like getting a new one and see if it's still blank? BTW, I checked your site but I didn't get blank page I got an image of the whole world pointing out the flight but it was not moving nor was zooming in or out. Can you clear your browser cache?

    No, you need to clear the cache, that one is the pro-tempore acars map we use until i solve the problem of phpvms official live map. Now i've put the default acarsmap.tpl in my skin and as you can see it's empty.

    I've got 5 templates and all work except mine lol

  6. this is what i have now as acarsmap.tpl in my /lib/skins/vvair

    and it's exactly the same code written on the 30/04/2010 from Nabeel on last release.

    <?php 
    /**
    * These are some options for the ACARS map, you can change here
    * 
    * By default, the zoom level and center are ignored, and the map 
    * will try to fit the all the flights in. If you want to manually set
    * the zoom level and center, set "autozoom" to false.
    * 
    * You can use these MapTypeId's:
    * http://code.google.com/apis/maps/documentation/v3/reference.html#MapTypeId
    * 
    * Change the "TERRAIN" to the "Constant" listed there - they are case-sensitive
    * 
    * Also, how to style the acars pilot list table. You can use these style selectors:
    * 
    * table.acarsmap { }
    * table.acarsmap thead { }
    * table.acarsmap tbody { }
    * table.acarsmap tbody tr.even { }
    * table.acarsmap tbody tr.odd { } 
    */
    ?>
    <script type="text/javascript">
    <?php 
    /* These are the settings for the Google map. You can see the
    Google API reference if you want to add more options.
    
    There's two options I've added:
    
    autozoom: This will automatically center in on/zoom 
      so all your current flights are visible. If false,
      then the zoom and center you specify will be used instead
    
    refreshTime: Time, in seconds * 1000 to refresh the map.
      The default is 10000 (10 seconds)
    */
    ?>
    var acars_map_defaults = {
    autozoom: true,
    zoom: 4,
       center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"),
       mapTypeId: google.maps.MapTypeId.TERRAIN,
       refreshTime: 10000
    };
    </script>
    <div class="mapcenter" align="center">
    <div id="acarsmap" style="width:<?php echo  Config::Get('MAP_WIDTH');?>; height: <?php echo Config::Get('MAP_HEIGHT')?>"></div>
    </div>
    <?php
    /* See below for details and columns you can use in this table */
    ?>
    <table border = "0" width="100%" class="acarsmap">
    <thead>
    <tr>
    	<td><b>Pilot</b></td>
    	<td><b>Flight Number</b></td>
    	<td><b>Departure</b></td>
    	<td><b>Arrival</b></td>
    	<td><b>Status</b></td>
    	<td><b>Altitude</b></td>
    	<td><b>Speed</b></td>
    	<td><b>Distance/Time Remain</b></td>
    </tr>
    </thead>
    <tbody id="pilotlist"></tbody>
    </table>
    <script type="text/javascript" src="<?php echo fileurl('/lib/js/acarsmap.js');?>"></script>
    <?php
    /* This is the template which is used in the table above, for each row. 
    Be careful modifying it. You can simply add/remove columns, combine 
    columns too. Keep each "section" (<%=...%>) intact
    
    Variables you can use (what they are is pretty obvious)
    
    Variable:							Notes:
    <%=flight.pilotid%>
    <%=flight.firstname%>
    <%=flight.lastname%>
    <%=flight.pilotname%>				First and last combined
    <%=flight.flightnum%>
    <%=flight.depapt%>					Gives the airport name
    <%=flight.depicao%>
    <%=flight.arrapt%>					Gives the airport name
    <%=flight.arricao%>
    <%=flight.phasedetail%>
    <%=flight.heading%>
    <%=flight.alt%>
    <%=flight.gs%>
    <%=flight.disremaining%>
    <%=flight.timeremaning%>
    <%=flight.aircraft%>				Gives the registration
    <%=flight.aircraftname%>			Gives the full name
    <%=flight.client%>					FSACARS/Xacars/FSFK, etc
    <%=flight.trclass%>					"even" or "odd"
    
    You can also use logic in the templating, if you so choose:
    http://ejohn.org/blog/javascript-micro-templating/
    */
    ?>
    <script type="text/html" id="acars_map_row">
    <tr class="<%=flight.trclass%>">
    <td><a href="<?php echo url('/profile/view');?>/<%=flight.pilotid%>"><%=flight.pilotid%> - <%=flight.pilotname%></a></td>
    <td><%=flight.flightnum%></td>
    <td><%=flight.depicao%></td>
    <td><%=flight.arricao%></td>
    <td><%=flight.phasedetail%></td>
    <td><%=flight.alt%></td>
    <td><%=flight.gs%></td>
    <td><%=flight.distremaining%> <?php echo Config::Get('UNITS');?> / <%=flight.timeremaining%></td>
    </tr>
    </script>
    
    <?php
    /*	This is the template for the little map bubble which pops up when you click on a flight
    Same principle as above, keep the <%=...%> tags intact. The same variables are available
    to use here as are available above.
    */
    ?>
    <script type="text/html" id="acars_map_bubble">
    <span style="font-size: 10px; text-align:left; width: 100%" align="left">
    <a href="<?php echo url('/profile/view');?>/<%=flight.pilotid%>"><%=flight.pilotid%> - <%=flight.pilotname%></a><br />
    <strong>Flight <%=flight.flightnum%></strong> (<%=flight.depicao%> to <%=flight.arricao%>)<br />
    <strong>Status: </strong><%=flight.phasedetail%><br />
    <strong>Dist/Time Remain: </strong><%=flight.distremaining%> <?php echo Config::Get('UNITS');?> / <%=flight.timeremaining%><br />
    </span>
    </script>
    
    <?php
    /*	This is a small template for information about a navpoint popup 
    
    Variables available:
    
    <%=nav.title%>
    <%=nav.name%>
    <%=nav.freq%>
    <%=nav.lat%>
    <%=nav.lng%>
    <%=nav.type%>	2=NDB 3=VOR 4=DME 5=FIX 6=TRACK
    */
    ?>
    <script type="text/html" id="navpoint_bubble">
    <span style="font-size: 10px; text-align:left; width: 100%" align="left">
    <strong>Name: </strong><%=nav.title%> (<%=nav.name%>)<br />
    <strong>Type: </strong>
    <?php	/* Show the type of point */ ?>
    <% if(nav.type == 2) { %> NDB <% } %>
    <% if(nav.type == 3) { %> VOR <% } %>
    <% if(nav.type == 4) { %> DME <% } %>
    <% if(nav.type == 5) { %> FIX <% } %>
    <% if(nav.type == 6) { %> TRACK <% } %>
    <br />
    <?php	/* Only show frequency if it's not a 0*/ ?>
    <% if(nav.freq != 0) { %>
    <strong>Frequency: </strong><%=nav.freq%>
    <% } %>
    </span>
    </script>

  7. Okay, what I meant was that when you use the original skin(template) does it show the ACARS map correctly or not? if it shows the map correctly then the problem is with your skin(template) if not the problem is either with your installation or something that we have to find out. smile.gif

    Yes, it does work in default template, i've posted the image a couple of posts above.

    Thanks for you help.

  8. Remove the acarsmap.tpl and load the page. also if you can upload the file or paste the codes here.When you change skin(template) is it working?

    Done.

    This is how you see it in default template

    http://imageshack.us/photo/my-images/825/acarsdefault.jpg/

    and this is with my template.

    http://imageshack.us/photo/my-images/848/acarsvva.jpg/

    It does the same thing with or without having the acarsmap.tpl in my templates and also with the acarsmap.tpl found in standard template folder and copied in my template folder.

  9. i have allready, i've put the original but nada, not showing.

    Now there's a modified version that at least shows people on IVAO and get data from acars db.

    Other options?

    Consider that the problem is on all pages that have a map displayed, so routes, live map ecc

  10. Sorry if I open an other post but the other user hasn't got my problem.

    In basic template routemap and livemap work without problems.

    With my template they don't.

    http://vvair.volovirtuale.com

    /public_html/core/modules/ACARS/ACARS.php

    /public_html/core/common/ACARSData.class.php

    /public_html/core/templates/acarsmap.tpl

    I've uploaded again all files like a fresh install and in the personal template i've put the standard files, but still don't work.

    What else could be the problem?

    I'm an absolute noob about php and css, so please tell me where to look or which file to show you.

    Thanks

  11. Was this working before and stopped suddenly or not working from the beginning? Cause my guess is that it's gotta be the Google map codes that either is changed or not responding suddenly!

    At the beginning, in 2009, it worked eheh.

    This morning i switche to other 3-4 templates and they all work, except the official template.

  12. same problem,

    default template i see livemap and pilot routes, with my template nada.

    http://vvair.volovirtuale.com

    /public_html/core/modules/ACARS/ACARS.php

    /public_html/core/common/ACARSData.class.php

    /public_html/core/templates/acarsmap.tpl

    checked with fresh download phpvms.zip and are the same, if' uploaded them again to be sure, and also

    i've copied them in my /lib/skins/personal_template but nothing at all.

×
×
  • Create New...