Thank-O-Matic

Started by enik, June 12, 2007, 12:18:59 PM

Previous topic - Next topic

Kimmie

Quote from: ディン1031 on December 30, 2009, 01:22:34 AM
Look in the changelog file it's included in the package ;).

well.. I am still using 2.0 Beta 10 and with all the problems I had with mine that you came and fixed for me.. I am afraid to even try and make any changes to it. (still having the one issue where if you recount 1 persons stats it resets everyones "given" stats back to 0 however, doing an "overall" recount fixes it tho). Looking at the changelog in the update, and not knowing exactly what all you did to the mod when you came to my site and fixed some stuff, I would be afraid to attempt any changes..lol.

What do you recommend? Should I leave mine as is? lol This is one mod that is critical to my site and to my members - if their counts are even off by one, they let me know about it..lol.

Nugget

I'm hoping I'm in the right place to request help on Thank-O-Matic.

I have Thank-O-Matic version 2.0 RC1.2 installed on SMF 2.0 RC2
It works ok only the thank you displays right aligned in IGoogle Chrome and within the post on IE8.

I have attached images to show what I am talking about.
Does anyone know a solution to this?

Thanks you

ディン1031

Quote from: Kimmie on January 01, 2010, 10:02:07 AM
Quote from: ディン1031 on December 30, 2009, 01:22:34 AM
Look in the changelog file it's included in the package ;).

well.. I am still using 2.0 Beta 10 and with all the problems I had with mine that you came and fixed for me.. I am afraid to even try and make any changes to it. (still having the one issue where if you recount 1 persons stats it resets everyones "given" stats back to 0 however, doing an "overall" recount fixes it tho). Looking at the changelog in the update, and not knowing exactly what all you did to the mod when you came to my site and fixed some stuff, I would be afraid to attempt any changes..lol.

What do you recommend? Should I leave mine as is? lol This is one mod that is critical to my site and to my members - if their counts are even off by one, they let me know about it..lol.
All the fixes i made on you're site are all from the RC1 release ;).

Quote from: Nugget on January 02, 2010, 11:12:58 PM
I'm hoping I'm in the right place to request help on Thank-O-Matic.

I have Thank-O-Matic version 2.0 RC1.2 installed on SMF 2.0 RC2
It works ok only the thank you displays right aligned in IGoogle Chrome and within the post on IE8.

I have attached images to show what I am talking about.
Does anyone know a solution to this?

Thanks you
I think... hmmm strange... have this theme a customized Display.template.php?
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

Nugget

Just customised index.css - would this be the problem?

Thanks

marko_andres


Version SMF: 2.0 RC3
Theme        : Inferno
Portal          : Simple Portal 2.3.2


Por un cambio de conciencia --> http://thezeitgeistmovement.com/

Nugget

Ok - it must be in the theme - I can fix this.

You can see no icons appear in the post - just the words 'Thankyou'
I have copied them the the / image / button directory of my theme - I notice a few people are having this problem.
Any resolve yet?

ディン1031

Quote from: marko_andres on January 03, 2010, 01:37:34 AM
i can't read the parse ??
Select the correct Version for the correct Package...

Quote from: Nugget on January 03, 2010, 01:42:11 AM
Ok - it must be in the theme - I can fix this.

You can see no icons appear in the post - just the words 'Thankyou'
I have copied them the the / image / button directory of my theme - I notice a few people are having this problem.
Any resolve yet?
Most cases a reload of the page help... It depend on how the button es created and used...
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

ŦώεαЖзяŁ

I just installed thank-o-matic on a clean install of SMF2 RC2, no mods, no themes, nothing, straight from install, the test part went perfect.

However, after the installation script was done i was redirected back to the admin CP and at the top of the whole thing i had this:

