Jump to content

aarbee

Members
  • Posts

    199
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by aarbee

  1. This Fokker is the first of its kind. Begin januari, we we add more. Yet they will have Rotterdam as their home airport.

    Begin februari another batch will be added at Maastricht.

    The Fokkers 50 at Rotterdam and Maastricht will connect to the major airports in Western Europe.

    This is so far our biggest plane at the va.

    The smaller Cessna Caravans and Twinotters are connecting smaller airports in France, Belgium, England, Germany and even Switzerland.

    We hope to attract more public/pilots now that have taken that step.

    On a sidenote: We have a new livery for our Cessna Caravans. They where painted by Reach.

    Visit our va? www.citylink-va.com

  2. Thanks for the explanation.

    Then i am right.

    Because I had create an airline for express flights and Business flights.

    I also added 2 hubs, Maastricht and Rotterdam, wether I was a member of any of this, I could see all of them.

    You wrote "default PHPVMS".

    That implicates that there are tools that can make it really happen that you only see the flights from a certian hub?

    RobB

  3. It seems that there should be a link to another page of screenshots.

    But I do not see that link.

    Should I do something to make it visable?

    This piece of code does not seem to show items:

    $navigation = $pagination->create_links();
    echo $navigation;
    ?>
    

    Is there something that I missed?

  4. smf has a bridge too, if I am correct.

    I know several foa, also PHPBB. I find my way around.

    Install all fora in a folder like \www\forumfolder?

    @Mischka, is it true that the Vanilla looks as a flat forum?

  5. I have installed a second phpvms system for another VA.

    There I see something odd on the show pirep page.

    Instead of a map, I see this text at the bottom:

    one two three four five

    When I look inside the code I read this:

    <body>
    <div id="image1">
    <img src="1.jpg" border="0" alt="one" />
    </div>
    <div id="image2" style="display:none">
    <img src="2.jpg" border="0" alt="two" />
    </div>
    <div id="image3" style="display:none">
    <img src="3.jpg" border="0" alt="three" />
    </div>
    <div id="image4" style="display:none">
    <img src="4.jpg" border="0" alt="four" />
    </div>
    <div id="image5" style="display:none">
    <img src="5.jpg" border="0" alt="five" />
    </div>
    <br><br>
    <a id="one" href="#" onclick="changeIt('image1');">one</a>
    <a id="two" href="#" onclick="changeIt('image2');">two</a>
    <a id="three" href="#" onclick="changeIt('image3');">three</a>
    <a id="four" href="#" onclick="changeIt('image4');">four</a>
    <a id="five" href="#" onclick="changeIt('image5');">five</a>
    </body>
    

    It is odd that I see a second <body> in the code and wonder where it comes from.

    And why it does not show the map.

    As far as I know, I have not changed anything in this part.

  6. Parkho, thanks. it worked great.

    I made a small adition, that I would like to return to the community.

    This creates a small table instead of the LI.

    It shows a thumnail of the item, and if you click on that a bigger picture opens in another tab of your browser

    <h1>Downloads</h1>
    <table>
    <tr>
    <?php
    if(!$allcategories)
    {
    echo 'There are no downloads available!';
    return;
    }
    
    foreach($allcategories as $category)
    {
    ?>
    <p><h2><strong><?php echo $category->name?></strong></h2></p>
    
    
    <?php
    # This loops through every download available in the category
    $alldownloads = DownloadData::GetDownloads($category->id);
    
    if(!$alldownloads)
    {
    echo 'There are no downloads under this category';
    $alldownloads = array();
    }
    
    foreach($alldownloads as $download)
    {
    ?>
    
    
    <td STYLE="vertical-align: top;"><a href="<?php echo $download->image ;?>"" target="_blank"><img width="275px" src="<?php echo $download->image ;?>"></a></TD>
    <td>
    <td> </TD>
    <td STYLE="vertical-align: top;">
    <a href="<?php echo url('/downloads/dl/'.$download->id);?>">
    <?php echo $download->name?></a><br />
     <?php echo $download->description?><br />
    <hr width="20px">
    		 <em>Downloaded <?php echo $download->hits?> times</em></TD>
    
    
    <?php
    }
    ?>
    </tr>
    </table>
    <?php
    }
    ?>
    

    • Like 1
  7. Just checked the source of the website, and I do not see any <img src= in it.

    Only this:

    <h1>Downloads</h1>
    <p><h2><strong>Planes</strong></h2></p>
    <ul>
    <li>
     <a href="http://www.citylink-va.com/index.php/downloads/link">
      Pilatus PC12</a><br />
      Text.<br />
    	  <em>Downloaded 1 times</em></li>
    <br />
    </ul>
    

  8. I cannot see anything wrong with it.

    www.citylink-va.com/download/PC12-afg.jpg

    It works. And that is the the exact code as I placed it in the download page.

    I mean the link itself works. I still cannot see the image at download.

×
×
  • Create New...