TinyPortal

Started by lurkalot, February 12, 2005, 04:43:00 AM

Previous topic - Next topic

Sweetwater

I've recently upgraded my forum to SMF 2.0 RC3

Was running TP on the old 1.1.11 & it worked great.  8)

On RC3 I cannot get the right panel to work at all & the TPShout leaves an empty header with no shoutbox under it.
Also added SSI for Store & Gallery, these wont work either.

Can anyone offer any tips for sorting this out?

Kind Regards,

Sweetwater

ZarPrime


Sweetwater,


Well, on the right panel not showing, a couple of things that you can check ...
1.  Go to YourSite.com/index.php?action=tpadmin;sa=panels and make sure that "Use right panel?" is "On"
2.  Make sure that you have at least one block in the right panel and that is set to show somewhere.  In other words, go to the edit screen for that block and make sure that "Choose where the block should appear" has something selected, like "Display on all pages and sections".


On the Shoutbox issue, go to YourSite.com/index.php?action=tpadmin;sa=modules and make sure that the "TP Simple Shout" is turned "On".


If this doesn't solve your issues, more help is available at the TP Support Site by posting in the Support Board there.  The link is here --> http://www.tinyportal.co.uk/index.php


ZarPrime

Sweetwater

Thankyou ZarPrime for your helpful reply.

I've been through all of that numerous times & double checked. I just ran through the permissions & found a couple of files that didn't upload properly. This has fixed the shoutbox & hopefully may fix the right panel issues.

Fingers crossed I can come back & tick this as solved.

Thanks again.

Sweetwater

Sweetwater

Unfortunately no luck on getting any panel other than the left one to work....

Am out of ideas. Any more tips out there?

Sweetwater

agridoc

Sweetwater I had a look at your site, you have no SMF, neither TP copyright, also added main menu item. You probably have done quite some changes yourself.

I don't know what changes you have made but it's quite probable that your editing might have caused some problems, TP not properly functioning included. I will also remind that copyright removal of either SMF or TP is not legal. It may be a mistake but it has to be fixed too.
  For Greek aeromodellers and our friends around the world  - Greek Button sets for SMF - Greeklish to Greek mod
Δeν αφιερώνω χρόνο για μηνύματα σε greeklish.

ZarPrime



Yeah, I noticed the copyrights missing earlier but they were on there before he started working on it.  Sweetwater, I suspect that you might have some block enabled that is causing this.  Do you have any blocks enabled in the left panel that aren't showing up?


The copyrights aren't showing up on other pages as well.  The problem could be your Gallery Mod.  Can you turn off the Recent Pictures at the top and see if your copyrights come back on the bottom of the page.


If that doesn't do it, I might have to have Admin access to your site (I am a Support Team Member over at the TP Support Site) so that I can try to see what's going on.  It would be better if you registered over there and posted to the Support board.  I am probably going to be offline for the rest of the evening so I will check back tomorrow.  However any of the other Team Members over there can help you as well.


ZarPrime

MoreBloodWine

Quote from: zarprime on September 25, 2010, 09:31:40 AM
Well, the Recent block uses the ssi_recentTopics function and the Unread posts uses the unread action (action=unread).  Those 2 functions work quite differently from each other.  the ssi_recentTopics function actually shows the most recent posted to topics so it makes sense that, when you click that, you should be taken to the last post of the recent topic.


However, I will leave this for you and Bloc to hash out because, IMHO, it's working the way it should be working.  Even though you can click the "new" icon, as far as I'm concerned, it should take you to the most recent post in the topic, and that's what it does.  The other consideration is that you can make the "new" icon show up again after you've read a topic just by marking a topic unread.  That doesn't necessarily mean that that topic is going to show up again if you go to action=unread, at least not until someone makes another post in the topic.


ZarPrime
I see what your saying but for my personal preference if possible, I'd like the "recent block" to work like the unread since last visit. Most people when replying don't generally modify the subject line so that should almost always remain / read the same i nthe recent block regardless of the latest reply. That saud I could even renamed the block to unread since last visit or just leave it as is name wise.

Anyway, the below code that  Igot from TP 1.0 seems to work on 098 as well so I can use it on my live site and my test site so I ask to anyone willing to help.

How can the below code be modified so that when links or the "new" image is clicked in the recent block it takes you to the first unread reply in a given topic and not the last ?

