Posts Tagged ‘wordpress’

Wordpress.tv

February 8th, 2009

I just finished watching a couple of videos on Wordpress.tv

Take a look at it, it’s full of informative and cool stuff about wordpress. I love the website interface as well.

Enjoy.

…and by the way they made the Wordpress Video SolutionFramework completely open source (coding skills required! that’s not a plugin!)

Wordpress 2.7 is out and it’s simply wonderful

December 12th, 2008

Go get the latest Wordpress release

The following is taken directly from the official statement.

[...] Nearly every task you do on your blog will take fewer clicks and be faster in 2.7 than it did in a previous version.
[...] new features subtly sprinkled through the new interface: the new dashboard that you can arrange with drag and drop to put the things most important to you on top, QuickPress, comment threading, paging, and the ability to reply to comments from your dashboard, the ability to install any plugin directly from WordPress.org with a single click, and sticky posts.
[...] now WordPress includes a built-in upgrade that will automatically notify you of new releases, and when you’re ready it will download them, install them, and upgrade your blog with a single click.

I found out there is also a Google Gears support so you can use your blog offline or just speed the things up while surfing the backend without always sending requests to the server (if I got it right).

This is a really stunning release and all my plugins seems to work just fine. Oh btw, I’ll take time during this Christmas to finish my Wordpress Theme. Never had the will to complete it, damn me!

What’s going on with my wordpress theme?

January 13th, 2008

I’ve changed wordpress theme. Right now I’m using Sandbox 1.2 which is a semantically rich and meaningful theme.

The Sandbox is a theme for themers. It has the ability to be easily skinned, so beginners will feel comfortable styling it since they only need to know CSS. More experienced designers will drool at the rich semantic markup and profusion of classes, dynamically generated by a few functions.

I’ve also downloaded the Blueprint CSS Framework and put the folder inside the Sandbox theme folder.

So what?
I’m going to create my own theme step by step, day by day. Adding, moving, customizing stuff and so on… I really don’t have a clear idea in my mind, right now, but things will be sorted out as I move on editing the layout of this site.

Keeping an eye on the “100 Excellent Free Wordpress Themes” post by Smashing Magazine, I’ll start writing down the features I want/need and the overall style I want to give to my theme.

I still don’t know if I’m going to release it to the public or not because probably I’ll keep using it on this site to get that “personal identity” on the web.

Permanent Redirect (301) in plain PHP

October 30th, 2007

Three simple lines made it


// Permanent redirection
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.flipthedolphin.com/");
exit();
?>

I just copied and pasted the above lines of code inside an empty file and renamed it to index.php, then putting it inside my /wordpress/ folder made the trick: no more 404 errors if someone visit www.flipthedolphin.com/wordpress/.

I found an interesting way to make redirects in ASP/VBscript, Javascript, ColdFusion and so on. Interesting stuff if you’re receiving many 404 from visitors that did not update their bookmarks (or if you’re losing readers because you changed the wordpress/feeds folder). Here it is: Permanent Redirect with HTTP 301.

Switched hosting provider, please notify on any error

October 26th, 2007

I managed to switch to another hosting provider without going offline for a single minute. This is zero downtime but there may be minor glitches all over the site.

Let me show you why:

  • I exported the whole old wordpress 2.2 database in XML format and then reimported it in wordpress 2.3. Had to delete the categories and fix the database with a plugin before doing so as the resulting import was incomplete. So any site linking to a dead category will receive a 404 error page. Sorry but had to clean this blog up.
  • I changed the wordpress folder on the server from /wordpress/ to simply /wordpress/ and set up a permanent redirect (301) for such folders via cPanel
  • I created hotlinking protection for images, css and javascript files via the htaccess code generator and put it inside my .htaccess manually. I let feedburner take my images but I’m really not that sure it will work… notify me if you don’t see images in feeds
  • I tested the feeds and upgraded to feedburner feedsmith 2.3
  • Still have to fine tune the feedflare code since it’s not displaying correctly
  • The robots meta plugin does not work at all… will have to find a way to fix it since it’s a really useful plugin. The re-activation method did not make it

So now I have this brand new blog, cleaned up and with bandwidth protections on. I think I’ll also benefits from canonical urls but I have to admit that I don’t know how to use them… do I have to modify my .htacess file manually or does wordpress do the magic?

Think I’ll fix things up in the next weeks.