Trent Adams
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: UNCLEOk enough everyone, please! Let’s get back to business! Agree to disagree!
Forum: Fixing WordPress
In reply to: WP and phpBB sharing the same userbase?Whoops…misread post please ignore this…
Trent
Forum: Fixing WordPress
In reply to: Archive Page with list of all titles?I run a journal under .htaccess so I am the only one viewing it. I am just looking for a way to have my archives on one page. This includes the javacript archives such as superarchives and such. All of them use my memory allocation up…just wanted one that worked without using that limit!
Don’t worry…no visitors to this site!
Trent
Forum: Fixing WordPress
In reply to: Archive Page with list of all titles?I would love to run this plugin, but get an fatal error with memory when trying to use it.
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes) in /www/html/wordpress/wp-includes/functions.php on line 1407
Any ideas how to get around this or what I should be asking my host about? I have about 1200 items so that is why the big memory allocation…..
Trent
Forum: Fixing WordPress
In reply to: phpBB intergrationForum: Fixing WordPress
In reply to: Want to have comments posted on forum instead of in WPWilbur at https://www.happypoet.com has a plugin that does exactly what you want. It currently works flawlessly with WP 1.5, but he is still fixing the integration for WP 2.0. I use the plugin myself with 2.0 for having comments go into phpBB and all comments there, but still waiting for login integration. If that is important to you, use the plugin with WP 1.5 until this plugin is tweaked to work with 2.0
Trent
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)Ok…figured out this last one. After reading Wilbur’s site, he needs to work on the login integration. Right now, it all works except the login integration. What I did to fix the cookie problem was leave out the following code from my header page and everything went back to normal.
<?php if (function_exists(wphpbb_header)){ wphpbb_header();} ?>
That code makes me keep getting logged out of phpBB when even browsing the forum. Once that was out of my blog header….it was all good for comments in the forum.
I look forward to having this work with the login integration when Wilbur has time to finalize it!
Trent
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)Another thing that I am finding is that I am constantly getting logged out of phpBB (only with Firefox) now when I have the following in the phpBB functions.php:
if (!function_exists(get_userdata)) :
and after
endif;If I remove it, phpBB works fine again, but obviously the wphpbb plugin doesn’t work and you can’t view your blog.
I guess I better wait and see what Wilbur can do to fix this because I can’t seem to get it to work at all for me now with the newest version of phpBB…..
Trent
Forum: Themes and Templates
In reply to: Forum, Members Avatars, Image Gallery.Just a quick note. There is a plugin for WordPress that allows you to integrate with phpBB forum software and phpBB integrates with a number of gallery softwares. I use WordPress, phpBB and 4images. Just do a search on google and it will help you with this.
Good luck.
Trent
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)No matter how hard I try, I can’t get the plugin to have me do the 2 following things:
1) Create a new user in WP if the user doesn’t already exist in WP, but does in PhpBB
2) Use same login information to take over to the ‘admin’ area of WP.
Any ideas?
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)Just in case any of you are using this and would like to have the recent posts from the forum listed in your sidebar, the code that I have had the most success with has been:
<!-- RECENT POST -->
<?php if (function_exists('wphpbb_recent')) { ?>
<li><h2><?php _e('Forum'); ?></h2>
<ul><?php wphpbb_recent(); ?>
</ul>
</li><?php } ?>
Thanks,
Trent
Forum: Plugins
In reply to: Validate User RegistrationI know that some software packages also have ‘invitation only’ where you generate an invitation email to them and they use that generated data in the registration process. That is what I am doing with phpBB right now and it works great!
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)DDT,
I too am one of those people who work with the author on getting the code working and not the plugin author, as it is Wilbur who wrote it. I am OK with php, but not good enough to code much myself.
With that disclaimer out, what this plugin does is just create a new table in wordpress that keeps the results from the ‘unchanged’ phpbb tables. The login uses the cookie from phpbb and tries to replicate that information into wordpress. It doesn’t actually change phpbb tables at all (except makes new posts of the wordpress posts). The registration is still done in phpbb and then is ‘copied’ over to wordpress.
The details of the plugin can be found in the code or from the author of the plugin, but he is really busy right now. Sorry I couldn’t help out more! I am still waiting for someone to help me finish this plugin off for 2.02!