Search Results for '\"wordpress\"'
-
Search Results
-
Topic: php fail.
Damnit, I was so looking forward to using bbpress. Im a big fan of wordpress, and I love that its so simple to mod. but there seems to be some problems with this board, and I can figure it out.
On the wery first page when installing, I get this messege;
Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-admin/install.php on line 10
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/functions.php on line 1910
Im able to install just fine, but when I try to log in, I get this;
Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 164
Im lost when it comes to php, and its seems from this board, that there have been thiis problem for quite a wile, 6 month now. goodbuy bbpress, hello minibb??
The forum is located on http://www.cobain.dk/bbpress
‘
PHP5
The server has “PHP – Register globals” set to OFF
bbPress and WordPress have different table prefixes
bb_forums
bb_posts
bb_tagged
bb_tags
bb_topicmeta
bb_topics
bb_usermeta
bb_users
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_terms
wp_term_relationships
wp_term_taxonomy
wp_usermeta
wp_users
Heya,
i’ve installed a wordpress plugin for avatars which is integrated into my wordpress by the following code:
<?php if(function_exists(cmd_show_avatar)) cmd_show_avatar(avatar); ?>Is there any possibility to embed this code into my bbpress just for showing the wordpress avatar (because of saying my bbpress to require wp-blog-header in the config.php)?
Hey guys,
i’d love to integrate my bbpress ( http://www.stereopoly.de/forum ) into my wordpress ( http://www.stereopoly.de ), but when saying to fetch the wp-blog-header (even when taking an absolute link, my bbpress is completely giving up its job and says
Failed opening required ‘http://www.stereopoly.de/wp-blog-header.php’
this is what my bbpress’ config.php last lines look like:
/* Stop editing */
if ( !defined('BBPATH') )
define('BBPATH', dirname(__FILE__) . '/' );
require_once( 'http://www.stereopoly.de/wp-config.php' );
require_once( 'http://www.stereopoly.de/wp-blog-header.php' );
require_once( BBPATH . 'bb-settings.php' );
?>can anyone please help!?
Hey guys,
i’ve just installed a wordpress plugin makin it possible to upload a user avatar. the plugin is based on based on Dan´s Avatar plugin and was modified by clope.
look at the comment of a user called julius in this wordpress-post: http://www.stereopoly.de/die-evolution-der-nintendo-helden/#comments
Is it possible to easily embed a freaky code to my bbpress (http://www.stereopoly.de/forum) showing the avatar? PLEEEASE HELP!!!
Hi, iam Using bbPress with a WordPressinstallation. My WP install is in:
/blog/
and my bbPress in:
/blog/forum/
If I now log in in my WP with IE and go to the Forums all is fine. But if I do the same with FireFox I have to login again.
I’am using WordPress Plugin bbpress Integration and the WordPress Integration Plugin for bbPress. Did i made something wrong?
thanks,
Jan
Edit: If I’am logged in and go to the register.php with FireFox he mean that Iam already logged in… confusing…
Edit#2: If I log out in bbPress my Iam logged out in WP too…
I found this so cool and wonder if it is ever possible with bbpress too. http://www.stuff.yellowswordfish.com/simple-forum/
The only problem i find with that plugin is the speed. A little slow to load the forum page.
Hope to hear from all of you soon.
Topic: New to WordPress – Help
I’m new to WordPress. I need to build a website with multiple pages for a client of mine. Here are the elements I need to include:
Biography (text, photos)
News (text, photos)
Tour Dates (event calendar)
Discography (text, photos)
Merchandise (text, photos)
Links to other sites
Blog
Media (video, music clips)
Contact Info
I need help setting it up on a server. Can someone please help me? My client currently has a domain name and hosting.
Topic: get_the_ID() for bbpress
I imported the wordpress functions I need but get_the_ID() from wordpress doesn;t seem to work in bbpress. Is there a bbpress function that does the same thing? It gives you the index number of posts or comments or whatever that is currently being printed by the system
Is there a normal process or formula for converting a wordpress plugin to a bbpress plugin? Let’s say that it uses all the same tables and everything? Is there a way to switch it over or do you just have to re-engineer it?
I’m trying to use the same database and tables for wordpress and bbpress but they don’t merge painlessly.
I set the table prefix in bbpress’s config to wp_ and set the database to be the same as wordpress’s. I also set the wp_prefix in bbpress’s config.
Then I tried to start bbpress but it threw a bunch of exceptions and now it will not save new posts. Can anyone help me?
I enclose it’s exceptions
Now we’re going to create the database tables and fill them with some default data.
bbPress database error: [Incorrect table definition; there can be only one auto column and it must be defined as a key]
ALTER TABLE wp_posts ADD COLUMN post_id bigint(20) NOT NULL auto_increment
bbPress database error: [Key column 'post_id' doesn't exist in table]
ALTER TABLE wp_posts ADD PRIMARY KEY (post_id)
bbPress database error: [The used table type doesn't support FULLTEXT indexes]
ALTER TABLE wp_posts ADD FULLTEXT KEY post_text (post_text)
1. Created table wp_forums
2. Created table wp_topics
3. Created table wp_topicmeta
4. Created table wp_tags
5. Created table wp_tagged
6. Changed default value of wp_posts.post_status from publish to 0
7. Added column wp_posts.post_id
8. Added column wp_posts.forum_id
9. Added column wp_posts.topic_id
10. Added column wp_posts.poster_id
11. Added column wp_posts.post_text
12. Added column wp_posts.post_time
13. Added column wp_posts.poster_ip
14. Added index wp_posts FULLTEXT KEY post_text (post_text)
15. Added index wp_users UNIQUE KEY user_login (user_login)
bbPress database error: [Field 'post_content' doesn't have a default value]
INSERT INTO wp_posts (forum_id, topic_id, poster_id, post_text, post_time, poster_ip, post_status, post_position) VALUES ('1', '1', '1', '
First Post! w00t.
','2008-02-22 15:10:39', '127.0.0.1', '0', 1)
bbPress database error: [Unknown column 'post_id' in 'field list']
SELECT post_id, poster_id FROM wp_posts WHERE topic_id = 1 AND post_status = 0 ORDER BY post_time
bbPress database error: [Unknown column 'post_id' in 'where clause']
SELECT * FROM wp_posts WHERE post_id = 0
Finished!