Icy Phoenix
Archived phpBB Topics (Styles, Mods, Support) - FAP CUSTOMIZATION - FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
felix968 [ Wed 28 Feb, 2007 20:09 ]
Post subject: FAP CUSTOMIZATION - FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Hallo,
excuse me for bad translation....
I have FAP and phpbb, and I can't resolve this question: all the messages in album are not count for users in the forum.
The users would like the link, for their best up level.
How can I do?
Thanks
Artie [ Thu 01 Mar, 2007 00:56 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Maybe this will help with your request. :wink:
MightyGorgon.com wrote:
Hello,
I tried searching for the terms "increase post" "post count" but couldn't find what I was looking for. I'm looking to see if there is a way to increase a member's post count when adding a comment to the album. I've saw this was possible with the un modded smartor album, but wanted to know how could I apply this hack to FAP.
Thank you for your time.
nevermind I found it
Glad you found what you were looking for.
Care to provide a link/info for others who may come across this thread ?
Yes I will, let me find the code change. I'll edit this post with the changes to increase post count and decrease post count when adding or deleting comments to the album.
Ok both of these can be found at
http://smartor.is-root.com/viewtopi...ight=post+count
To increase a post when making a comment, you are actually going to open the album_showpage.php not the album_comment.php. The increase post count is on page 1, the decrease post count if you delete a comment is on page 3.
Thanks for the links... maybe someone else will find them useful. :wink:
felix968 [ Thu 01 Mar, 2007 09:14 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Thanks Artie...that's very useful, but doesn't work with FAP ....I haven't "album_comment.php" file ...
:cry:
Artie [ Thu 01 Mar, 2007 18:28 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
I haven't test this, but I think it does work.
Did you not see this (above):
To increase a post when making a comment, you are actually going to open the album_showpage.php not the album_comment.php
felix968 [ Thu 01 Mar, 2007 20:59 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Artie, you are great....I've done all in "album_showpage.php " , but it doesn't work ...but i've read this in that post: "FAP got a modified clown's included.. though almost all features can be disabled in the ACP..
"
Do you somethink about?
Artie [ Thu 01 Mar, 2007 23:11 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
It worked for me.
Can you provide here, that part (only) of your code where you made the change.
felix968 [ Fri 02 Mar, 2007 12:27 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
here for you.... :?
$sql = "INSERT INTO ". ALBUM_RATE_TABLE ." (rate_pic_id, rate_user_id, rate_user_ip, rate_point)
VALUES ('$pic_id', '$rate_user_id', '$rate_user_ip', '$rate_point')";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new rating', '', __LINE__, __FILE__, $sql);
}
$sql = "UPDATE " . USERS_TABLE . " SET user_posts = user_posts + 1 WHERE user_id = " . $userdata['user_id'];
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update post count', '', __LINE__, __FILE__, $sql);
}
}
}
Artie [ Fri 02 Mar, 2007 18:11 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
here for you.... :?
$sql = "INSERT INTO ". ALBUM_RATE_TABLE ." (rate_pic_id, rate_user_id, rate_user_ip, rate_point)
VALUES ('$pic_id', '$rate_user_id', '$rate_user_ip', '$rate_point')";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new rating', '', __LINE__, __FILE__, $sql);
}
$sql = "UPDATE " . USERS_TABLE . " SET user_posts = user_posts + 1 WHERE user_id = " . $userdata['user_id'];
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update post count', '', __LINE__, __FILE__, $sql);
}
}
}
You added the code in the wrong location.
Look for:
$sql = "INSERT INTO " . ALBUM_COMMENT_TABLE ."
felix968 [ Fri 02 Mar, 2007 19:13 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
here for you.... :?
$sql = "INSERT INTO ". ALBUM_RATE_TABLE ." (rate_pic_id, rate_user_id, rate_user_ip, rate_point)
VALUES ('$pic_id', '$rate_user_id', '$rate_user_ip', '$rate_point')";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new rating', '', __LINE__, __FILE__, $sql);
}
$sql = "UPDATE " . USERS_TABLE . " SET user_posts = user_posts + 1 WHERE user_id = " . $userdata['user_id'];
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update post count', '', __LINE__, __FILE__, $sql);
}
}
}
You added the code in the wrong location.
Look for:
$sql = "INSERT INTO " . ALBUM_COMMENT_TABLE ."
WONDERFUL!
You are great Artie....
NOW Works :D
Thanks so much....
Artie [ Fri 02 Mar, 2007 21:21 ]
Post subject: Re: FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Glad I could help :mrblue:
Mighty Gorgon [ Sun 04 Mar, 2007 13:43 ]
Post subject: Re: SOLVED - FAP 1.4.0 And Phpbb 2.0.21 : Total Messages
Another nice shoot.
Thanks. :wink: