Search found 199 matches

by jbarrouk
Wed Oct 29, 2014 7:36 pm
Forum: [3.1.x] Support Forum
Topic: Mods
Replies: 2
Views: 200

Mods

So mods installed on current site using 3.0.12 will no longer work when upgrading to 3.1? Does this also mean that any reference to them will give you an error? I have a very customized board, including styles and mods. Does anyone have a "best practices" solution for transitioning from 3....
by jbarrouk
Wed Oct 29, 2014 5:56 pm
Forum: [3.1.x] Support Forum
Topic: Integration with rest of my site
Replies: 4
Views: 447

Re: Integration with rest of my site

Thank you.
by jbarrouk
Tue Oct 28, 2014 7:57 pm
Forum: [3.1.x] Support Forum
Topic: Integration with rest of my site
Replies: 4
Views: 447

Integration with rest of my site

Hello all,

I converted all of my html pages to php and integrated them with my phpbb community: http://www.asingularcreation.com. Will that be affected when I upgrade from 3.0.12 to 3.1?

thanks!
by jbarrouk
Tue Oct 28, 2014 7:27 pm
Forum: [3.1.x] Support Forum
Topic: Coppermine
Replies: 3
Views: 321

Coppermine

Hello all, I am currently running 3.0.12. Will upgrading to 3.1 affect my Coppermine gallery which is bridged?

thanks!
by jbarrouk
Mon Sep 22, 2014 12:44 am
Forum: [3.0.x] Support Forum
Topic: Fatal error: Call to a member function
Replies: 6
Views: 664

Re: Fatal error: Call to a member function

Support Request Template What version of phpBB are you using? phpBB 3.0.12 What is your board's URL? http://asingularcreation.com/Forums Who do you host your board with? Eleven 2 How did you install your board? Someone else installed my board for me What is the most recent action performed on your ...
by jbarrouk
Sun Sep 21, 2014 11:39 pm
Forum: [3.0.x] Support Forum
Topic: Fatal error: Call to a member function
Replies: 6
Views: 664

Re: Fatal error: Call to a member function

Thanks for your reply. This is line 5029 on my file:

Code: Select all

$online = (time() - $update_time < $member['session_time'] && ((isset($member['session_viewonline']) && $member['session_viewonline']) || $auth->acl_get('u_viewonline'))) ? true : false;
by jbarrouk
Sun Sep 21, 2014 2:10 pm
Forum: [3.0.x] Support Forum
Topic: Fatal error: Call to a member function
Replies: 6
Views: 664

Fatal error: Call to a member function

Hello all,

When one of my members tries to access certain members' profile pages, he gets this error:

Code: Select all

Fatal error: Call to a member function acl_get() on a non-object includes/functions.php on line 5029
Any idea what the issue might be?

thanks so much!
by jbarrouk
Thu Dec 27, 2012 2:08 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: help to not duplicate code
Replies: 3
Views: 302

Re: help to not duplicate code

EXreaction wrote:You can add that code to the page_header function in functions.php.

When generating URLs, be sure to use append_sid and $phpbb_root_path.
Thanks so much. It looks like I got it working correctly. Could you tell me what append_sid is for? I haven't added that to anything yet.

all the best,
Joe
by jbarrouk
Wed Dec 26, 2012 9:13 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: help to not duplicate code
Replies: 3
Views: 302

help to not duplicate code

Hello all, I have added a bunch of custom pages, using the knowledge base article as my guide. In all of those pages, I have a custom header that requires that I get certain variables shown below. Rather than put the below code on all of the custom php pages that I created, can I create a separate f...
by jbarrouk
Fri Dec 21, 2012 3:58 pm
Forum: [3.0.x] Support Forum
Topic: Newly registered
Replies: 2
Views: 150

Re: Newly registered

Thanks a bunch.
by jbarrouk
Fri Dec 21, 2012 3:44 pm
Forum: [3.0.x] Support Forum
Topic: Newly registered
Replies: 2
Views: 150

Newly registered

Hi There, When a new member joins, are they supposed to get placed in both the Newly Registered Users and Registered Users? I am trying to disallow Newly Registered Users from being able to add a signature, but since they are being placed in both groups after registration, it is not working. Any hel...
by jbarrouk
Sun Nov 18, 2012 8:17 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Need Help pulling UserID for Link to Coppermine Gallery
Replies: 3
Views: 548

Re: Need Help pulling UserID for Link to Coppermine Gallery

You should use $user->data['user_id'] and not $user_id . Thanks. I did what you said and it worked. But is there a more correct way of doing this than how i did it? // Assign vars $template->assign_vars(array( 'USERNAME' => ($user->data['username']), 'CPG_MY_GALLERY' => $user->data['user_id'] != AN...
by jbarrouk
Sun Nov 18, 2012 3:40 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Need Help pulling UserID for Link to Coppermine Gallery
Replies: 3
Views: 548

Need Help pulling UserID for Link to Coppermine Gallery

Hi all, I have seen a few posts with Coppermine info and have tried to use it but my lack of PHP knowledge isn't helping me as I try to learn. I have created a bunch of custom pages to integrate my site. In all of my pages will be a custom header area that has a dropdown panel with user profile and ...
by jbarrouk
Wed Nov 14, 2012 2:01 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with Custom Pages
Replies: 7
Views: 325

Re: Help with Custom Pages

So you want to show an HTML file as the default page and if it's an article, show an HTML file in the /articles/ directory? I haven't tested this, but it's worth a shot. $articles = request_var('articles', 'art-tips'); // more lovely PHP code that's unrelated $template->set_filenames(array(     'bo...
by jbarrouk
Tue Nov 13, 2012 11:57 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Help with Custom Pages
Replies: 7
Views: 325

Re: Help with Custom Pages

Simply add the articles directory to it like this: $template->set_filenames(array(     'body' => 'articles/' . $articles . '.html') ); This would grab the files from the articles folder which is inside the template folder of a style. I tried it and it did not work. I should have been more specific....

Go to advanced search