Jump to content

Jon

Members
  • Posts

    253
  • Joined

  • Last visited

Posts posted by Jon

  1. Hello there Jon. I now as it looks like VAT-UK. But it is completely different. The website operates on a completely different level. Sorry for making it look like VAT-UK.

    Regards

    There's no need to apologise I hope you didn't take my comment in the wrong way as a complaint. I was just giving a bit of feedback :)

    Jon

  2. Go to where you uploaded phpVMS, go into the core folder then templates. Find the file called core_navigation.tpl download it, open it with notepad or dreamweaver.Select all the text in the file. Then replace it with this:

    <li><a href="<?php echo url('/'); ?>">home</a></li>
    <?php
    if(!Auth::LoggedIn())
    {
    // Show these if they haven't logged in yet
    ?>
    <li><a href="<?php echo url('/login'); ?>">Login</a></li>
    <li><a href="<?php echo url('/registration'); ?>">Register</a></li>
    <?php
    }
    else
    {
    // Show these items only if they are logged in
    ?>
    <li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li>
    
    <?php
    }
    ?>
    <li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li>
    <li><a href="<?php echo url('/acars') ?>">Live Map</a></li>
    <li><a href="<?php echo SITE_URL ?>/Watercooler">Forum</a></li>
    <?php echo $MODULE_NAV_INC;?>
    <?php
    if(Auth::LoggedIn())
    {
    if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN))
    {
    	echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>';
    }
    ?>
    
    
    <li><a href="<?php echo url('/logout'); ?>">Log Out</a></li>
    <?php
    }
    ?>

    Save the file.

    Go to the same location where you installed phpVMS then lib folder skins folder then crystal. Then upload the file into there.

    There you go.Should be done now

    Jon

  3. I have changed my passwort in my database but doesnt wor.

    If you've changed your password inside you phpmyadmin then it won't work. phpVMS uses password encryption so you won't be able to change it directly inside the database.

    Jon

  4. Hi All,

    I've searched the forum but can't find any working solutions to my problem.

    My mass e mailer has not been working in the past week or two. (I don't know if having a few sites connected to the same database info makes a difference for this)

    It says sending complete but nobody receives an email.

    Help would be appreciated

    Jon

  5. So this is a project you want help with to make your own skin for phpVMS? Am I correct?

    So what will happen after this skin is created? Will you be using it towards your own virtual airline and will the other person get credit?

    What experience do you have in skin design and would you need to be taught basic HTML and CSS or would the other person be doing all the work?

    Your first post could of really been a bit more detailed

    Jon

  6. Hi All,

    What Am I Looking For?

    A unique, training request/accept system for members of my virtual airline

    In Detail

    A mentor can input his availability into the training centre admin panel. Which inputs it into a MySQL table the data is Mentor Name, Date and then Start time and end time.

    I would like the normal pilot to open the training centre and be shown available sessions for him to get mentoring. The data shows each individual entry for sessions until they are accepted it also shows any accepted session the pilot has.

    The pilot can then confirm the session with the mentor, add what he wants to do in a small text box and the mentor will get an e-mail with information about the pilots accept.

    Once the session is completed, the mentor can then file a report.

    I hope this is do-able and if anybody is able to do this then please reply and quote a price. I must state I want this UNIQUE I don't want it to be able to be purchased by any other person for phpVMS so we can remain a unique virtual airline.

    Hope for a reply soon,

    Jon

×
×
  • Create New...