• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Geisor Layout Help!

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Look i have http://otland.net/f118/gesior-aac-kathrine-layout-34074/

and i have install it to geisor layout but i dont se any img only this ..
Latest News Account Community Library Shops'; } ?>
Latest News News Archives
Login Create Account Lost Account Interface Server Rules
Search Player Guilds Highscores Last Deaths Houses Game Masters
Monsters Spells Who is online? Server Info Downloads Gallery
Buy Premium Points Shop Offer'; if($logged) echo 'Shop History'; echo '
'; } ?>
» Server Offline

© 2009 by . All rights reserved.

Same problem whit Valhara Layout..
 
all you need to do is put the layout folder in xampp/htdocs/layouts then after its in there go to xampp/htdocs/config/config.php <open and at the bottom it will have this
Code:
$config['site']['layout'] = "whatever"; // layout name
change the "whatever" to the name of your layout example
Code:
$config['site']['layout'] = "mylayout"; // layout name
if this isnt what you wanted srry nub mistake :)
 
all you need to do is put the layout folder in xampp/htdocs/layouts then after its in there go to xampp/htdocs/config/config.php <open and at the bottom it will have this
Code:
$config['site']['layout'] = "whatever"; // layout name
change the "whatever" to the name of your layout example
Code:
$config['site']['layout'] = "mylayout"; // layout name
if this isnt what you wanted srry nub mistake :)

No, I assume that's what he did already.

I've experienced this issue also, it doesn't seem to support the newest gesior AAC. You should contact the author of that layout.
 
change in layout.php:
<? = <?PHP

Oh, thank you Aeron.. I forgot that the latest xampp versions does not support the <?.

PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    	<title><?php echo $title; ?></title>
        <link rel="stylesheet" href="<?php echo $layout_name; ?>/style.css" type="text/css" />
        <script src="<?php echo $layout_name; ?>/menu.js" type="text/javascript"></script>
        <script type="text/javascript">
			var category = '<?php echo $category; ?>';
		</script>
        <?php echo $layout_header; ?>
    </head>
    
    <body onload="initMenu();">
    	<div id="page">
        <!-- Keep all on center of browser -->
            
            <!-- Header Section -->
            <div id="header"></div>
            <!-- End -->
            
            <!-- Menu Section -->
            <div id="tabs">
            	<span id="news" onclick="menuSwitch('news');" class="tab-active">Latest News</span>
                <span id="account" onclick="menuSwitch('account');" class="tab">Account</span>
                <span id="community" onclick="menuSwitch('community');" class="tab">Community</span>
                <span id="library" onclick="menuSwitch('library');" class="tab">Library</span>
                <?php
                if($config['site']['shop_system'] == 1)
				{
                	echo '<span id="shops" onclick="menuSwitch(\'shops\');" class="tab">Shops</span>';
                }
                ?>
            </div>
            
            <div id="mainsubmenu">
            	<div id="news-submenu">
                    <a href="?subtopic=latestnews">Latest News</a>
                    <span class="separator"></span>
                    <a href="?subtopic=archive">News Archives</a>
                </div>
                
                <div id="account-submenu">
					<?PHP
					if($group_id_of_acc_logged >= $config['site']['access_admin_panel'])
					{
						echo '<a href="?subtopic=adminpanel">Admin Panel</a>
						<span class="separator"></span>';
					}
					
					if($group_id_of_acc_logged > 0)
					{
						echo '<a href="?subtopic=namelock">Namelocks</a>
						<span class="separator"></span>';
					}
					
					if($logged)
					{
						echo '<a href="?subtopic=accountmanagement">My Account</a>
						<span class="separator"></span>
						<a href="?subtopic=accountmanagement&action=logout">Logout</a>
						<span class="separator"></span>';
					}
					else
					{
						echo '<a href="?subtopic=accountmanagement">Login</a>
						<span class="separator"></span>';
					}
					?>
					<a href="?subtopic=createaccount">Create Account</a>
                    <span class="separator"></span>
					<a href="?subtopic=lostaccount">Lost Account Interface</a>
                    <span class="separator"></span>
					<a href="?subtopic=tibiarules">Server Rules</a>
                </div>
                
                <div id="community-submenu">
                	<a href="?subtopic=characters">Search Player</a>
                    <span class="separator"></span>
                    <a href="?subtopic=guilds">Guilds</a>
                    <span class="separator"></span>
                    <a href="?subtopic=highscores">Highscores</a>
                    <span class="separator"></span>
                    <a href="?subtopic=killstatistics">Last Deaths</a>
                    <span class="separator"></span>
                    <a href="?subtopic=houses">Houses</a>
                    <span class="separator"></span>
                    <?PHP if(!empty($config['site']['forum_link'])) echo '<a href="'.$config['site']['forum_link'].'">Forum</a><span class="separator"></span>'; ?>
                    <a href="?subtopic=team">Game Masters</a>
                </div>
                
                <div id="library-submenu">
                	<a href="?subtopic=creatures">Monsters</a>
                    <span class="separator"></span>
                    <a href="?subtopic=spells">Spells</a>
                    <span class="separator"></span>
                    <a href="?subtopic=whoisonline">Who is online?</a>
                    <?PHP if($config['site']['serverinfo_page'] == 1) echo '<span class="separator"></span><a href="?subtopic=serverinfo">Server Info</a>'; ?>
                    <?PHP if($config['site']['download_page'] == 1) echo '<span class="separator"></span><a href="?subtopic=downloads">Downloads</a>'; ?>
                    <?PHP if($config['site']['gallery_page'] == 1) echo '<span class="separator"></span><a href="?subtopic=gallery">Gallery</a>'; ?>
                </div>
                
    			<?php
				if($config['site']['shop_system'] == 1)
				{
					echo '
					<div id="shops-submenu">
						<a href="?subtopic=buypoints">Buy Premium Points</a>
						<span class="separator"></span>
						<a href="?subtopic=shopsystem">Shop Offer</a>';
						if($logged)
							echo '<span class="separator"></span><a href="?subtopic=shopsystem&action=show_history">Shop History</a>';
					echo '</div>';
				}
				?>
            </div>
            <!-- End -->
            
            <!-- Content Section -->
            <div id="content">
            	<div id="margins">
                	<table cellpadding="0" cellspacing="0" border="0" width="100%">
                		<tr>
                        	<td><a href="index.php?subtopic=latestnews"><?php echo $config['server']['serverName']; ?></a> &raquo; <?php echo $topic; ?></td>
                            <td>
                            <?PHP
							if($config['status']['serverStatus_online'] == 1)
								echo '
								<font color="green"><b>Server Online</b></font> &raquo;
								Players Online: '.$config['status']['serverStatus_players'].' / '.$config['status']['serverStatus_playersMax'].' &raquo;
								Monsters: '.$config['status']['serverStatus_monsters'].' &raquo; Uptime: '.$config['status']['serverStatus_uptime'].'';
							else
								echo '<font color="red"><b>Server Offline</b></font>';
							?>
                            </td>
                        </tr>
                    </table>
                    <hr noshade="noshade" size="1" />
                    <?php echo $main_content; ?>
                </div>
            </div>
            <div id="content-bot"></div>
            <div id="copyrights">
            	<p>&copy; 2009 by <?php echo $config['server']['serverName']; ?>. All rights reserved.</p>
            </div>
            <!-- End -->
            
        <!-- End -->
        </div>
    </body>
</html>

This is a fixed layout.php. Although, this layout.php is for kathrine's layout so you will need to edit your layout.php on your own.
 
Anyone know why my button images don't look like those ones on this picture ?

kath1.png


There is also problem with news head line as you can see on second picture.

layk.png


Happy Easter btw :)
 
Last edited:
Back
Top Bottom