global $context, $modSettings;
$context['TPortal']['recentboxnum']='10';

if(isset($modSettings['recycle_board']))
$bb=$modSettings['recycle_board'];

$what=ssi_recentTopics($context['TPortal']['recentboxnum'], NULL, NULL, 'array');
$counter=1; $cmax=count($what);
echo '
<div>';
foreach($what as $w)
{
echo '
<div class="smalltext"><a href="'.$w['href'].'">'.$w['short_subject'].'</a></div>
<div class="smalltext">By: <b>', $w['poster']['link'], '</b></div>
<div class="smalltext">';
if(!$w['new'])
echo '<a href="'.$w['href'].'"><img border="0" src="'.$settings['images_url'].'/'.$context['user']['language'].'/new.gif" alt="new" /></a> ';

echo '['.$w['time'].']
</div>';

if($counter != $cmax)
echo '<hr />';
$counter++;
}
echo '
</div>';
Want a sig like mine for your BTCGuild stats ? Then check this out: Spend-ur-Bits


Rafferty

On recent upgrade to TP 1.0 RC1 on smf 2.0 RC3, articles/download function - selection= Articles: Recently Written,  does not work. on turning on block, I have the title, a blank block and no other blocks displaying after this one.
Don't Follow me I got No Idea what I'm Doing

bloc

Quote from: Rafferty on September 26, 2010, 08:40:52 AM
On recent upgrade to TP 1.0 RC1 on smf 2.0 RC3, articles/download function - selection= Articles: Recently Written,  does not work. on turning on block, I have the title, a blank block and no other blocks displaying after this one.
Thanks for the heads-up, I will check that.

bloc

Quote from: Bloc on September 26, 2010, 08:51:28 AM
Quote from: Rafferty on September 26, 2010, 08:40:52 AM
On recent upgrade to TP 1.0 RC1 on smf 2.0 RC3, articles/download function - selection= Articles: Recently Written,  does not work. on turning on block, I have the title, a blank block and no other blocks displaying after this one.
Thanks for the heads-up, I will check that.

Indeed, there is a missing line in TPSubs.php. You need to find function art_recentitems($max='5' , $type='date' ){

    global $context, $settings, $db_prefix, $txt, $settings;

    $tp_prefix = $db_prefix.'tp_';


and add the line below after it:

$now= time();


Crip

I have become comfortably numb!


I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -



TOTM Winner. | Demo Site1on1 Theme Support

Rafferty

Don't Follow me I got No Idea what I'm Doing

SN

Bloc is what i said before about blocks not showing for admin a bug or am i doing something wrong?

bloc

Quote from: SN on September 26, 2010, 09:51:17 AM
Bloc is what i said before about blocks not showing for admin a bug or am i doing something wrong?
So far I haven't found anything wrong - but I need to test more.

Nyls

hello all

if i uninstall tinyportal on a smf 2.0 RC3, all content in data base will be safe or not, if i réinstall tinyportal in the futur ?

thx for response  ;)

IchBin™

No tables are removed. Data should still be there.
IchBin™        TinyPortal

ormuz

Is the "themegallery" included by default in tinyportal?

If not, is it possible to have it, bloc?

Ken.

ormuz, when you say "themegallery" to what are you referring?

The latest releases of TinyPortal do not include actual themes, but are able to use most any theme that will work with SMF and you can find many of them here on SMF plus various other sites that make themes for SMF, including Blocs site 'BlocWeb'.
http://www.blocweb.net/index.php
"If you don't have a stack of failures in your shop, you aren't trying hard enough". --Richard Raffin.


ormuz

Quote from: Ken. on September 28, 2010, 11:54:24 AM
ormuz, when you say "themegallery" to what are you referring?

The latest releases of TinyPortal do not include actual themes, but are able to use most any theme that will work with SMF and you can find many of them here on SMF plus various other sites that make themes for SMF, including Blocs site 'BlocWeb'.
http://www.blocweb.net/index.php

I'm talking about the custom mod to have a theme gallery, that blocweb.net have and smfdegsign,net have too... Bloc's know what I'm talking about ;)

Ken.

That gallery was designed just for displaying themes on BlocWeb and is not currently available for use elsewhere. If Bloc dose release a public version it is likely to be some time before that happens.
"If you don't have a stack of failures in your shop, you aren't trying hard enough". --Richard Raffin.


Advertisement: