WordPress 3.0 ?Thelonious? has been released. You can easily upgrade from your dashboard by going to Tools > Upgrade or from the update message at the top of the dashboard.
Author Archive
Upgrading WordPress MU 2.9.2 to WordPress 3.0
Author: webinfiniteJun 18
For those wanting to upgrade to WP 3.0, check out this tutorial from Pete Mall at Developer’s Mind
http://developersmind.com/2010/06/17/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0/
Margin Bug in IE 6
Author: webinfiniteMay 21
If you have a floated element such as a div and you place margin-right or margin-left on that element, Internet Explorer 6.0 will double that margin value, causing errors in your html layout. To fix this simply add display:inline; to your floating element.? That should fix the issue.
Dropbox is awesome
Author: webinfiniteJan 24
If you haven’t gotten Dropbox, get it now. Dropbox is a backup tool that lets you sync your files between multiple computers. You simply install the software on all computers you want to sync your files on. Then simply drag and drop your files into a folder that Dropbox software creates on your desktop and voila the files are now also on your other computers. No more need for a usb stick.
Need another reason to get it? Consider this situation, all you computers crash (days, months, years after installing Dropbox) and you loose all your work, all you have to do is download Dropbox again on your new operating system and the files are there again just like before. Visit Dropbox here and get 2GB free plus bonus 250mb for total of 2.25GB free.
Get a sense of safety by using one of my new favorites programs, Dropbox.
WordPress and Google Maps
Author: webinfiniteJan 4
Are you having issues implementing your Google map API into WordPress?
Problem
Wordpress inserts <p> tags to every line and therefore your JavaScript does not execute the way it should.
Solution(kind of)
Insert <?php remove_filter (‘the_content’, ‘wpautop’); ?>? at the beginning of <?php the_content(); ?> of your template file. This will remove <p> tags on every page of your blog. This solution is not great however your Google Map API JavaScript will work.
Best Solution
Download the PHP Execution plugin and install it in the plugins folder. This plugin allows you to? execute php code in your posts/pages. Once you have installed this plugin, go to your post/page and insert <?php remove_filter (‘the_content’, ‘wpautop’); ?> at the beginning or anywhere before the map JavaScript code. Then insert your Google maps API JavaScript. Your code should work as it did on a regular html page without affecting the format on other pages of your blog.
WordPress mu plugins and themes
Author: webinfiniteDec 4
If you’ve been searching online for a wordprss mu themes and plugin, I am sure you have realized that there aren’t many sites that offer good content. I having been doing extensive searching while I build a Intranet using WordPress Mu and I have come across a few sites that have helped me.
Feel free to send in more sites and I will add them to this list.
WordPress Mu for Intranet
Author: webinfiniteOct 25
I have successfully implemented wordpress blogs on our new Intranet system. Recently a teacher brought WordPress Mu to my attention. We run a windows system with php running on IIS.? I know that WPMU will not run on IIS right out of the box on a IIS system because it requires url rewriting. I have found a fix for this however I am having problems installing it still. I successfully manged to install this WPMU on a apache server with php and mysql.
I will be testing in the upcoming weeks to see how it performs. I will need to migrate all content from the current intranet in order to keep the migration smooth. With the current Intranet, I find it difficult to administrate all blogs. It seems with WPMU, the task of doing that becomes significantly simple.
I will update more as I get more into it.
ASP.Net – Add a default value to a binded dropdown list
Author: webinfiniteJul 13
Hello, today you will learn how to add a default value such as “select a value” to the top of your bound dropdown list in vb.net. I am not going to show you how to bind your dropdown list, you can do that by searching this in google if you do not know how to do this.
After your dropdown list has been bound, you should use the following code after you close your connection to the database.
Dim Item As ListItem = New ListItem
Item.Text = “select a value”
Item.Value = “0″
Item.Selected = True
BoundDropDownList.Items.Insert(0, Item)
Hope this helps.
HTML Lists
Author: webinfiniteJul 9
So you want to learn how to create HTML Lists? That’s why you are here right?
Here is a list of HTML list tags you can use.
| <ol> | Defines an ordered list |
| <ul> | Defines an unordered list |
| <li> | Defines a list item |
| <dl> | Defines a definition list |
| <dt> | Defines a term (an item) in a definition list |
| <dd> | Defines a description of a term in a definition list |
| <dir> | Deprecated. Use <ul> instead |
| <menu> | Deprecated. Use <ul> instead |
Here is an example of an unordered list.
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
<ul>
<li>Hockey</li>
<li>Football</li>
</ul>
Result
- Hockey
- Football
<ol>
<li>Hockey</li>
<li>Football</li>
</ol>
Result
- Hockey
- Football
Experiment with the other tags to see what you get. Good luck.
VB.net: Capitalize first character in each word.
Author: webinfiniteMay 10
Dim strHockey As String = “vancouver canucks”
strHOckey = StrConv(strHockey, VbStrConv.ProperCase)
MsgBox(srtHockey)
Output will be Vancouver Canucks