QuoteSize of column (If applicable) - for example 255 for a large varchar, 10 for an int etc. If not set SMF will pick a size. + 'default' = Default value - do not set if no default required. + 'null' => Can it be null (true or false) - if not set default will be false. + 'auto' => Set to true to make it an auto incrementing column. Set to a numerical value to set from what it should begin counting. */ if ($SSI_INSTALL) echo 'Start to create the Tables and update the current columns for Thank-O-Matic.
'; $columns = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, 'auto' => true, ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'id_board' => array( 'name' => 'id_board', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), 'id_member' => array( 'name' => 'id_member', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'member_name' => array( 'name' => 'member_name', 'type' => 'varchar', 'size' => '80', 'null' => false, ), 'thx_time' => array( 'name' => 'thx_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ); /* - Adds indexes as specified within indexes parameter. Each index should be a member of $indexes. Values are: + 'name' => Index name (If left empty SMF will generate). + 'type' => Type of index. Choose from 'primary', 'unique' or 'index'. If not set will default to 'index'. + 'columns' => Array containing columns that form part of key - in the order the index is to be created. */ $indexes = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'primary', 'columns' => array( 'id_thx_post' => 'id_thx_post' ), ), 'id_board' => array( 'name' => 'id_board', 'type' => 'index', 'columns' => array( 'id_board' => 'id_board' ), ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'index', 'columns' => array( 'id_msg' => 'id_msg' ), ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'index', 'columns' => array( 'id_topic' => 'id_topic' ), ), 'id_member' => array( 'name' => 'id_member', 'type' => 'index', 'columns' => array( 'id_member' => 'id_member' ), ), ); // Can someone tell me why i need to do that oO... normal update should work, too! $installed = $smcFunc['db_create_table']('{db_prefix}thank_you_post', $columns, $indexes, array(), 'update', 'ignore'); if ($SSI_INSTALL) echo 'Table ', $db_prefix, 'thank_you_post successful installed / updated.
'; /* Add Columns new stlye ;D each item a table, for each column a insert in the table, it update if not exists :) */ $sql_adds = array( array( 'table' => "{db_prefix}topics", 'colums' => array( 'thank_you_post_locked' => array( 'name' => 'thank_you_post_locked', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}boards", 'colums' => array( 'thank_you_post_enable' => array( 'name' => 'thank_you_post_enable', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}messages", 'colums' => array( 'thank_you_post' => array( 'name' => 'thank_you_post', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), 'thank_you_post_counter' => array( 'name' => 'thank_you_post_counter', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}members", 'colums' => array( 'thank_you_post_made' => array( 'name' => 'thank_you_post_made', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'thank_you_post_became' => array( 'name' => 'thank_you_post_became', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'last_thank_you_time' => array( 'name' => 'last_thank_you_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ), ), ); foreach ($sql_adds as $table) { foreach ($table['colums'] as $colum) { $updated = $smcFunc['db_add_column']($table['table'], $colum); if ($SSI_INSTALL && $updated) echo 'Table ', str_replace('{db_prefix}', $db_prefix, $table['table']),' successful updated with column ', $colum['name'], '.
'; } } //Give a proper answer on ssi install ;) if ($SSI_INSTALL) echo 'DB Changes should be made now...'; ?>

Then when I tried to browse to the general board with the smf welcome page, I get this:

QuoteUnknown column 'b.thank_you_post_enable' in 'field list'

Clearing the Cache, both in the forum and the local browser, does not work.

Does the mod by any chance require a specific apache/php mod to be active?

Link Sharing Community - Share links and earn cash in the process!
APPS | GAMES | MUSIC | MOVIES | TV SHOWS | E-BOOKS

Nugget

Quote from: Nugget on January 02, 2010, 11:12:58 PM
I think... hmmm strange... have this theme a customized Display.template.php?

Happy to say I now have Thank-O-Matic 2.0 RC1.2 working perfectly on SMF 2.0 RC2
It is displaying all icons and no errors at all.

The position of the 'X member gave a thank you to this post" was a problem in my custom theme.
The not displaying icons is an error in the script, shifting the icons to... yourtheme/images/buttons will not fix the problem.

It is possible to get it working

Thanks
nuggetfishing.com.au/smf

Kimmie

Quote from: ディン1031 on January 03, 2010, 12:55:30 AM
Quote from: Kimmie on January 01, 2010, 10:02:07 AM
Quote from: ディン1031 on December 30, 2009, 01:22:34 AM
Look in the changelog file it's included in the package ;).

well.. I am still using 2.0 Beta 10 and with all the problems I had with mine that you came and fixed for me.. I am afraid to even try and make any changes to it. (still having the one issue where if you recount 1 persons stats it resets everyones "given" stats back to 0 however, doing an "overall" recount fixes it tho). Looking at the changelog in the update, and not knowing exactly what all you did to the mod when you came to my site and fixed some stuff, I would be afraid to attempt any changes..lol.

What do you recommend? Should I leave mine as is? lol This is one mod that is critical to my site and to my members - if their counts are even off by one, they let me know about it..lol.
All the fixes i made on you're site are all from the RC1 release ;).



So I assume that means I am good to go for now. Thanks :)

ディン1031

Quote from: TweakerL on January 03, 2010, 07:22:59 AM
I just installed thank-o-matic on a clean install of SMF2 RC2, no mods, no themes, nothing, straight from install, the test part went perfect.

However, after the installation script was done i was redirected back to the admin CP and at the top of the whole thing i had this:

QuoteSize of column (If applicable) - for example 255 for a large varchar, 10 for an int etc. If not set SMF will pick a size. + 'default' = Default value - do not set if no default required. + 'null' => Can it be null (true or false) - if not set default will be false. + 'auto' => Set to true to make it an auto incrementing column. Set to a numerical value to set from what it should begin counting. */ if ($SSI_INSTALL) echo 'Start to create the Tables and update the current columns for Thank-O-Matic.
'; $columns = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, 'auto' => true, ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'id_board' => array( 'name' => 'id_board', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), 'id_member' => array( 'name' => 'id_member', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'member_name' => array( 'name' => 'member_name', 'type' => 'varchar', 'size' => '80', 'null' => false, ), 'thx_time' => array( 'name' => 'thx_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ); /* - Adds indexes as specified within indexes parameter. Each index should be a member of $indexes. Values are: + 'name' => Index name (If left empty SMF will generate). + 'type' => Type of index. Choose from 'primary', 'unique' or 'index'. If not set will default to 'index'. + 'columns' => Array containing columns that form part of key - in the order the index is to be created. */ $indexes = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'primary', 'columns' => array( 'id_thx_post' => 'id_thx_post' ), ), 'id_board' => array( 'name' => 'id_board', 'type' => 'index', 'columns' => array( 'id_board' => 'id_board' ), ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'index', 'columns' => array( 'id_msg' => 'id_msg' ), ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'index', 'columns' => array( 'id_topic' => 'id_topic' ), ), 'id_member' => array( 'name' => 'id_member', 'type' => 'index', 'columns' => array( 'id_member' => 'id_member' ), ), ); // Can someone tell me why i need to do that oO... normal update should work, too! $installed = $smcFunc['db_create_table']('{db_prefix}thank_you_post', $columns, $indexes, array(), 'update', 'ignore'); if ($SSI_INSTALL) echo 'Table ', $db_prefix, 'thank_you_post successful installed / updated.
'; /* Add Columns new stlye ;D each item a table, for each column a insert in the table, it update if not exists :) */ $sql_adds = array( array( 'table' => "{db_prefix}topics", 'colums' => array( 'thank_you_post_locked' => array( 'name' => 'thank_you_post_locked', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}boards", 'colums' => array( 'thank_you_post_enable' => array( 'name' => 'thank_you_post_enable', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}messages", 'colums' => array( 'thank_you_post' => array( 'name' => 'thank_you_post', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), 'thank_you_post_counter' => array( 'name' => 'thank_you_post_counter', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}members", 'colums' => array( 'thank_you_post_made' => array( 'name' => 'thank_you_post_made', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'thank_you_post_became' => array( 'name' => 'thank_you_post_became', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'last_thank_you_time' => array( 'name' => 'last_thank_you_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ), ), ); foreach ($sql_adds as $table) { foreach ($table['colums'] as $colum) { $updated = $smcFunc['db_add_column']($table['table'], $colum); if ($SSI_INSTALL && $updated) echo 'Table ', str_replace('{db_prefix}', $db_prefix, $table['table']),' successful updated with column ', $colum['name'], '.
'; } } //Give a proper answer on ssi install ;) if ($SSI_INSTALL) echo 'DB Changes should be made now...'; ?>

Then when I tried to browse to the general board with the smf welcome page, I get this:

QuoteUnknown column 'b.thank_you_post_enable' in 'field list'

Clearing the Cache, both in the forum and the local browser, does not work.

Does the mod by any chance require a specific apache/php mod to be active?
This say to me the install script is never run, once.
Upload the install.php and run it again.

Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

ŦώεαЖзяŁ

#1191
Running install_2.x.x.php as localhost returns the same exact thing:

QuoteSize of column (If applicable) - for example 255 for a large varchar, 10 for an int etc. If not set SMF will pick a size. + 'default' = Default value - do not set if no default required. + 'null' => Can it be null (true or false) - if not set default will be false. + 'auto' => Set to true to make it an auto incrementing column. Set to a numerical value to set from what it should begin counting. */ if ($SSI_INSTALL) echo 'Start to create the Tables and update the current columns for Thank-O-Matic.
'; $columns = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, 'auto' => true, ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'id_board' => array( 'name' => 'id_board', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), 'id_member' => array( 'name' => 'id_member', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'member_name' => array( 'name' => 'member_name', 'type' => 'varchar', 'size' => '80', 'null' => false, ), 'thx_time' => array( 'name' => 'thx_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ); /* - Adds indexes as specified within indexes parameter. Each index should be a member of $indexes. Values are: + 'name' => Index name (If left empty SMF will generate). + 'type' => Type of index. Choose from 'primary', 'unique' or 'index'. If not set will default to 'index'. + 'columns' => Array containing columns that form part of key - in the order the index is to be created. */ $indexes = array( 'id_thx_post' => array( 'name' => 'id_thx_post', 'type' => 'primary', 'columns' => array( 'id_thx_post' => 'id_thx_post' ), ), 'id_board' => array( 'name' => 'id_board', 'type' => 'index', 'columns' => array( 'id_board' => 'id_board' ), ), 'id_msg' => array( 'name' => 'id_msg', 'type' => 'index', 'columns' => array( 'id_msg' => 'id_msg' ), ), 'id_topic' => array( 'name' => 'id_topic', 'type' => 'index', 'columns' => array( 'id_topic' => 'id_topic' ), ), 'id_member' => array( 'name' => 'id_member', 'type' => 'index', 'columns' => array( 'id_member' => 'id_member' ), ), ); // Can someone tell me why i need to do that oO... normal update should work, too! $installed = $smcFunc['db_create_table']('{db_prefix}thank_you_post', $columns, $indexes, array(), 'update', 'ignore'); if ($SSI_INSTALL) echo 'Table ', $db_prefix, 'thank_you_post successful installed / updated.
'; /* Add Columns new stlye ;D each item a table, for each column a insert in the table, it update if not exists :) */ $sql_adds = array( array( 'table' => "{db_prefix}topics", 'colums' => array( 'thank_you_post_locked' => array( 'name' => 'thank_you_post_locked', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}boards", 'colums' => array( 'thank_you_post_enable' => array( 'name' => 'thank_you_post_enable', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}messages", 'colums' => array( 'thank_you_post' => array( 'name' => 'thank_you_post', 'type' => 'tinyint', 'size' => '4', 'default' => 0, 'null' => false, ), 'thank_you_post_counter' => array( 'name' => 'thank_you_post_counter', 'type' => 'smallint', 'size' => '5', 'default' => 0, 'null' => false, ), ), ), array( 'table' => "{db_prefix}members", 'colums' => array( 'thank_you_post_made' => array( 'name' => 'thank_you_post_made', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'thank_you_post_became' => array( 'name' => 'thank_you_post_became', 'type' => 'mediumint', 'size' => '8', 'default' => 0, 'null' => false, ), 'last_thank_you_time' => array( 'name' => 'last_thank_you_time', 'type' => 'int', 'size' => '10', 'default' => 0, 'null' => false, ), ), ), ); foreach ($sql_adds as $table) { foreach ($table['colums'] as $colum) { $updated = $smcFunc['db_add_column']($table['table'], $colum); if ($SSI_INSTALL && $updated) echo 'Table ', str_replace('{db_prefix}', $db_prefix, $table['table']),' successful updated with column ', $colum['name'], '.
'; } } //Give a proper answer on ssi install ;) if ($SSI_INSTALL) echo 'DB Changes should be made now...'; ?>

And the install.php did run, because afterward i can see the thank-o-matic settings in the admincp, i just can't enter any forum...

Link Sharing Community - Share links and earn cash in the process!
APPS | GAMES | MUSIC | MOVIES | TV SHOWS | E-BOOKS

ディン1031

#1192
Ahhhh... i thought i insert it everwhere...

Easy to solve :).
Open die install2.x.x.php in a texteditor and replace the beginning <? with <?php
it will solve you're problem... i thought i insert it everwhere...

