TinyPortal

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

Previous topic - Next topic

NoFeaR / NFSMW

"Allow the panels to be collapsed?" was set to off. The adobe error could be the PDF tag thats on there. it works on Firefox,

NoFeaR / NFSMW

I set it to on and still the same thing happens.

NoFeaR / NFSMW

Ok there is something wrong. i registered with a new account and all looks fine. Now what could this be.
What option in the member database can i reset or permissions so that it all works again?

IchBin™

It is likely on the account that you are having problems with, that the upshrink buttons have been clicked. Have you checked that? Especially considering a new account does not have the same problem.

Quote from: killerftw on October 26, 2010, 08:14:01 AM
on my block at bottom of the page i got chatango box which is 400 x 500 but the block blank size is more than chatango need..

pls help me  !!!


http://neon-community.co.cc/smf/index.php

Did you go into the panel settings and change the width? You can only change the width for all blocks in that panel, not a single block though.
IchBin™        TinyPortal

NoFeaR / NFSMW

Ok but how do i clear it in profile of database? becuase i dont see the buttons.

IchBin™

Quote from: NoFeaR / NFSMW on October 26, 2010, 10:42:41 AM
Ok but how do i clear it in profile of database? becuase i dont see the buttons.

It's actually a cookie that is set. I think it's labeled tp_panel or something like that. You should just be able to delete the cookie when logged in as that user to reset it.

@mikerothery
It's hard to understand what you're talking about. Are you saying you can't get different blocks to display on the login page versus the frontpage? What types of blocks are you using frontpage/upper/lower/right/left? What are the display options that you have set in each block?
IchBin™        TinyPortal

RoflGuy

Quote from: IchBin™ on October 26, 2010, 09:46:17 AM
It is likely on the account that you are having problems with, that the upshrink buttons have been clicked. Have you checked that? Especially considering a new account does not have the same problem.

Quote from: killerftw on October 26, 2010, 08:14:01 AM
on my block at bottom of the page i got chatango box which is 400 x 500 but the block blank size is more than chatango need..

pls help me  !!!


http://neon-community.co.cc/smf/index.php

Did you go into the panel settings and change the width? You can only change the width for all blocks in that panel, not a single block though.
please more details

IchBin™

TinyPortal Admin > Panels > Change width of blocks for your panel of choice.
IchBin™        TinyPortal

agridoc

@NoFeaR / NFSMW, it's quite probable that code in some or your blocks interferes with panel collapse buttons, especially the top block with the menu. I thought it was theme editing.
  For Greek aeromodellers and our friends around the world  - Greek Button sets for SMF - Greeklish to Greek mod
Δeν αφιερώνω χρόνο για μηνύματα σε greeklish.

NoFeaR / NFSMW

Ok i found something, or atleast i think so. All the members that was registered hare having problems. The new members that register arent having any problems

IchBin™

So are they able to fix it if they delete the cookie? Do they have the problem even after deleting the cookie? Are they unable to upshrink/unshrink by clicking the icons?
IchBin™        TinyPortal

NoFeaR / NFSMW

I found the error. The member groups that i first had in my forum didn't backup or didn't completely backup to the new one. So the users were in the old group that didn't exist and didn't have permissions. Also the blocks were not set up for the non excising member-groups.

MoreBloodWine

Anyone, Bloc ?

Edit: Aside from the below quote which is part of my original post, what needs to be coded in to have it ignore certain boards... namely the boards I use for RSS importing.
Quote from: MoreBloodWine on September 25, 2010, 08:47:23 PM
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


IchBin™

I'd suggest you use a block code from the support site that already does what you're asking. The code you posted cannot exclude boards without totally rewriting the way it works. No sense in reinventing the wheel when there are codes that already do this.
IchBin™        TinyPortal

MoreBloodWine

Quote from: IchBin™ on October 29, 2010, 10:11:43 AM
I'd suggest you use a block code from the support site that already does what you're asking.
Link please ?

Quote from: IchBin™ on October 29, 2010, 10:11:43 AM
The code you posted cannot exclude boards without totally rewriting the way it works.
Does the code on the support site have the ability to exclude boards like the recycle board, pretty much the above posted code by me excludes the recycle board ?

Quote from: IchBin™ on October 29, 2010, 10:11:43 AM
No sense in reinventing the wheel when there are codes that already do this.
Just to joke around a bit, sure theres sense it it sometime... who's to say a better wheel can't be invented ;-p
Want a sig like mine for your BTCGuild stats ? Then check this out: Spend-ur-Bits


IchBin™

Quote from: MoreBloodWine on October 29, 2010, 12:07:48 PM

Link please ?
http://www.tinyportal.co.uk/index.php?board=46.0

Quote
Does the code on the support site have the ability to exclude boards like the recycle board, pretty much the above posted code by me excludes the recycle board ?

There are a couple of them that I can remember. ssi_recentTopics() actually doesn't include the recycle board by default. In SMF2 you can actually exclude boards in the ssi_recentTopics() function now. But since I don't know which version of SMF you're using, I can't tell if you could use some tips on that or not.

Quote
Just to joke around a bit, sure theres sense it it sometime... who's to say a better wheel can't be invented ;-p

Easy to say when it's someone else's free time. :P

Actually, it looks like you might be using SMF2 based on the code. Hard to tell because I don't have things memorized. In the recentTopics() call in your code, put an array of boards that you want to exclude in place of the first NULL and see if that works.

array(4,6,9)
IchBin™        TinyPortal

MoreBloodWine

#876
Quote from: IchBin™ on October 29, 2010, 12:26:25 PM
http://www.tinyportal.co.uk/index.php?board=46.0

Thx...

Quote from: IchBin™ on October 29, 2010, 12:26:25 PM
There are a couple of them that I can remember. ssi_recentTopics() actually doesn't include the recycle board by default. In SMF2 you can actually exclude boards in the ssi_recentTopics() function now. But since I don't know which version of SMF you're using, I can't tell if you could use some tips on that or not.
I'm using 1.1 and a 2.0 test site, the code I posted is from TP 1.0, I just found that it also works on 0.9.8 which is what I'm using on my live 1.1.11 site.

Mainly what I'm after is sort of like what I said, getting a block that acts just like Show unread posts since last visit that takes you to the first unread reply when you click the link or the "new" image thing.

Quote from: IchBin™ on October 29, 2010, 12:26:25 PMEasy to say when it's someone else's free time. :P
True but even then someone elses work or not I would still say that, just maybe not appreciate it as much if it were my work lol

Quote from: IchBin™ on October 29, 2010, 12:26:25 PM
Actually, it looks like you might be using SMF2 based on the code. Hard to tell because I don't have things memorized. In the recentTopics() call in your code, put an array of boards that you want to exclude in place of the first NULL and see if that works.

array(4,6,9)
SMF version answered above...

Edit: I looked over the site and maybe I'm just being blind, stupid or both but I cannot seem to find any code blocks that act just like Show unread posts since last visit. where when you click on the topic link or the "new" image thing it takes you to the first unread reply and not the lastest one like what recent topics / posts does.
Want a sig like mine for your BTCGuild stats ? Then check this out: Spend-ur-Bits


ZarPrime

Quote from: MoreBloodWine on October 29, 2010, 12:42:33 PM
Edit: I looked over the site and maybe I'm just being blind, stupid or both but I cannot seem to find any code blocks that act just like Show unread posts since last visit. where when you click on the topic link or the "new" image thing it takes you to the first unread reply and not the lastest one like what recent topics / posts does.

Well then, if you can't find a particular block code snippet that does what you want it to, then you will have to join the site, if you aren't already a member, and make a request for one of our coders to make it for you in the Requests Board.  The link is here --> http://www.tinyportal.co.uk/index.php?board=133.0

ZarPrime

king kratos

#878
I have searched both this forum and the TP forum and cannot find anything more up to date about this issue. The last thing mentioned was for TP Beta 5.

I am running SMF 2.0 RC3 with TP version 1.101. None of my mobile versions work properly. If I simply go to ?imode, ?wap, or ?wap2 the only thing that shows up is "go to full version". If I go to any of those and add &action=forum, then all my boards show up. However, if I click on any board it automatically gets rid of the &action=forum and only displays "go to full version".

The last I read was that this would be fixed after TP beta 5, but it is not fixed yet. I have looked through everything I can think of to try to fix this, but cannot find the edits I need to make to make these changes to fix this.

What do I need to do to get this working properly? Please help.

Kratos

IchBin™

It must be something with your forum or install. I do not have your problem when viewing my forum with the same versions you are running.
IchBin™        TinyPortal

Advertisement: