Austin Matzko
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: 301 Redirect from old blog softwareYou need a leading slash:
Redirect 301 /default.asp?Display=1 http://www.DomainName.com/blog/2008/01/preparing-for-your-first-child/Forum: Installing WordPress
In reply to: Missing RSS FeedIt’s right here.
I think you want the “pretty” permalinks. You can read about how to use them here.
Forum: Fixing WordPress
In reply to: Permalink Problem I need Urgent Help!It sounds like you have not created a
.htaccessfile.Forum: Installing WordPress
In reply to: Issue with New InstallThat’s strange. Did you set the
WP_SITEURLorWP_HOMEconstants in yourwp-config.phpfile? (that would be unusual).Forum: Your WordPress
In reply to: The IrvinsWhen you’re logged in to the admin area, is “Blog Title” blank under Settings > General?
If not, then look at the
header.phptemplate file for your theme. The line starting with<title>should look basically like this:<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>(the
wp_title()part is what might be missing)Forum: Fixing WordPress
In reply to: Can’t navigate to anything… 404 Error – Not FoundIt sounds like permalinks were not properly set up; in particular, it sounds like you’re missing the
.htaccessfile.Forum: Fixing WordPress
In reply to: wp_tag_cloud() function returns null array though I have many tagsThere are no binary libraries in WordPress.
wp_tag_cloudis defined inwp-includes/category-template.php.Do you have any other noticeable tag problems—can you see them in the tags menu, and do they show a post count? Are you using any plugins that could be altering the output of
wp_tag_cloud()?Forum: Plugins
In reply to: Need Capitol Letters in PermalinkYes, WordPress should just ignore capitalization differences in a permalink, so your existing links should be just fine.
Getting it to generate mixed-case letters in a permalink would be a little trickier.
Forum: Themes and Templates
In reply to: CATEGORIES linkPossibly
archive.phpForum: Fixing WordPress
In reply to: $wpdb->posts fails to insertHave you declared $wpdb as a global variable? If not, or you’re not using it within the scope of WordPress’s global variables, then that would explain why wp_posts is missing.
If you are creating these queries within WordPress, then you are probably better off not making MySQL queries directly but instead using WP’s post API, such as
wp_insert_post().Forum: Plugins
In reply to: How to execute a function after user has logged in?I think I would use the
check_passwordfilter, which is used in thewp_check_password()function right after a password has been checked and is passed the user’s ID as well as whether the password check succeeded. Look for it inwp-includes/pluggable.phpForum: Plugins
In reply to: Jerome’s Keywords: Not working in 2.7?WordPress has had built-in tags (keywords) since version 2.3, so plugins like Jerome’s have not been necessary for a while. Fortunately, under “Import” you can import Jerome’s keywords as tags.
Forum: Fixing WordPress
In reply to: Custom database entry through formWhat you describe is basically how WordPress works: admins or authors enter in data (blog posts), it gets stored in a database, and visitors can use the search feature to search it. You can also also assign an indefinite number of custom fields to each post (they’re actually even called “Custom Fields” and located below the post composition textarea).
So you’re in luck!
Forum: Themes and Templates
In reply to: Problem with certain themes and flashThis happens sometimes when the template shows excerpts of the posts rather than the full text of the posts. To change excerpts to full text, look for
the_excerpt()in your theme’shome.phporcategory.phptemplate files, and change it tothe_content().You can read more about
the_excerpt()andthe_content().Forum: Themes and Templates
In reply to: CATEGORIES linkThat’s because on the category pages it’s showing the excerpts of the posts, not the full text.
You can probably change this by editing you theme’s
category.phptemplate file and changingthe_content()tothe_excerpt().