Or use the instal2.x.x.php in the RC1.3 package, where add all the missing <?php ;).
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

Smoki1988

Does this work or can it work with the hide tag special??so when someone give a thanks the hide will unhide..??

ディン1031

Quote from: Smoki1988 on January 05, 2010, 08:53:43 AM
Does this work or can it work with the hide tag special??so when someone give a thanks the hide will unhide..??
Yes the mod have a hide tag special compatible part with some setups for this ;).
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

Smoki1988

#1195
To make it work with hide tag special i have to do anything more than install it??or it has options after the install??

Btw when i try to install it in the Display.template.php it says test failed??any idea why??

nurg

RC2

Sorry, but this modification does not appear to be compatible with the selected version.
VISITA MI FORO SMF
Si quieres que te instale un foro SMF no dudes en contactarme.

ŦώεαЖзяŁ

#1197
Quote from: ディン1031 on January 05, 2010, 04:26:56 AM
Ahhhh... i thought i insert it everwhere...

Easy to solve :).
Open die install2.x.x.php in a texteditor and replace the beginning <? with <?php
it will solve you're problem... i thought i insert it everwhere...

Or use the instal2.x.x.php in the RC1.3 package, where add all the missing <?php ;).

;D I feel dumb for not noticing that before... I actually looked at the install script to see if I could find any errors and missed it... I should change the colors on my PSPad, the <?php and ?> lines are very dark and the background is dark too  :(

Thanks though, I've been beating myself up for not having the thanks feature in my site :)

Quote from: nurg on January 05, 2010, 10:20:02 AM
RC2

Sorry, but this modification does not appear to be compatible with the selected version.

It does work, just download the newly uploaded version, there was a typo kinda thingy in the install script :)

