24th June 2007, 01:39 am
I just changed my hosting service to GoDaddy. I hope everything works normally. I was using their services for a while and I was content, so I decided to move my blog to their servers. I tried to move everything I needed to my new server.
- I uploaded newest version of wordpress, created a new database and configured it on the temporary page.
- I copied the plug-ins, themes, and some other folders to my new server.
- I backed up the previous database and restored to the new server. This option works only if you are going to use the same domain name.
- Than I changed my domain name name servers to godaddy name servers
- After 2 hours, the site was up and running on the new server with a little problem. Permalinks was not working.
This was because of Godaddy 404 page behavior. To make it work
- Go to Hosting Control Panel.
- Click to Settings-> 404 Error Behavior
- Instead of default Default Godaddy.com’s 404 page, select Make my 404 Page my Home Page.
Finally deactivate all the plugins and enable the one you need to make sure that every plug-in you use initialize correctly.
14th October 2006, 05:24 am
As you may notice I updated my blog theme to scrollable boxes to make the navigation easier. You might still go to the individual page for viewing. You can do this with CSS’ overflow property.You also have to give the width and height, so the browser can understand where to put the scrolls. To make scrollbars you need to set overflow property to “scroll”.
.box
{
width:445px;
height:250px;
overflow: scroll;
}
There is another overflow code “auto”, this makes scrolls if needed, and leaves it if the contents fits to the div. I haven’t chosen that because I wanted to have symmetry.
16th July 2006, 05:49 pm
Firefox 2.0 Beta 1 supports a new feature called microsummaries . It is a kind of smart bookmark feature added to firefox.
However because firefox 2 is beta, I think they don’t support dynamic files. What it looks for an xml file is the extension xml. As a result it can’t use for the dynamic results as php for our case. I hope that this will be solved on the final product, I just mailed mozilla support team for this issue. Maybe this is by design, but it should support dynamic xml files.
Issues
It’s funny I know, but this plugin is not working
This is because firefox want static xml file. I made this plugin without knowing that, as a result waiting for them to support it.
Installation
To install it. Extract the generator file (microsummary-generator.php) to your plugin folder. And the xml file (microsummary.php) to your blog’s root folder. Then add MicroSummaryBookmark() function to your theme file. Actually this provides the link to be put on your page. So you can put this file wherever you want to see in your page.
Screenshots

Download
Downloads: 624 File Name: microsummary.zip
.
9th July 2006, 04:56 pm
I have the same localization problem with other guys that run binary blue theme. For details, you can read the post about Binary Blue Localization
I try and test from my home computer and the localization works perfect. However my server somehow doesn’t let me to do it. I tried every combination of the naming for the WPLANG and for the PO filename. My site was still displaying in german. So I decided to write a simple utility to convert the main files to the localized files. After 2 hours of hard coding I successed with localization using the PO text file.
Here is the tool to localize binary blue to your language using the PO file.
Downloads: 615 File Name: po.zip
.
To use the program you need to have .Net Framework 2.0 installed. Also you need to download the desired PO file and the theme itself. After that you can run the program to rewrite the files for you.
I don’t know if anybody is interested with the source code, if you do please let me know.
How to use it
- Run the program

-
Select folders desired, destination folder should be empty!

- Click Start, and you are done. Copy the files to the default themes location in the web server
8th July 2006, 07:00 pm
Meta tags are the hidden info of your page. Most of the search engines use this info to crawl your page. You can view these fields from your page source between head tags. Wordpress does not have a configuration tool for meta tags. I wanted my meta tags to be configurable,so I made this plug in. You don’t have to edit each themes header.php file anymore. This plug in also sets the meta data details dynamically based on your post.
Installation
Just upload the file to wp-content/plugins directory, than configure it on the options page using Meta Tags tab. Enter your desired information and meta tags are inserted on every page.
Screenshots

Download
Downloads: 1336 File Name: meta-tags.zip
.
Change Log
Version 0.1 : It allows you to customize two fields of the meta-tag, probably the most popular one. These fields are Description and Keywords. These are mostly used by search engines.