mattread
Forum Replies Created
-
zaz, if you phpMyAdmin (usually provided by your host) follow podz’ tutorial: http://www.tamba2.org.uk/wordpress/phpmyadmin/
Forum: Installing WordPress
In reply to: T_STRING?Mariel,
define('DB_USER', 'marie2l_wp); // Your MySQL usernameyou are missing a quote there. try this:
define('DB_USER', 'marie2l_wp'); // Your MySQL usernameForum: Installing WordPress
In reply to: T_STRING?You messed something up in wp-config.php. Could be a missing ; (semi-colon) on the end of something. Or many many other things. try re doing wp-config.php from the sample, and don’t change any quotes etc..
Forum: Installing WordPress
In reply to: Which installation installed?or, I should say, you can also open up the
wp-includes/version.phpfile to see what version you have.Forum: Installing WordPress
In reply to: Which installation installed?promomom, look at rss feeds. That is load the rss feed in your browser and do view source. You will see something like
<!-- generator="wordpress/1.5.1.1" -->at the top. if it’s 1.5.1.1 then you have the latest.Forum: Installing WordPress
In reply to: Error with Functions.phpRikku, check to make sure the file
wp-includes/functions-compat.phpexists and has proper permissions, 755.Forum: Fixing WordPress
In reply to: 1.5.1 RSS issueProbably a stupid question, but… You all ran upgrade.php right?
Forum: Installing WordPress
In reply to: need some help !!!you should also try running this code. paste into some file, then browse to it in your browser. If you see ‘mysql’ listed there, then it’s a WordPress problem, if ‘mysql’ is not listed, your host doesn’t have php setup with mysql.
<?php
print_r(get_loaded_extensions());
?>Forum: Plugins
In reply to: Add Smileys to RustAsideslook for this line in the Rust Asides Code (line 21):
echo "<li>".trim($rAsides[$i])."</li>";change to:
echo "<li>".convert_smilies(trim($rAsides[$i]))."</li>";Forum: Installing WordPress
In reply to: where is wp-admin/install.php?Damn these slow fingers! 😀
Forum: Installing WordPress
In reply to: where is wp-admin/install.php?there is no
wp-admin.php. Theinstall.phpin in the/wp-admin/directory. just point your browser to it to start the install.Forum: Fixing WordPress
In reply to: Entire Blog all in one page?open up
wp.phpand change the top part of that file from:<?php
// This is an example of a very simple template
require_once('./wp-blog-header.php');
?>to this:
<?php
// This is an example of a very simple template
require_once('./wp-blog-header.php');
query_posts('posts_per_page=-1');
$wp_query->is_single = true;
?>Then browse to the
wp.phpfile.Forum: Plugins
In reply to: how to recreate db’s “nice names” for imported content?junap, if you run
upgrade.phpit will populate a lot of that data. At least that’s what I’ve heard 😉Forum: Plugins
In reply to: Exhibit install error: Call to undefined function: get_currentuserinfo()I remember having issues with
get_currentuserinfo()in early alphas. Maybe try upgrading to the latest..Forum: Plugins
In reply to: Custom Query String PluginVersion 2.2 is out which allows sorting on a per category basis. Here’s a better description of the plugin:
This plugin, only for WP 1.5, will allow you to set the number posts to show for all the different “query views� and each your categories in WordPress. You can choose how many posts or days, and what to order them by, for any of the queries and/or categories. All this easily set from an options page within the admin area.