Search found 61 matches

by Alex.Prisoner
Thu Apr 16, 2009 4:16 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Smilies for user ID
Replies: 17
Views: 962

Re: Smilies for user ID

This "should" work OPEN: ./includes/functions_posting.php FIND     global $db, $auth, $user, $config, $phpEx, $template, $phpbb_root_path;     // We do not handle erasing posts here     if ($mode == 'delete')     {         return false;     }  ADD AFTER     $usr_array = array(2,3,4); // Us...
by Alex.Prisoner
Thu Apr 16, 2009 4:00 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Smilies for user ID
Replies: 17
Views: 962

Re: Smilies for user ID

Okay here are some issues, the way I would do it the old posts with "XD" would not change but any new posts would because you can't really change it in the database because of the BBCode UID so you would have to update it when a post is entered thus only making new posts have the smiley ch...
by Alex.Prisoner
Thu Apr 16, 2009 3:48 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Stupid Simple Question
Replies: 1
Views: 162

Stupid Simple Question

Okay in phpBB2 to access the board config you would use $board_config what is that variable in phpBB3 now?
by Alex.Prisoner
Thu Apr 16, 2009 2:23 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Smilies for user ID
Replies: 17
Views: 962

Re: Smilies for user ID

Okay, can you explain more in detail what you want this mod to do, the code that you have listed really doesn't make any sense what does the post_time have anything to do with it? I would be willing to help you I'm just not sure what you want exactly And inserting just post_text will really mess up ...
by Alex.Prisoner
Thu Apr 16, 2009 1:25 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Loop inside of a loop?
Replies: 1
Views: 216

Loop inside of a loop?

Okay I'm working on a new mod and I have a loop inside of a loop and for some reason I cannot get it to work in the template Here is my code PHP:     $sql = 'SELECT * FROM '. SMARTMENU_TABLE .' WHERE parent = 0';     $result = $db->sql_query($sql);     while($data = $db->sql_fetchrow($result)){     ...
by Alex.Prisoner
Sat Mar 07, 2009 11:50 pm
Forum: [3.0.x] Support Forum
Topic: block who is online
Replies: 3
Views: 78

Re: block who is online

Thanks...perfect...I've been looking for this for months.... Now how about getting the newest member out of sight for guests as well... Open: index_body.html FIND: &bull; {NEWEST_USER} ADD BEFORE: <!-- IF S_USER_LOGGED_IN --> FIND &bull; {NEWEST_USER} ADD AFTER <!-- ENDIF --> That should do...
by Alex.Prisoner
Tue Feb 24, 2009 12:11 am
Forum: [3.0.x] MODs in Development
Topic: [DEV] phpBB3 aAvatar
Replies: 30
Views: 3725

Re: [DEV] phpBB3 aAvatar

Shop back end almost complete :D

Here is a little sneek peak for those of you still waiting for this mod :D

Image

I plan to have everything done about the middle of march :D
by Alex.Prisoner
Sun Feb 22, 2009 11:04 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please? [HELP STILL NEEDED]

I'm not sure on how to answer that question
This is how mine looks:
Image
by Alex.Prisoner
Sat Feb 21, 2009 8:36 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please? [HELP STILL NEEDED]

THANK YOU SO MUCH!!!!!
Its working now.
by Alex.Prisoner
Sat Feb 21, 2009 7:52 pm
Forum: [3.0.x] MODs in Development
Topic: [DEV] phpBB3 aAvatar
Replies: 30
Views: 3725

Re: [DEV] phpBB3 aAvatar

Update
Shop Mod Frontend is complete.
I am currently waiting for support on the back end, Maybe someone here could help me out?
http://www.phpbb.com/community/viewtopi ... &t=1458405
by Alex.Prisoner
Sat Feb 21, 2009 6:03 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please?

I can't seem to still get it to work this is my current info file <?PHP class acp_aavatar_info {     function module()     {         return array(             'filename'    => 'acp_aavatar',             'title'        => 'ACP_AAVATAR',             'version'    => '0.0.1',             'modes'        ...
by Alex.Prisoner
Sat Feb 21, 2009 5:25 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please?

Thank you so much I'll try it in a second.
by Alex.Prisoner
Sat Feb 21, 2009 4:53 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please?

I'm not sure but that is a good point :D
Thank you.
by Alex.Prisoner
Sat Feb 21, 2009 4:29 pm
Forum: [3.0.x] MODs in Development
Topic: [DEV] phpBB3 aAvatar
Replies: 30
Views: 3725

Re: [DEV] phpBB3 aAvatar

Sorry Guys Long Time no update
I have updated the first post~
by Alex.Prisoner
Sat Feb 21, 2009 4:28 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with ACP Modules, Please?(Solved)
Replies: 27
Views: 726

Re: Help with ACP Modules, Please?

class acp_foo_info { function module() { return array( 'filename' => 'acp_foo', 'title' => 'ACP_FOO', 'version' => '1.2.3', 'modes' => array( 'index' => array('title' => 'ACP_FOO_INDEX_TITLE', 'auth' => 'acl_a_foo_auth', 'cat' => array('')), ), ); } function install() { } function uninstall() { } }...

Go to advanced search