Flv-Embed - .flv Player for WordPress

I tried most of the video player plugins on the WordPress list and like FLV-Embed the best because all the features work well, it’s quick to install and easy to use and the parameters can all be modified.  There’s no interface so you have to change parameters in the .php file but that’s OK with me.

Tags: | | | |

Renaming mySQL databases linked to working applications using phpMyAdmin

 
How do you rename a database linked to an existing, published php app like WordPress or OSCommerce?

  1. Back up your database.
  2. Create a new database with the new name you want in mySQL and assign a user.
  3. In phpMyAdmin go to Operations and use the "Copy database to:" option to move the structure and data to the new table by:  typing the new name in the text field, de-selecting any check boxes that are on and choosing “Go”. 
  4. Your new database should now be present in the drop down list of databases in phpMyAdmin.
  5. Back up your current app’s (WordPress or OSCommerce for example) config file.
  6. Change the information in the current config file to reflect the new database name and any username and password changes you may have made. Save with the same name.
  7.  Upload/overwrite the config file on your server in the appropriate area for your app.
  8. Check to verify that your app works with the new setup by accessing your site.
  9. Once you feel clear that everything’s hooked up and happy with the new database information you can delete your old database (and users if you created new ones.)

Tags: | | |

Nested, drop down sidebar menus

Plug-in wp-dtree creates nested, drop-down menus. See examples here.

Tags: | | | | |

Simple Tags

Simple Tags makes managing your tags infinitely easier and more straightforward. It provides a fast way to add tags to all your posts.

Tags: | | |

Best Admin Theme

SpotMilk Theme by Sunghwa Park. comes in two choices – blue or green and has an extra zip file "adminmilkmenus" that creates drop-down menus. The interface is attractive and clean and the drop down menus save a lot of time. Unfortunately it looks like the plug-in website http://www.ceprix.net has disappeared, at least for now.

Tags: | | |

Nested list styles in a WordPress sidebar

#sidebar ul li {
  list-style: disc;
  list-style-position: inside;
}

 

#sidebar ul li ul li{
 list-style: circle;
 list-style-position: inside;
}

Tags: | | | | |

The best WordPress editor

Dean’s FCKEditor For Wordpress is very stable and has it all. Add tables, images, format all of the above and more.

Tags: | | |