Milestone Congratulations

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
Locked
chuckf2000
Registered User
Posts: 51
Joined: Tue Aug 04, 2009 4:29 pm

Re: Milestone Congratulations

Post by chuckf2000 »

I do apologize up front. I haven't read all 20 pages of posts to see if this has been addressed.

I have installed this mod but I can't seem to find the setup area.

Edit: I must have locked myself out of the mod. There's a lock (closed) on the tab. How do I unlock it?
You're invited to help us grow our online community at: http://www.GroupHugForum.com
Wedgy
Registered User
Posts: 44
Joined: Thu Aug 28, 2008 5:49 pm

Re: Milestone Congratulations

Post by Wedgy »

Great mod MartectX! :D Ive had it installed for 11 months now and its great.

There seems to be a glitch creeping in though. The last 2 milestones recorded on my board (for a post and topic milestone) were both recorded as being achieved by a ..... BOT :lol: Considering they don't post, its quite an achievement :D

I havent added any additional mods since the installation of this one, just updated the phpbb versions as they came along.
The only thing that has changed on the board apart from the phpbb version is that it has become a lot busier ... but certainly not anywhere near a big phpbb board.

Any ideas?
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: Milestone Congratulations

Post by noth »

since installing Simple Profile Comments there appears to have been a conflict with this mod

ever since enstalling Simple Profile Comments every milestone has now been allocated to "Anonymous" even though no guests have even posted :cry:
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Milestone Congratulations

Post by MartectX »

Ya, there've been numerous reports of wrong allocations of milestones and upon further inspection of the code I have located the reason for this behaviour. The bug will mostly only occur on well-frequented boards. It will take me a while to come up with a fix - in the meantime, double-check entries for validity.
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: Milestone Congratulations

Post by noth »

the latest on my site is this
Post #2900 has been made by Google [Bot], topic #300 has been created by Infofeeder; registered user #50 is robert140602. (History)
how can Google [Bot] make a post? :shock:

since adding Simple Profile Comments mod the Milestones Feature has descended into farce with Anonymous and Google [Bot] ruining the thing totally

all I can do is remove it :oops:
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Milestone Congratulations

Post by MartectX »

I have no idea how that other modification interferes with Milestone Congratulations and do not have the time to inspect this.
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: Milestone Congratulations

Post by noth »

okay Martect :)

understood

I am sure you would wish to be informed of any problems experienced with it

:( sadly - problems are occurring but I guess ...if Milestones is your only mod, you're safe :P
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Milestone Congratulations

Post by Richazey »

Hi Martex, long story short i deleted the milestone table from my phpmyadmin put it back on and put the old milestones back in using this code below but the milsonte history page is blank how do i get it fixed so it shows the milestones please?:

Code: Select all

<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();

set_config('milestone_pid', 2);
set_config('milestone_puser', 'Rich');
set_config('milestone_pcolour', 'AA0000');
set_config('milestone_posts', 1);
set_config('milestone_pgoal', 100);

set_config('milestone_tid', 2);
set_config('milestone_tuser', 'Rich');
set_config('milestone_tcolour', 'AA0000');
set_config('milestone_topics', 1);
set_config('milestone_tgoal', 100);

set_config('milestone_uid', 2);
set_config('milestone_uuser', 'Rich');
set_config('milestone_ucolour', 'AA0000');
set_config('milestone_users', 1);
set_config('milestone_ugoal', 25);

$cache->purge();
?>
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Milestone Congratulations

Post by MartectX »

parkstee wrote:Hi Martex, long story short i deleted the milestone table from my phpmyadmin put it back on and put the old milestones back in using this code below but the milsonte history page is blank how do i get it fixed so it shows the milestones please?
Insert the default entries manually:

Code: Select all

INSERT INTO `phpbb_milestones` ( `user_id` , `milestone` , `type` )
VALUES ('2', '1', '1'),
VALUES ('2', '1', '2'),
VALUES ('2', '1', '3');
Exchange 2 with your user_id.
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Milestone Congratulations

Post by Richazey »

Thanks thas fixed it so it should work as normal now right?
rohansakhale
Registered User
Posts: 30
Joined: Sat Aug 15, 2009 6:02 am
Contact:

Re: Milestone Congratulations

Post by rohansakhale »

I am getting some different output.
Like this is what i see on index page...
Image

The settings i have kept in acp are these,
Image

Can anyone please help me & get the perfect thing as shown on first page..
i am using phpbb version : 3.0.5

Thank you...
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Milestone Congratulations

Post by Richazey »

MartectX I did a test milestone 6999th post to check it was working, I then dropped it from the datebase but it still shows up on the index and acp pages?
Simone195
Registered User
Posts: 9
Joined: Tue Oct 20, 2009 11:45 am

Re: Milestone Congratulations

Post by Simone195 »

brillant ^^
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Milestone Congratulations

Post by Richazey »

Hi Martex any chance you could look at this plz?

I did a test milestone 6999th post to check it was working, I then dropped it from the datebase but it still shows up on the index and acp pages?
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Milestone Congratulations

Post by MartectX »

parkstee wrote:I did a test milestone 6999th post to check it was working, I then dropped it from the datebase but it still shows up on the index and acp pages?
You'll have to edit the entries in the phpbb_config table (look for the milestone_xyz entries)!
Locked

Return to “[3.0.x] MOD Database Releases”