Search Results for '+.+default+.+'
-
Search Results
-
I’m getting the following error:
“Fatal error: Call to undefined function load_default_textdomain() in S:Devxampphtdocsblogforumsbb-settings.php on line 143”
I get this whenever I try to access the Admin section logged in as Key Master, or whenever I try to go into bb-press/index.php or install.php.
That line is as follow in bb-settings –
// Load the default text localization domain.
load_default_textdomain();
Now….
Do I need a file if i’m using english?
My config.php is as follows:
define(‘BBLANG’, ”);
Any1?
Hello,
I have bbpress and wordpress installed together and they were playing nicely. I change the domain info in the config files and the WP admin to the domain name from IP as the DNS switch went through and suddenly (I say “suddenly” but I’m sure I screwed something up), I get the following errors when I try to login to WP:
Warning: Cannot modify header information – headers already sent by (output started at /home/payingfo/public_html/Wordpress/wp-config.php:22) in /home/payingfo/public_html/Wordpress/wp-login.php on line 12
Warning: Cannot modify header information – headers already sent by (output started at /home/payingfo/public_html/Wordpress/wp-config.php:22) in /home/payingfo/public_html/Wordpress/wp-includes/pluggable.php on line 275
I also get this error when I try to pull up BBPress:
Fatal error: Call to undefined function: load_default_textdomain() in /home/payingfo/public_html/wordpress/discussion/bb-settings.php on line 143
I checked for white space. Anyone have any suggestions before I scrap this and start on another install? I’ve built out quite a few posts and pages and am not looking forward to deleting the db.
Thanks.
Sarah
Topic: Avatar Upload error message
Hello, i trying to integrate the avatar function. However, when i choose the picture and press Upload, i get a following error message:
"The image file does not appear to have been uploaded - did you select an image?"
The default folder is avatars/ and the default picture shows up too. I even chaged the avatar folder permission to 777 but the message remains the same. Where elese can i change something?
Thank you.
Hello,
I am intergrating BB into WordPress and am hitting a wall.
When I attempt to go to step three of installation I meet the following text:
bbPress database error: [Column ‘post_text’ cannot be part of FULLTEXT index]
CREATE TABLE bb_posts ( post_id bigint(20) NOT NULL auto_increment, forum_id int(10) NOT NULL default ‘1’, topic_id bigint(20) NOT NULL default ‘1’, poster_id int(10) NOT NULL default ‘0’, post_text text NOT NULL, post_time datetime NOT NULL default ‘0000-00-00 00:00:00’, poster_ip varchar(15) NOT NULL default ”, post_status tinyint(1) NOT NULL default ‘0’, post_position bigint(20) NOT NULL default ‘0’, PRIMARY KEY (post_id), KEY topic_id (topic_id), KEY poster_id (poster_id), KEY post_time (post_time), FULLTEXT KEY post_text (post_text) ) TYPE = MYISAM
1. Created table bb_forums
2. Created table bb_posts
3. Created table bb_topics
4. Created table bb_topicmeta
5. Created table bb_tags
6. Created table bb_tagged
7. Changed type of wp_usermeta.meta_key from varbinary(255) to varchar(255)
8. Changed type of wp_usermeta.meta_value from longblob to longtext
9. Changed type of wp_users.user_login from varbinary(60) to varchar(60)
10. Changed type of wp_users.user_pass from varbinary(64) to varchar(64)
11. Changed type of wp_users.user_nicename from varbinary(50) to varchar(50)
12. Changed type of wp_users.user_email from varbinary(100) to varchar(100)
13. Changed type of wp_users.user_url from varbinary(100) to varchar(100)
14. Changed type of wp_users.display_name from varbinary(250) to varchar(250)
15. Added index wp_users UNIQUE KEY user_login (user_login)
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
INSERT INTO bb_posts (forum_id, topic_id, poster_id, post_text, post_time, poster_ip, post_status, post_position) VALUES (‘1’, ‘1’, ‘1’, ‘
First Post! w00t.
‘,’2007-05-10 15:35:23’, ‘192.168.2.4’, ‘0’, 1)
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
SELECT post_id, poster_id FROM bb_posts WHERE topic_id = 1 AND post_status = 0 ORDER BY post_time
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
SELECT * FROM bb_posts WHERE post_id = 0
Finished!
I am doing everything to the letter and cannot see what I’m doing wrong…..
The only things I change to install is the directory titles from:
wordpress to ‘journal’
and
bbpress to ‘message_board’
Help would be greatly appreciated. As its driving me mental. All of this just so I can have people sign in to both wordpress and bbpress at the same time.
Thanks
Being both a web nerd and Physics student, I decided it was time for BBpress to meet up with MathML.
Here’s the steps I took to get it crankin’:
- Made a copy of the default ‘kakumei’ template, then renamed the folder ‘physics’, my new template name. I then put a copy of ASCIImath.js in there. This does all the hard work.
- Changed the physics/header.php from:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php bb_language_attributes( '1.1' ); ?>>to:
<?xml version='1.0' encoding='iso-8859-1'?>
<?xml-stylesheet type="text/xsl" href="http://www.w3.org/Math/XSL/mathml.xsl"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg-flat.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en"
xmlns:pref="http://www.w3.org/2002/Math/preference"
pref:renderer="css">It’d probably still work if you didn’t bother with this step, but seeing as BBpress is making XML we may as well.
- Added
<script type="text/javascript" src="<?php echo bb_path_to_url( dirname(__FILE__) . '/ASCIIMathML.js'); ?>">
to physics/header.php – this loads the ASCIIMathML.js javascript and does a majority of the MathML magic. - Opened bb-includes/formattingfunctions.php and edited this:
function code_trick( $text ) {
$text = str_replace(array("rn", "r"), "n", $text);
// $text = preg_replace("|<code>(.*?)</code>|e", "'<code>' . encodeit('$1') . '</code>'", $text);
// $text = preg_replace("|n<code>(.*?)</code>|se", "'<pre><code>' . encodeit('$1') . '</code></pre>'", $text);
return $text;
}To turn off the backtick code replacement – this is what ASCIIMath.js does!
That was it. I’ll zip it all up then post it up here. Ideally, it’d be better to not comment out any of the bb-include/ files – if anyone has any suggestions, let me know.
Topic: Plugin: bb-Scripture-Links
Version 1.0
This plugin automatically turns scripture references into links that will take the visitor to BibleGateway.com, where they can view the verse(s). The administrator can set the default version to one of more than a dozen available versions, including ESV, NIV, KJV, NASB, The Message, and so on.
The links are created dynamically each time a topic is loaded, so the actual text of the post is left alone. This is nice because it allows you to disable/delete the plugin without having to go back through and edit your posts to remove the extra markup.
This plugin is ideal for forums that are religious/spiritual in nature, as it will save your users a lot of time from having to hard-code links to passages they reference in their posts.
This plugin is almost entirely based on a similar WordPress plugin that does the same thing to WP posts. You can view the WP plugin here:
http://dev.wp-plugins.org/wiki/Scripturizer
You can read more about the plugin, or download the latest version of bb-Scripture-Links, here:
http://blog.wittmania.com/bb-scripture-links
You can see a working demo here: