Cypher
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Yahoo php adminI am a man actually, but glad you got it fixed. 🙂
Regards
Forum: Themes and Templates
In reply to: Rin Sidebar Help Please!Please do not repost the same question multiple times, people will get around to replying. Be patient.
You should be able to add the necessary images to your sidebar.php file. Check out the style.css file for the H2 tag that is surrounding the current Title of each box.
Regards
Forum: Installing WordPress
In reply to: Fix meThe about page is indeed a “page”. You can call the header/footer/sidebar by creating a template called about.php in your /wp-content/themes/<your-current-theme> directory which makes calls to get_header, get_sidebar, and get_footer.
My current about.php looks like this:
<?php
/*
Template Name: About
*/
?><?php get_header(); ?>
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<h2 class="pagetitle">About Me</h2><dl>
<dt>Author:</dt>
<dd><?php the_author(); ?></dd>
<dt>Bio:</dt>
<dd><?php the_author_description(); ?></dd>
</dl>
<?php endwhile; else: ?><?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
</div>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>
Regards
Forum: Plugins
In reply to: save favorite “article” plugin?This is indeed a quick way of bookmarking a site, but no better than having visitors hitting the CTRL-D or CTRL-B on a particular page on your website.
I was thinking more along the lines of a full fledged “marking” tool integrated into WP. 🙂
Regards
Forum: Plugins
In reply to: save favorite “article” plugin?Intriguing idea for a plugin. I will play around with it to see what I can come up with.
No timeframe though, as I’ll be on vacation for the latter part of this month.
Regards
Forum: Installing WordPress
In reply to: Comment hijack…help!I use SK2 on my site and I don’t believe I’ve ever had any commenter redirected to any site other than my own. Check out the comments related files (comment.php, comments-popup.php) and see if you find anything interesting in there.
Regards
Forum: Plugins
In reply to: Gravatar Plugin No ResultYou provide a default gravatar for everyone to use as a “fall-back” option. Basically you send a query for a given email address to the gravatar.com site, if it has a gravatar associated with that email address, it will be returned to you, otherwise it will use the default gravatar you would have given as part of your query.
The gravatar query is something along the lines of:
http://www.gravatar.com/avatar.php? gravatar_id=279aa12c3326f87c460aa4f31d18a065
&rating=R
&size=40
&default=http://www.somesite.com/someimage.jpg
&border=FF0000
This is all on one line of course. 🙂 But, anyways, the “default” portion of the URL tells gravatar.com to return that image if it can’t find a valid gravatar.
So in your example, if person “X” didn’t have a gravatar, you would display the default gravatar for them. The moment they get a gravatar, it will be automatically returned from gravatar.com without you having to do anything.
I hope I make sense. 😉
Regards
Forum: Fixing WordPress
In reply to: restarting post id numberingPost ID’s have no significance beyond uniquely identifying a single entry in the database. It has no relevance beyond that, if you enable permalinks on your site, you won’t even see the ID’s so it not worth starting over or trying to change it manually.
Regards
Forum: Fixing WordPress
In reply to: How to edit html in the “frontpage”WordPress is a PHP program that generates XHTML dynamically each time a visitor comes to your site.
No static HTML/XHTML code is stored in files or databases, the content is generated each time.
Where exactly do you want to add this snippet of code? If the sidebar, then edit /wp-content/themes/<your-theme-name>/sidebar.php and add the code there.
Regards
Forum: Fixing WordPress
In reply to: Updating a Fantastico InstallationI believe the newer versions of WordPress have be manually added to Fantastico as it is slightly tweaked before installation. The folks are Bluehost may just not have gotten around to doing this yet.
That being said, with all the issues that are currently being discussed on the forums in regards to 1.5.1.3, you should probably just upgrade up to 1.5.1.2 and wait till the next release before upgrading again.
If you do upgrade your installation manually and Bluehost eventually updates Fantastico, it will tell you that your installation is out of date (even though it’s not) and if you choose to update the installation, it will blow away any changes/modifications you’ve made.
All that being said, Fantasitico is nice is getting software installed, but it assumes that you are not going to modify the software in any way through the revisions.
Regards
Forum: Installing WordPress
In reply to: How long does upgrade take?The time it takes to run the upgrade.php script should be no more than 30 seconds. In most cases, if everything worked properly, it returns almost immediately.
If it’s been running for 5 minutes or so, it’s probably stuck in some loop somewhere..
Regards
Forum: Themes and Templates
In reply to: WP Themes – Charge? No-charge?I believe I had seen a site that does sell templates, but I believe they will also customize it for your specific needs.
Most templates are created and distributed as-is and must be modified to suit the new users’ taste.
I don’t believe there is a lot of money to be made in making templates and attempting to sell it as so MANY people give out free templates.
Regards
Forum: Themes and Templates
In reply to: Page permalinksHere are my page rules:
RewriteRule ^(contact-me)(/[0-9]+)?/?$ /index.php?pagename=$1&page=$2 [QSA,L]
RewriteRule ^(weighted-words)(/[0-9]+)?/?$ /index.php?pagename=$1&page=$2 [QSA,L]
RewriteRule ^(about)(/[0-9]+)?/?$ /index.php?pagename=$1&page=$2 [QSA,L]
RewriteRule ^(archives)(/[0-9]+)?/?$ /index.php?pagename=$1&page=$2 [QSA,L]
RewriteRule ^(plugins)(/[0-9]+)?/?$ /index.php?pagename=$1&page=$2 [QSA,L]Regards
Forum: Fixing WordPress
In reply to: Archive & permalinksPlease check on the file “.htaccess” in the folder where you main WordPress is installed and ensure that there are no remarks to /newtest/ in there. The permalinks are simply redirected to a specific index.php file with certain options.
If there are indeed references to /newtest/. Then first, make a copy of the .htaccess file, then delete it and re-create it through the Options->Permalinks section in Administartion and check on the file again to ensure it looks OK.
Regards
Forum: Themes and Templates
In reply to: Page permalinksI use dashes in my page permalinks and they work fine. I haven’t tried underscores though.
Regards