potter_system
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: WP Beta-1 releasedPlug ins might not work right now. The development team has done their best try for backward compatibility, but sometimes things doesn’t go well always.
I’ve tested the plug in, and I could download the file (FYI, I’m using Apache 2 and MySQL 4.1.11 on Windows)
Forum: Fixing WordPress
In reply to: Changing Permalinks without showing 404s on previous structureGo to the file editor in WordPress, copy your
.htaccessto a file in your computer and save it.After that, go to Permalinks tab in Options, and change the permalink structure (and save it). At last, paste in your new .htaccess file the old one you saved in your computer.
If you still having problems, or want to ask something more; do it π
Forum: Fixing WordPress
In reply to: Setting a redirection from old Blog to new BlogYou can use the
metatag (inside head section) into a blank page, or change the.htaccessin your old host -if you’re using Apache Web serverExample of both:
Meta tag:
<meta http-equiv=”Refresh” content=”*time*;url=*your URL*/”>.htaccess: (if you’re using Apache as Web Server)
RewriteCond %{HTTP_HOST} ^www.*your domain*.com$ [NC]
RewriteRule ^(.*)$ http://www.*your new domain*.com/$1 [R=301,L]Example taken from mod rewrite cheat sheet
Forum: Themes and Templates
In reply to: Creation of new page CSS questionIn the style.css file, look at
.entrytext img {
background-color: #ffffff;
border: 1px solid #dddddd;
/*-moz-border-radius:5px;*/
padding: 4px;
max-width: 392px;
}Comment the first two lines (
background-colorandborder) there.For edit your CSS, log in to your WP admin panel, go to Presentation->Themes Editor
Forum: Fixing WordPress
In reply to: recovering index.php?I guess you wrote
index.php. Maybe you can download WordPress files again, and upload onlyindex.phpfile to your server in the folder usually was that file (if you are using WordPress 1.5 or over, and you’re using a WordPress theme too).I think that should be enough π
Forum: Plugins
In reply to: submit articleI don’t know something like a plug-in for that, but you can let users create accounts setting their level to 1.
Read this Codex article and ask here again if need more help π
Forum: Fixing WordPress
In reply to: xmlrpc.php | Email BloggingWordPress has a file called
wp-mail.phpfor do that. Check the Codex if you want to read more.Also, there are some plug ins that improve the Blog by E-Mail default action, such as Postie
Forum: Themes and Templates
In reply to: Site displays horribly wrong in IEI saw your site, and there’s not many differences between Firefox and Internet Explorer (6), just the fonts a bit bigger in IE
Check your XHTML for avoid problems (some errors were found). You also can use this Firefox Extension for check problems in source code, or you can use the tools included in software such as Dreamweaver
Forum: Fixing WordPress
In reply to: WP and Bloglines.comBloglines reads feeds according to people with suscriptions on each one. The more people a feed has, the more frequent the feed is reloaded.
First, check if your feed really shows the lastest posts. If you are not getting your newest posts even when your feed works OK, you have to talk with Bloglines people. The service goes crazy sometimes π
Forum: Fixing WordPress
In reply to: posting tags that say “Posted at [time] by [author]”Ooopa:
I guess you’re using Kubrick, the default WordPress theme.For add that data, use the_author and the_date tags.
If you are not clear enough, please post again π
Forum: Requests and Feedback
In reply to: FLashYes, you can!
You have to use the HTML tags
objectorembedExample:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="width-of-your-movie" height="height-of-your-movie">
<param name="movie" value="link.to.your.swf">
<param name="quality" value="high">
<embed src="link.to.your.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="width-of-your-movie" height="height-of-your-movie" ></embed>
</object>
But please, the next time, post in the correct forum (in this case, the “How-To and Troubleshooting” forum