Jump to content

tdohrer

Members
  • Posts

    52
  • Joined

  • Last visited

Posts posted by tdohrer

  1. Hello,

    Hope you are doing well. I am trying to change my valid domain for the acars but it wont let me.

    I sent in a ticket a couple days ago. Is there a way for me to do it?

    The box is greyed out and wont let me click.

     

    Regards,

    Tyson

  2. Ok so i fixed that issue, i am now trying to get some fonts back to normal or spruce them up a lttile bit and not quite sure what to do. Here is the text, i took a snippet and put it in the zip folder since that is all it would let me upload.

     

    Capture.zip

  3. Hello,

    I am having issue with my main page slider, it is not loading. The loading emblem just sits there and thinks. I havent touched any the files in awhile. I was thinking of switching it to the windytv that i have seen on some other sites. Would anyone mind walking me through how to do this?

            <div id="masterslider" class="master-slider ms-skin-default mb-0">
                <!-- first slide -->
                <div class="ms-slide">
                    <!-- slide background -->
                    <img src="https://s10.postimg.org/h9ts8kc61/15873229046_7394231973_o.png" data-src="https://s10.postimg.org/h9ts8kc61/15873229046_7394231973_o.png" alt="Strongest distribution network"/>  
    
                    <h2 class="ms-layer pi-caption01" 
                        style="left: 0; top: 340px;" 
                        data-type="text" 
                        data-effect="left(short)" 
                        data-duration="300"
                        data-hide-effect="fade" 
                        data-delay="300" 
                        >
                        Welcome to
                    </h2>
    
                    <h2 class="ms-layer pi-caption01" 
                        style="left: 0; top: 400px;" 
                        data-type="text"
                        data-effect="left(short)" 
                        data-duration="300"
                        data-hide-effect="fade" 
                        data-delay="600" 
                        >
                        Aloft Virtual
                    </h2>
    
                    <h2 class="ms-layer pi-caption01" 
                        style="left: 0; top: 460px;" 
                        data-type="text"
                        data-effect="left(short)" 
                        data-duration="300"
                        data-hide-effect="fade" 
                        data-delay="900" 
                        >
                        Alliance
                    </h2>
                </div><!-- .ms-slide end -->
    
                <!-- slide 02 start -->
               
                
            </div><!-- #masterslider end -->
    
            <div class="page-content parallax parallax01 mb-70">
                <div class="container">
                    
  4. So i found out i have a subdomain set up. I had my website up which was done by some one else. Then some things went wrong so i am trying to piece this back together. It was the subdomain that was causing the issue, it wasnt connected to the folder.

  5. I didn't set it, it did it by itself, if i remember correctly. That would be because of the layout.php on my mainsite? i have the skin as the crystal so shouldnt my skin and all of its files not be messing with that? I have my old local.config file from my previous version of phpvms. Do you think that might help?

  6. Hello,

    I am getting this error and i cant figure out what is causing it.

    Notice: The template file "SKINS_PATH/header.php" doesn't exist in /home/aloftvir/public_html/crew/core/classes/TemplateSet.class.php on line 231

    You must be logged in to access this feature!

    Notice: The template file "SKINS_PATH/footer.php" doesn't exist in /home/aloftvir/public_html/crew/core/classes/TemplateSet.class.php on line 231

    Ive tried switching all my files to php from tpl, i have created a blank header.php and footer.php and still can solve it. Any ideas?

    Thanks

  7. Ok so i made it to uploading it to my site and all of that. i am getting a weird notice.

    Notice: The template file "SKINS_PATH/header.php" doesn't exist in /home/aloftvir/public_html/crew/core/classes/TemplateSet.class.php on line 231

    What does that mean, or what should i be looking for? My layout is a php file, it was a .tpl file before. Could that be the issue?

  8. Sorry did more googling and figured that out, now i have ran into this issue in the pics. I get the serach page then it says no module. I did have to switch file names from php to tpl. I followed the instructions on the devlopers site on how to do so. Any help would be great and thanks for the help so far. You guys have been huge.

    post-19504-0-21535100-1478357690_thumb.png

    post-19504-0-86753900-1478357693_thumb.png

  9. So i did that, and i am getting this.

    Thank you for all the help by the way.

    Notice: The template file "/home/aloftvir/public_html/crew//core/templates/flightsearch/searchform.tpl" doesn't exist in /home/aloftvir/public_html/crew/core/classes/TemplateSet.class.php on line 248

    What does that mean?

  10. I think, i am still trying to locate where everything is. This is the files that has anything to do with my downloads in my profiles

    This is from download_item.tpl

    <div align="center">

    <p>Your download will start in a few seconds, or <a href="<?php echo $download->link;?>">click here to manually start.</a></p>

    </div>

    <script type="text/javascript">

    window.location = "<?php echo $download->link;?>";

    </script>

    This is from downloads.tpl

    <h1>Downloads</h1>

    <?php

    if(!$allcategories)

    {

    echo 'There are no downloads available!';

    return;

    }

    foreach($allcategories as $category)

    {

    ?>

    <p><h2><strong><?php echo $category->name?></strong></h2></p>

    <ul>

    <table class="table">

    <thead>

    <tr>

    <th>Name</th>

    <th>Description</th>

    <th>#of time Downloads</th>

    <th>Click to Download</th>

    </tr>

    </thead>

    <tbody>

    <?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)

    {

    ?>

    <tr>

    <td><?php echo $download->name?></td>

    <td><?php echo $download->description?></td>

    <td>Downloaded <?php echo $download->hits?> times</td>

    <td><button href="4564" type="button" class="btn btn-primary waves-effect waves-light m-b-5"><font color="#eee"><a color="#eee" href="http://www.crew.aloftvirtualalliance.com/index.php/downloads/dl/<?php echo $download->id;?>">Download</a></font>

    </button> </td>

    </tr>

    <?php

    }

    ?> </tbody>

    </table><br />

    </ul>

    <?php

    }

    ?>

×
×
  • Create New...