----------------
One thing I just noticed when installing in my main site. I got an error (because of another mod) and because of that I noticed that the following modification appears to be setup slightly incorrectly. (I could be wrong as I don't know a lot of php)

QuoteFind:
'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
   );

Add After:
'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
   );

// Special Lock for the Thank You :)
   if ($context['thank_you_lock_allowed'])
      if (empty($context['is_thank_you_post_locked']))
         $normal_buttons['thankyoupostlock'] = array('text' => 'thank_you_post_lock_all_b', 'image' => 'thank_you_lock1.gif', 'lang' => true, 'url' => $scripturl . '?action=thankyoupostcloseall;topic='  . $context['current_topic']);
      else
         $normal_buttons['thankyoupostlock'] = array('text' => 'thank_you_post_open_all_b', 'image' => 'thank_you_lock2.gif', 'lang' => true, 'url' => $scripturl . '?action=thankyoupostcloseall;topic='  . $context['current_topic']);
   // A Fix for later, if some Translations are not Updated
   if (empty($txt['thank_you_link_aftercounters']))
      $txt['thank_you_link_aftercounters'] = $txt['thank_you_link_aftercounter'];

The parser in here in the Site shows it correctly, but when actually installing, SMF wants to add

Quote'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
   );

after the same line, which I think would create an unnecessary double line. Just ignore this whole part if i'm wrong, like i said i'm still noob in php :)

Link Sharing Community - Share links and earn cash in the process!
APPS | GAMES | MUSIC | MOVIES | TV SHOWS | E-BOOKS

andris11

I installed this mod everthing is fun, setup runs without any error, but after that it redirect me to the settings, but i cant see nothing! Attached a pic.




ŦώεαЖзяŁ

I'm not sure why, but the mod seems to break the news block for PortaMx portal :(

Link Sharing Community - Share links and earn cash in the process!
APPS | GAMES | MUSIC | MOVIES | TV SHOWS | E-BOOKS

Advertisement: