Graeme S. Posted February 3, 2010 Posted February 3, 2010 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
asotplbomb Posted February 16, 2010 Posted February 16, 2010 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....
teraßyte Posted March 3, 2010 Author Posted March 3, 2010 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.
NPO Posted April 13, 2010 Posted April 13, 2010 First time through its all working, thank you very very much :cheer:
Rayvolution Posted April 14, 2010 Posted April 14, 2010 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.
teraßyte Posted April 15, 2010 Author Posted April 15, 2010 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 );
teraßyte Posted April 25, 2010 Author Posted April 25, 2010 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
FuZeD Gaming Posted May 13, 2010 Posted May 13, 2010 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
teraßyte Posted May 14, 2010 Author Posted May 14, 2010 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:
FuZeD Gaming Posted May 15, 2010 Posted May 15, 2010 Well i can give you the url and acp info if you would like to take a look. Just let me know and i will pm it to you. But yeah it is really weird.
Inu Posted May 25, 2010 Posted May 25, 2010 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?
teraßyte Posted May 26, 2010 Author Posted May 26, 2010 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.
Inu Posted May 26, 2010 Posted May 26, 2010 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.
teraßyte Posted June 3, 2010 Author Posted June 3, 2010 It *works* but not completely. You may find some code is not available anymore (for example the search edits since the entire search has been rewritten).
The Lordbug Posted June 5, 2010 Posted June 5, 2010 cant wait until this is updated for 3.1 i love this mod and tera rocks. It just makes the forum so much more pretty.
ChristopherTAL Posted June 6, 2010 Posted June 6, 2010 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: Can anyone help with with this?
teraßyte Posted June 9, 2010 Author Posted June 9, 2010 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:
haerde Posted June 18, 2010 Posted June 18, 2010 Do your best mate, I'm waiting for this great mod ! :)
FadE. Posted July 10, 2010 Posted July 10, 2010 Hey mate can't wait till his edit happens!!! Keep us posted on your progress please!
teraßyte Posted July 13, 2010 Author Posted July 13, 2010 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.
user1 Posted July 17, 2010 Posted July 17, 2010 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.
teraßyte Posted July 20, 2010 Author Posted July 20, 2010 New version compatible ONLY with IPB 3.1.2+ is available here now: http://community.invisionpower.com/files/file/3359-t31-group-format-300/
Recommended Posts
Archived
This topic is now archived and is closed to further replies.