Jump to content

Download: (T30) Group Format 2.0.0


teraßyte

Recommended Posts

Posted

That error is just from one of alt texts not having _clear added to it. Just go to your member list and find:

alt="{$member['members_display_name


Change it to:


alt="{$member['members_display_name_clear
  • 2 weeks later...
Posted

Fatal error: Out of memory (allocated 59244544) (tried to allocate 8192 bytes) in /home/forum/public_html/forum/admin/applications/forums/sources/classes/forums/class_forums.php on line 983

I get it sometimes when i search and when i want to see the last page of search result....

  • 3 weeks later...
Posted

Sorry for the late reply, I've been quite busy lately and I haven't checked much the topics on here.

The error has nothing to do with this modification itself actually; 59244544bytes= 56,5M of memory_limit while IPB 3 requires PHP 5 and the default memory_limit for it is 128M. You need to increase that limit in your PHP configuration file or ask your host to do it for you.

  • 1 month later...
Posted

Maybe you can help me with a small issue.. I love your mod, and I'm trying to incorporate it into my MPFF Arcade System, (DP30) Top Reputation and a few other mods here and there that DON'T show the new formatted names.

I was hoping it would be as simple as changing member_display_name to member_display_name_clear but no anvil. I was hoping you could help me out with this and give me a better understanding of the system, so that I can edit these non-supported section's skin/PHP and get the formatted text to show up.

Posted

Since the arcade mod is a paid&encoded mod I cannot really help with it.

About the change you need to use something like that:

IPSLib::makeNameFormatted( $name, $group );
  • 2 weeks later...
Posted

The modification has been updated to version 2.1.0, here you go the changelog:

[*]Fixed a display error in the status updates hook, warn panel and member list if the group suffix/prefix had an image [*]Fixed a typo in the Unreal Portal readme causing a bug in the latest posts block [*]Updated the (IM) Tutorials version to 1.0.2 (edits are still the same anyway)


A file is included with the upgrade steps from 2.0.0 to 2.1.0 for IP.Board, for the addons simply re-apply from scratch all the edits as they are different for the new versions.
About Unreal Portal I have fixed an error in the readme (as the changelog says), the edit in question is the second one that should have been "s.member_group_id," instead of "m.member_group_id,".

[*]Added new readme files for the new versions of the IPS addons: IP.Blog 2.1.0, IP.Downloads 2.1.0, IP.Gallery 3.1.0





  • 3 weeks later...
Posted

This mod works great for me, well the only prob i have is have the groups can see it and the other half see the group names regular. Am i missing some kind of permissions or did i do a file edit wrong

Posted

So you're saying that some users can see properly the name formatted and others cannot see it?!

There isn't any permission like that in IP.Board and my mod doesn't add it either :unsure:

  • 2 weeks later...
Posted

I only wanted the name formatting in the board-index and the forum view, but when I only change the boards.php and forums.php only the forum view is formatted.

What am I missing?

Posted

for the board index you require to change another couple of files, if I recall right class_forums.php and core.php.

Anyway skipping the other edits (especially the ones in the skin) can cause an odd layout somtimes.

Posted

I got it to work with just class_forums! But just in case, I'll do the skin edit and core.php, for save measures.

Posted

I just updated my board to 3.1 and I'm going through the files to re-do the Group Format and when I edited "admin/applications/forums/modules_public/forums/forums.php" to
FIND:
$this->DB->build( array(
'select' => '*',
'from' => 'topics t',
'where' => "t.forum_id=" . $this->forum['id'] . " AND t.pinned IN (0,1)" . $_SQL_APPROVED . $_SQL_AGE_PRUNE . $_SQL_EXTRA,
'order' => 't.pinned DESC, '.$topic_sort.' t.'.$sort_key .' '. $r_sort_by,
'limit' => array( intval($First), $this->settings['display_max_topics'] )
) );

REPLACE WITH:
/* (T30) Group Format */
$this->DB->build( array( 'select' => 't.*',
'from' => array( 'topics' => 't' ),
'where' => "t.forum_id=" . $this->forum['id'] . " AND t.pinned IN (0,1)" . $_SQL_APPROVED . $_SQL_AGE_PRUNE . $_SQL_EXTRA,
'order' => 't.pinned DESC, '.$topic_sort.' t.'.$sort_key .' '. $r_sort_by,
'limit' => array( intval($First), $this->settings['display_max_topics'] ),
'add_join' => array( array( 'select' => 'fp.member_group_id AS starter_group',
'from' => array( 'members' => 'fp' ),
'where' => "fp.member_id=t.starter_id",
'type' => 'left',
),
array( 'select' => 'lp.member_group_id AS last_poster_group',
'from' => array( 'members' => 'lp' ),
'where' => "lp.member_id=t.last_poster_id",
'type' => 'left',
) )
) );

When I reupload and check the thread index this happens:
9a0l8l.png

Can anyone help with with this?

Posted

Just wait for the new version, I'm already working on it but it will take some more time considering how many edits there are.. I'm trying to reduce them too with hooks >_<

It is a real pain to keep this mod updated each release :ermm:

  • 2 weeks later...
  • 3 weeks later...
Posted

New version is already done, I'll release it the same day of IPB 3.1.2 since it requires a couple of bugfixes included in that version for the new hooks to work.

Posted

Everything works fine except I can't seem to get the color to show in topic view, what edit do I need to recheck?

Thanks in advance.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...