1
ijtzib
Re: A slide appearing only on the first page
  • 2011/9/9 16:54

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


Still not working.....

This is my theme.html file...

<!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>
<title><{$xoops_sitename}><{if $xoops_pagetitle !=''}> - <{$xoops_pagetitle}><{/if}></title>
<!-- Meta Tags -->
<meta name="Description" content="<{$xoops_meta_description}>" />
<meta http-equiv="content-type" content="text/html; charset=<{$xoops_charset}>" />
<meta http-equiv="content-language" content="<{$xoops_langcode}>" />
<meta name="keywords" content="<{$xoops_pagetitle}>,<{$xoops_meta_keywords}>" />
<meta name="rating" content="<{$xoops_meta_rating}>" />
<meta name="author" content="<{$xoops_meta_author}>" />
<meta name="copyright" content="<{$xoops_meta_copyright}>" />
<meta name="generator" content="<{$smarty.const.META_GENER}>" />
<meta name="robots" content="<{$xoops_meta_robots}>" />
<meta name="revisit-after" content="<{$smarty.const.META_REV_AFT}>" />
<!-- Styles/Relations -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="<{xoAppUrl backend.php}>" />
<link rel="stylesheet" type="text/css" media="print" href="<{xoImgUrl otherCss/print.css}>"/>
<link rel="alternate stylesheet" type="text/css" media="screen" href="<{xoImgUrl otherCss/highcontrast.css}>" title="zoom" rev="zoom"/>
<link rel="stylesheet" type="text/css" media="all" href="<{xoImgUrl style.css}>" />
<!-- JS -->
<{php}>
global $xoTheme;
$xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js');
$xoTheme->addScript('js/jquery.cycle.all.min.js');
$xoTheme->addScript('js/superfish.js');
$xoTheme->addScript('js/hoverIntent.js');
$xoTheme->addScript('js/jquery.bgiframe.min.js');
$header = empty($GLOBALS['xoopsOption']['xoops_module_header']) ? $this->get_template_vars('xoops_module_header') : $GLOBALS['xoopsOption']['xoops_module_header'];
$this->assign('xoops_module_header', $xoTheme->renderMetas(null, true) . $header);
<{/php}>
<{$xoops_module_header}>
<!--[if lt IE 7]>
<script src="<{xoImgUrl js/unitpngfix.js}>" type="text/javascript"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="<{xoImgUrl js/IE8.js}>" type="text/javascript"></script>
<![endif]-->
<script type="text/javascript">
$(document).ready(function() {
//Slideshow
$('#slider').cycle({
fx: 'scrollVert',
timeout: 5500,
next: '#btn_next',
prev: '#btn_prev'
});
//Slideshow Ctrl
$('.slideshow').mouseover(
function () { $('.slider-ctrl').show(); }
);
$('.slideshow').mouseout(
function () { $('.slider-ctrl').hide(); }
);
//Panel Ctrl
$('#panel-ctrl').click(function () {
$('#panel').slideToggle('slow');
$('#panel-ctrl').toggleClass('close');
});
//Superfish
jQuery('ul.sf-menu').superfish({
animation: {height:'show'},
delay: 200,
});
});
</script>
<!-- Smarty Assign -->
<{assign var=theme_name value=$xoTheme->folderName}>
<{assign var=theme_name value=$xoTheme->folderName|cat:'/tpl'}>
</head>
<body class="xo-page">
<div class="wrapper">
<!--- Header -->
<div class="container_12">
<td id="headerlogo"><a href="<{xoAppUrl /}>" title="<{$xoops_sitename}>"><img src="<{xoImgUrl logo.png}>" alt="<{$xoops_sitename}>" /></a></td>

<div class="grid_8"></div>
<div class="clear"></div>
</div>
<!-- Navbar -->
<div id="navbar">
<ul class="sf-menu">
<{includeq file="$theme_name/navmenu.html"}>
<div class="clear"></div>
</ul>
<div class="clear"></div>
</div>

<div class="slideshow">
<div id="slider">
<{if $smarty.server.PHP_SELF=='/index.php' && $xoops_dirname=="system"}>
<{includeq file="$theme_name/slideshow.html"}>
<{/if}>
</div>
<div class="slider-ctrl">
<a href="#" id="btn_prev">Prev</a>
<a href="#" id="btn_next">Next</a>
</div>
</div>
<div class="separator"></div>
<!-- Content -->
<div id="content" class="container_12">
<{if $xoBlocks.canvas_left}>
<!-- Left Blocks -->
<div class="grid_3">
<div class="left-block">
<{foreach item=block from=$xoBlocks.canvas_left}>
<div class="left-block-content">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
</div>
<{/if}>
<!-- Center Blocks -->
<{if $xoBlocks.canvas_left and $xoBlocks.canvas_right}>
<div class="grid_6">
<{else}><{if $xoBlocks.canvas_left or $xoBlocks.canvas_right}>
<div class="grid_9">
<{else}>
<div class="grid_12">
<{/if}><{/if}>
<{if $xoBlocks.page_topleft or $xoBlocks.page_topcenter or $xoBlocks.page_topright}>
<!-- Center Top Left -->
<div class="center-top-left">
<{foreach item=block from=$xoBlocks.page_topleft}>
<div class="center-top-left-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<!-- Center Top Right -->
<div class="center-top-right">
<{foreach item=block from=$xoBlocks.page_topright}>
<div class="center-top-right-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<!-- Center Top Center -->
<div class="center-top-center">
<{foreach item=block from=$xoBlocks.page_topcenter}>
<div class="center-top-center-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<{/if}>
<!-- Content -->
<{if $xoops_contents && ($xoops_contents != '') }>
<div class="xo-content">
<{$xoops_contents}>
</div>
<{/if}>
<{if $xoBlocks.page_bottomleft or $xoBlocks.page_bottomcenter or $xoBlocks.page_bottomright}>
<!-- Center Bottom Left -->
<div class="center-bottom-left">
<{foreach item=block from=$xoBlocks.page_bottomleft}>
<div class="center-bottom-left-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<!-- Center Bottom Right -->
<div class="center-bottom-right">
<{foreach item=block from=$xoBlocks.page_bottomright}>
<div class="center-bottom-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<!-- Center Bottom Center -->
<div class="center-bottom-center">
<{foreach item=block from=$xoBlocks.page_bottomcenter}>
<div class="center-bottom-center-block">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
<{/if}>
</div>
<{if $xoBlocks.canvas_right}>
<!-- Right Blocks -->
<div class="grid_3">
<div class="right-block">
<{foreach item=block from=$xoBlocks.canvas_right}>
<div class="right-block-content">
<h2><{$block.title}></h2>
<{$block.content}>
</div>
<{/foreach}>
</div>
</div>
<{/if}>
<div class="clear"></div>
</div>
<div class="container_12">
<div class="footer">
<a href="http://twitter.com/yourname" title="Twitter"><img src="<{xoImgUrl img/twitter.png}>" alt="" /></a>
<a href="<{xoAppUrl backend.php}>" title="RSS"><img src="<{xoImgUrl img/rss.png}>" alt="" /></a>
<a href="http://php.net" title="Written in PHP"><img src="<{xoImgUrl img/php.png}>" alt="" /></a>
<a href="https://xoops.org.cn" title="Powered by XOOPS"><img src="<{xoImgUrl img/xoops.png}>" alt="" /></a>
<a href="http://insraq.me" title="Designed by INSRAQ"><img src="<{xoImgUrl img/insraq.png}>" alt="" /></a>
</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>



ANY other suggestion to assist me...?

Thanks!



2
ijtzib
Re: A slide appearing only on the first page
  • 2011/9/8 20:48

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


im using the InsBusie theme...but it not working..The image not appearing in the homepage and it still appears in other pages without the image.
this is the code:

<div class="slideshow">
<div id="slider">
<{if $smarty.server.PHP_SELF=='/index.php'}>
<{includeq file="$theme_name/slideshow.html"}>
<{/if}>
</div>
<div class="slider-ctrl">
<a href="#" id="btn_prev">Prev</a>
<a href="#" id="btn_next">Next</a>
</div>
</div>

Should I put the code somewhere else..what i doing wrong??

Any assistance please

thankx..



3
ijtzib
Re: Getting a blank home page!!
  • 2009/4/20 16:37

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


but in generally i now don't understand where i am because a colleague of mine restored a copy of his website on my laptop and he also is getting blank pages when he tries to access forms in the formulize module...of course his copy is working fine in his computer...i know he went through the right steps for doing this...what is wrong now...he is using the same appserv version in windows xp professional...can u guys give me some ideas on what is really happening here!!! is there a setting i have to change or is it my localhost(web server)??????
Thanks.....



4
ijtzib
Re: Getting a blank home page!!
  • 2009/4/20 16:28

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


I uninstalled the smartpatners module and reinstal it again. I now get the front page but when i go to module its again a blank page. when i was installing the module again, on the installation page i got several messages....
'sql file not found at x5b5_smartparner_mimetypes'

what this suppose to mean??



5
ijtzib
Re: Getting a blank home page!!
  • 2009/4/15 19:20

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


ok...
But yes Smart Object Framework module is installed and hidden!



6
ijtzib
Re: How to bring an uninstalled module back?
  • 2009/4/15 17:04

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


so the easiest way to go is to install fresh copy of the module and reconfigure its settings and recreate everyting...
But its possible to do it depending on which module you're working on right?
But complex modules requires more to consider....

This situation sometimes arises when we already have a live website on the internet, but then at the same time one needs to add or test another modules to the website but at the same time would like not to tamper with the live copy! so we tend to work local and then would like to restore it on the live copy.



7
ijtzib
Re: Getting a blank home page!!
  • 2009/4/15 16:32

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


when i logged in the admin again in debug mode i got this message:

Errors
Warning: MyTextSanitizer::makeTboxData4Show is deprecated in file /class/module.textsanitizer.php line 665

Im not sure what this suppose to mean but as how i say when i activate smartpartner module im getting a blank home page. Oh also madliens module seems that it hangs out and resets the server. im really lost here now. im out of ideas....Another thing, i was trying to install extcal 2.2.2 & when i go to the module its a blank page...but i can still access the front page(with smartpartner disactivated)... Any other Ideas???

If not i will try to uninstall the module and install it again see if that will work!!

THANKS GUYS!



8
ijtzib
Re: How to bring an uninstalled module back?
  • 2009/4/14 23:00

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


SO if you guys are trying to do that. it means that you can move a module from one XOOPS installation to another XOOPS installation.. is that possible. but i think other stuff need to be considered...
Anyone with ideas???



9
ijtzib
Re: Getting a blank home page!!
  • 2009/4/9 17:46

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


But I'm still wondering why smartpartner module is causing me that error! and on the live copy(internet copy)is working fine...
Please any one with any ideas. i need to use that module for my site, can't afford to unistall it...



10
ijtzib
Re: Getting a blank home page!!
  • 2009/4/7 22:34

  • ijtzib

  • Just popping in

  • Posts: 13

  • Since: 2008/5/5 1


Wow! I solved the problem!!!
Hi guys, my problem was a module. when i disactivated the smartpartners module i got to access my home page. So it was a module problem. I'm yet to check the module and see why it's creating me that problem. But yeah Im good to go now for the Update!
Thank you guys very much for your replies...Im learning now from you guys, Thanks once again!




TopTop
(1) 2 »



Login

Who's Online

283 user(s) are online (181 user(s) are browsing Support Forums)


Members: 0


Guests: 283


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits