Mod Problem!

PbE

Addicted
Joined
Sep 1, 2009
Messages
766
Reaction score
0
FP$
6
Okay, I'm almost done installing Ultimate Points. Then, It tells me to find:
Find
Tip: This may be a partial find and not the whole line.


Code:
	'post_postcount'		=> $post_data['post_postcount']
			);

And I can't find it!
 
Ok, I found it. 🙂

But now it says:

Find
Tip: This may be a partial find and not the whole line.


Code:
default:
			$location = $user->lang['INDEX'];
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
		break;


And I only see:

Code:
}
			else
			{
				$location = $user->lang['INDEX'];
				$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
			}
		break;
 
I don't have the number of Lines.. I'm using WordPad. 😛
 
Didn't see:
Code:
default:
			$location = $user->lang['INDEX'];
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
		break;
? 😛 Heh.
 
What I need to do is:

Find
Tip: This may be a partial find and not the whole line.

Code:
		default:
			$location = $user->lang['INDEX'];
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
		break;
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code:
		// Start Ultimate Points
		case 'points':
			$user->add_lang('mods/points');
			$location = $user->lang['POINTS_VIEWING'];
			$location_url = append_sid("{$phpbb_root_path}points.$phpEx");
		break;
		// End Ultimate Points
 
One more thing. 😛

Find
Tip: This may be a partial find and not the whole line.

Code:
				<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code:
				<!-- Start Ultimate Points -->
				<!-- IF S_POINTS_ENABLE -->
				<li class="icon-points"><a href="{U_POINTS}" title="{L_POINTS_EXPLAIN}">{POINTS_LINK}<!-- IF S_USER_LOGGED_IN --> [ {USER_POINTS} ] <!-- ENDIF --></a></li>
				<!-- ENDIF -->
				<!-- End Ultimate Points -->

And, I don't see that. I only see:

Code:
<li><a href="{U_FAQ}"><span>{L_FAQ}</span></a></li>
(I'm using this style: http://www.phpbb3styles.net/db/style/1thank_green)
 
Uh.......

Open: styles/prosilver/theme/colours.css

I don't have that..
 
Can I add it at another time?

(Ok, I think I'm done. The only thing I did was edit the files, NOW what do I do? )
 
Upload them to your servers, run root/install_ultimate_points.php, purge your cache and edit the settings to your likings in the ACP.
 
So, I don't need to upload the files that came with Ultimate Points?
 
Back
Top Bottom