Search found 67 matches

by RMcGirr83
05 Dec 2011, 23:12
Forum: User Contributions
Topic: [Snippet] Rows Forums & Topics clikables without mod
Replies: 19
Views: 6234

[Snippet] Rows Forums & Topics clikables without mod

FWIW, any time you edit any of the phpBB default code, that includes html files, it is considered a mod as it is changing the default behavior of phpBB.
by RMcGirr83
05 Dec 2011, 04:06
Forum: User Contributions
Topic: Snow flakes on your forum
Replies: 19
Views: 8683

Snow flakes on your forum

:roll:

For the love of GOD Terr0r!!

http://www.geekpolice.net/t17365-snow-javscript#109643

which is the EXACT same code you state as your own but yet it was posted almost two years ago.
by RMcGirr83
18 Nov 2011, 05:48
Forum: Top Stats
Topic: SQL ERROR [ mysqli ]
Replies: 33
Views: 21335

SQL ERROR [ mysqli ]

Wouldnt that result in categories being displayed?
within the constants.php file FORUM_POST === 1, FORUM_CAT === 0

Code: Select all

define('FORUM_CAT', 0);
define('FORUM_POST', 1);
define('FORUM_LINK', 2);
by RMcGirr83
17 Nov 2011, 19:55
Forum: Top Stats
Topic: Problem in IE8
Replies: 37
Views: 22647

Problem in IE8

CTRL + F5 your browser to refresh the cache of it which will reload the css.
by RMcGirr83
17 Nov 2011, 18:58
Forum: Top Stats
Topic: SQL ERROR [ mysqli ]
Replies: 33
Views: 21335

SQL ERROR [ mysqli ]

Why is that Rich? For starters using quote for coloring purposes WHERE ' . $db->sql_in_set('t.forum_id', $flist) . ' AND topic_moved_id = 0 AND topic_approved ORDER BY topic_last_post_time DESC'; you are missing the table delineation (aka t) and topic_approved should have a value....eg WHERE ' . $d...
by RMcGirr83
17 Nov 2011, 16:43
Forum: Top Stats
Topic: SQL ERROR [ mysqli ]
Replies: 33
Views: 21335

SQL ERROR [ mysqli ]

Stoker wrote:Great. Now I am able to troubleshoot the error.
And your fix works 100% - Thanks a lot Rich :)
You're welcome
But Dammit!!! Now I have to resubmit for the third time...
..and there will be a fourth time from looking at the code. ;)
by RMcGirr83
17 Nov 2011, 13:20
Forum: Top Stats
Topic: SQL ERROR [ mysqli ]
Replies: 33
Views: 21335

SQL ERROR [ mysqli ]

What happens if a guest does not have auths to read any forums? This variable will be empty $flist and will cause a problem within the sql query. BTW, this isset($config['tsrat_enable']) && $config['tsrat_enable'] == 1 can simply be this !empty($config['tsrat_enable']) I would probably due s...