pinoyca
Forum Replies Created
-
Forum: Plugins
In reply to: How do I detect if a user is logged in?Forum: Requests and Feedback
In reply to: Posting Error in WP 2.5Increase your PHP memory by adding a line to your wp-config.php. See http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Forum: Fixing WordPress
In reply to: Can’t upload images in 2.5Everybody is getting this error in the last few days (and weeks). I don’t know why the betatesters didn’t push this to be fixed before the release… oh well.
Forum: Fixing WordPress
In reply to: Not Getting Indexed All of a SuddenOnly Google and Yahoo knows.
I suggest you enlist yourself to Yahoo’s Site Explorer and Google’s Webmaster Tools. These two services show you how they have indexed your site.
Forum: Fixing WordPress
In reply to: How do I stop recieving email notifications?Yes… to all questions.
By the way, the correct spelling is ‘receive.’
Forum: Fixing WordPress
In reply to: Explaining SQL QueriesQuery 1. This pulls out the list of ‘terms’ (which are tags and/or categories) of the given post IDs. (See
wp_includes/taxonomy.php)Query 2. This fetches your home url (as set in “Options | General”), called by
get_bloginfo('siteurl')orget_settings('siteurl'). Everybody and their mother calls this whenever they use absolute URLs. (Seewp-includes/general-template.php)Query 3. WordPress is checking for ‘comment flood’ (see
wp-includes/comments.php) each time someone submits a comment. Blame the frequency to your friendly neighbourhood blog spammers.(No I had nothing to do with the wordpress source code!)
I hope this helps!
Forum: Fixing WordPress
In reply to: RSS link for commentsDid you paste it below
<?php the_post(); ?>?Forum: Fixing WordPress
In reply to: WordPress fails with large databasesIf the categories aren’t hierarchical … I wouldn’t.
I don’t think a website user will browse through four pages of T’s to find out you have ‘Thingamajigs’ listed. Imagine the frustration because she eventually find it under ‘Widgets’ instead?
If I’m hard against the wall … I’d create custom page, navigable with an alphabar. The webpages would look like a page from a phone book. Maximum 300 categories per page. http://en.wikipedia.org/wiki/Special:AllPages/Wordpress is a possible design.
However, if the categories are hierarchical … I would. I’d create something like http://www.thomasnet.com/browse .
This is just my 2c.
Forum: Fixing WordPress
In reply to: One install, 5-pages, 5-domainsAre these going to be five posts like p=1 to 5?
If so, then just create five URL rewrites that map
http://site3.example.com/to/blog-directory/?p=3.Forum: Fixing WordPress
In reply to: How do I remove Categories literal?Go “Presentation | Theme Editor” and edit the “Sidebar” (or sidebar.php) and look for it there.
Forum: Everything else WordPress
In reply to: Last comment aside the postI’d like to know this too. Is the
$commentsvariable available in the usualThe Loop? Or do I have to create a new query?Forum: Installing WordPress
In reply to: What file is the title on my banner in?So you mean that, in your current theme, the
header.phpfile does not have the<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>line?If it isn’t then this line is in several theme files such as Single Post, Main Index, Archive, Page Template, Search Results, etc.
Forum: Fixing WordPress
In reply to: Why won’t wordpress display imagesThe browser couldn’t resolve the location of the images. Turn off your visual editor so you can see your
imgtags and read about ‘absolute vs. relative paths‘.Come back here if you have further questions.
Forum: Fixing WordPress
In reply to: Login Error – Internal Server ErrorThe PHP script crashed while attempting to log you in.
Do other pages in your blog work?
If no, this is a PHP setup misconfiguration or PHP is conflicting with the server configuration. Ask your server guy.
If yes, then attempt to disable all themes and plugins (rename the plugins folder and your current theme’s folder) and then reinstall one by one.
Forum: Fixing WordPress
In reply to: Dashboard gives me a fatal error – over allowed memory size> What I’m unclear on is why would this happen without warning?
Software upgrades tend to do that.
> And if I keep growing and increasing the size of my website, will I have to likewise keep expanding the memory available to php.ini?
Yes. For example, you may have to repeat this if you upgrade to 2.5.
> Strangely, the public website seems to be running smoothly
Each php page has its own memory requirements. You can add
<?php echo memory_get_usage(); ?>to the admin and the themefooter.phps and you will see.