Search found 176 matches

by Afkamm
Wed Jul 01, 2009 7:46 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

Re: [BETA] Smiley Popup Pagination 0.0.2

Now this mod is a feature of the phpBB 3.0.6 no? Yes, you are correct. :) Who knows if I'll get a mention. ;) Pagination for smilies and icons We will introduce pagination to the smilies and icons page. We may also add a hard limit to the number of smilies, because too much smilies can consume a lo...
by Afkamm
Tue Jun 30, 2009 11:13 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

Re: [BETA] Smiley Popup Pagination 0.0.2

Now, I do have the Smilie Creator mod installed. I'm wondering if I have a conflict. Yep, this mod makes changes to the function generate_smilies() in the file includes/functions_posting.php . My mod replaces the whole function, but this wont have happened because the code it looks for wont have be...
by Afkamm
Tue Jun 23, 2009 10:45 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

Re: [BETA] Smiley Popup Pagination 0.0.2

See the first post for the download link. :)
by Afkamm
Thu Jan 29, 2009 4:55 pm
Forum: [3.0.x] AutoMOD
Topic: Uninstall Mod, in-line find operation failed.
Replies: 5
Views: 877

Re: Uninstall Mod, in-line find operation failed.

A_Jelly_Doughnut wrote:Would you please file a ticket in the bug tracker?
Done. :)
by Afkamm
Thu Jan 29, 2009 2:29 pm
Forum: [3.0.x] AutoMOD
Topic: Uninstall Mod, in-line find operation failed.
Replies: 5
Views: 877

Uninstall Mod, in-line find operation failed.

phpBB3: 3.0.4 AutoMod: 1.0.0.b2 The installation went fine, no problems, but when I try to uninstall the Mod, I get a... Find <td class="row1" align="center" valign="middle"><!-- BEGIN smiley --> <a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}',...
by Afkamm
Thu Jan 29, 2009 2:26 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

Re: [BETA] Smiley Popup Pagination 0.0.1

I've got the next release ready, but when I went to uninstall the Mod, the inline-find reversal failed for some reason, meaning the Mod doesn't uninstall. :( Currently looking for answers. :)

I've removed the inline-find from the next release as it was only for the 2nd style template. :mrgreen:
by Afkamm
Wed Jan 28, 2009 6:07 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

Re: [BETA] Smiley Popup Pagination 0.0.1

CarolC1, glad you like it. :)
ChriZathens wrote:I have a small problem: I want to set "Inline smilies displayed:" to 25, but if I set it higher than 24 it will hide the "View more smilies" link.
Hmm yes, well spotted, that is indeed a bug. Making a fix as I type. :)
by Afkamm
Tue Jan 27, 2009 7:11 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Smiley Popup Pagination 0.0.2
Replies: 21
Views: 5501

[BETA] Smiley Popup Pagination 0.0.2

Modification Name: Smiley Popup Pagination Author: Afkamm Modification Description: Set how many smilies you want to be shown at one time on the popup smiley window with links to the other pages. Two other small features allow you to limit the smilies that are inlined and also to randomise them. Mo...
by Afkamm
Wed Jan 23, 2008 1:52 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: New Smiley Selection Window
Replies: 8
Views: 939

Re: New Smiley Selection Window

Ugh, it's a quotes problem, you've used doubles inside doubles instead of singles. :) onclick="insert_text("{smiley.A_SMILEY_CODE}", true, true); return false;" should be... onclick="insert_text('{smiley.A_SMILEY_CODE}', true, true); return false;" Very hard to notice w...
by Afkamm
Wed Jan 23, 2008 1:58 am
Forum: [3.0.x] MOD Writers Discussion
Topic: New Smiley Selection Window
Replies: 8
Views: 939

Re: New Smiley Selection Window

Put back the original file and see if that still works. :roll:
by Afkamm
Mon Jan 21, 2008 5:55 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: New Smiley Selection Window
Replies: 8
Views: 939

Re: New Smiley Selection Window

Make sure the following is still there.

Code: Select all

<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
or the javascript function insert_text wont be there so clicking will do nothing. :)
by Afkamm
Sat Jun 16, 2007 1:18 pm
Forum: 2.0.x Support Forum
Topic: need SQL smilies databse restored
Replies: 15
Views: 5301

Re: need SQL smilies databse restored

1146: Table 'bizzu_forum. smiles ' doesn't exist Problem is right there, no 'i'. :) Open the file includes/constants.php and find the line define('SMILIES_TABLE', $table_prefix.'smiles'); and change it to define('SMILIES_TABLE', $table_prefix.'smilies'); Make sure it also says SMILIES_TABLE and not...
by Afkamm
Tue May 29, 2007 11:55 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: Problem with assigning block variables
Replies: 5
Views: 486

Re: Problem with assigning block variables

'L_BLOCK_NAME' => $no, 'L_BLOCK_TEXT' => "blah blah blah", 'U_BLOCK' => "HI") L_BLOCK_TEXT and U_BLOCK are constants, so there is no need to assign them in a loop. The only one that changes is L_BLOCK_NAME. Oh I see what you mean. :oops: I said what I did because I've never come...
by Afkamm
Tue May 29, 2007 7:51 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: Problem with assigning block variables
Replies: 5
Views: 486

Re: Problem with assigning block variables

Brf wrote:Also, in this case, L_BLOCK_NAME is the only one that will change, so you are better off assigning the other two with a simple assign_vars() call and leaving them as-is in the template.
By L_BLOCK_NAME he means U_BLOCK. :ugeek:
by Afkamm
Sat May 26, 2007 2:32 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: SQL problem using SUM(), just wont work.
Replies: 3
Views: 579

Re: SQL problem using SUM(), just wont work.

Brf wrote:If you are doing SUM(), it returns a single row with the sum in it.... You cannot do a query that returns a bunch of rows and also return a single-row result....
Ah that explains it. :) I just assumed it would work on more than one row as I have a COUNT() that does.

Thanks for the reply. :D

Go to advanced search