Jump to content

Shepred

Members
  • Posts

    44
  • Joined

  • Last visited

Posts posted by Shepred

  1. I can't say that I've heard of VidaHost, I can however only recommend these guys:

    Meebox, a danish hosting company. Never had any issues, downtime is extremely rare and always announced well ahead. Support is excellent, and pretty much available 24/7. They're cheap as chips as well, in case you grow tired of problems.. These guys are definitely the way to go.

  2. It's wrong, but he repented. But I developed a module only free, you think it wrong?

    Correct me if I'm wrong, but as far as I can see, all you've done to the GitHub is remove the remaining copyright tags and rename the folder? I really don't see how that translates to developing a module.

  3. I have no php knowledge whatsoever...would I put that code in the php code on the page I'm trying to add?

    I haven't actually tried this myself, however, my guess would be: include the call for the phpVMS config at the beginning of either the index page, or each seperate page, where you wish to load phpVMS functions. I believe you will then be able to call phpVMS functions as usual.

    .. Again, haven't tried this myself.

  4. well if i am flying long haul at Fl300 it will not let me insert that FL i have to beloew 050

    You must enter it as a full numeric altitude. For an example, FL300 = 30000.

  5. As I can't access your admin panel, I can't tell from your site. Also, I can't really tell from your webpage which files you use, you would have to tell me I'm afraid. Although I must admit, I don't see why you would edit the colours, as no one will be able to access them apart from your admins.

  6. I am almost certain that changes to the admin center will be overwritten in updates, don't quote me on that though.. :ph34r: You can modify the CSS of the admin center, and therefore the colours, by navigating to and editing this file:

    admin\lib\layout\styles.css
    

  7. What I usually do is create a php script that choses a random image on page load, instead of a slider. A slider takes the attention away from the important part of the webpage, in my opinion. Here's the code (if you want it to show up on every webpage, put it in 'layout.tpl' or 'core_navigation.tpl'):

       <?php
     $rotate[] = "<img src='/lib/skins/YOURSKINFOLDER/IMAGEPATH'/>";
     $rotate[] = "<img src='/lib/skins/YOURSKINFOLDER/IMAGEPATH'/>";	 
     $number = rand(0, sizeof($rotate) - 1);
     echo $rotate[$number];
       ?>
    

    Let me know if you have any questions :)

×
×
  • Create New...