Search found 17 matches

by Blue Blood
13 Dec 2012, 02:29
Forum: User Contributions
Topic: [DEV] BB Picture Q&A
Replies: 0
Views: 2776

[DEV] BB Picture Q&A

http://projectblueblood.com/download/file.php?id=62 Image by FranckTH Modification Name: BB Picture Q&A Author: Blue Blood I have just converted the Q&A plug-in to a Picture Q&A. http://projectblueblood.com/images/modx_inside.png http://projectblueblood.com/images/automod_logo.png View XML File ...
by Blue Blood
13 Dec 2012, 02:03
Forum: User Contributions
Topic: UMIL Installer With Out Being Logged In
Replies: 4
Views: 2789

UMIL Installer With Out Being Logged In

i would guess delete them........ it wont be an issue if you log out first...

Like I said I used this a few times when I installed a mod and it wouldn't let me login
so if your testing this make sure you are logged out....
by Blue Blood
13 Dec 2012, 02:00
Forum: User Contributions
Topic: phpBB 3.0.x Remove ACP 2nd authentication login
Replies: 6
Views: 5873

phpBB 3.0.x Remove ACP 2nd authentication login

I found it years ago.... I think on phpBB.com

I only use it when I am working on a mod (localhost)
by Blue Blood
10 Dec 2012, 02:46
Forum: User Contributions
Topic: phpBB URL For User Profile www.domain.com/User Name
Replies: 10
Views: 21704

phpBB URL For User Profile www.domain.com/User Name

I tried it & got my default self modified 404 page..... :| You will get the 404 page if you didn't do this edit or if your host doesn't allow mod rewrite. Open .htaccess At the end of the file add RewriteEngine on Rewriterule ^([^/\.]{3,})$ ./memberlist.php?mode=viewprofile&un=$1 No this changes ...
by Blue Blood
07 Dec 2012, 22:56
Forum: User Contributions
Topic: phpBB URL For User Profile www.domain.com/User Name
Replies: 10
Views: 21704

phpBB URL For User Profile www.domain.com/User Name

This is also replacing the url in the Arcade mod So we cannot click on a user to see his game statistics.. it leads directly to their profile.. Anyway ti fix this please? http://phpbbarcade.jatek-vilag.com/viewtopic.php?p=4 I will check it out tonight!! EDIT: See if this works Replace this $profile ...
by Blue Blood
07 Dec 2012, 05:42
Forum: User Contributions
Topic: UMIL Installer With Out Being Logged In
Replies: 4
Views: 2789

UMIL Installer With Out Being Logged In

I once installed a mod and after which I could not login....
With out being logged in I was unable to uninstall it.

With this I was able to uninstall the mod..

I know I'm not the only person that has had this problem...

This will help you if you ever come across this issue...
by Blue Blood
06 Dec 2012, 00:29
Forum: User Contributions
Topic: phpBB URL For User Profile www.domain.com/User Name
Replies: 10
Views: 21704

phpBB URL For User Profile www.domain.com/User Name

martin123456 wrote:Closest i can find is

Code: Select all

$profile_url = ($custom_profile_url !== false) ? $custom_profile_url . '&u=' . (int) $user_id : str_replace(array('={USER_ID}', '=%7BUSER_ID%7D'), '=' . (int) $user_id, $_profile_cache['base_url']);
This is it...

The edits were for phpBB 3.0.8

I updated the edit!!
by Blue Blood
05 Dec 2012, 21:54
Forum: User Contributions
Topic: phpBB URL For User Profile www.domain.com/User Name
Replies: 10
Views: 21704

phpBB URL For User Profile www.domain.com/User Name

URL For User Profile http://www.domain.com/User Name This will allow the user profile link to be the users name http://www.projectblueblood.com/memberlist.php?mode=viewprofile&u=2 Will now be http://www.projectblueblood.com/Blue Blood Open .htaccess At the end of the file add RewriteEngine on ...
by Blue Blood
05 Dec 2012, 21:53
Forum: User Contributions
Topic: phpBB 3.0.x Remove ACP 2nd authentication login
Replies: 6
Views: 5873

phpBB 3.0.x Remove ACP 2nd authentication login

Remove ACP 2nd authentication login OPEN adm/index.php FIND // Have they authenticated (again) as an admin for this session? if (!isset($user->data['session_admin']) || !$user->data['session_admin']) { login_box('', $user->lang['LOGIN_ADMIN_CONFIRM'], $user->lang['LOGIN_ADMIN_SUCCESS'], true, false ...