Viewing Chinese Japanese Korean Webpages when using Windows

Since I have installed the global translator plugin I want to be able to view the chinese entries rendered it would normally meant to be seen. To do this I need to enable the rendering of the character set.  This is my webpage where I note the various things I find.  No working solution yet! 

Viewing Chinese Webpages when using OS= Windows with Windows Explorer

Both of the major browsers can support Chinese without any other programs. All you need is the right font, and there are many good free fonts you can download. The best method is to download Microsoft's language packs and input methods for Simplified and Traditional Chinese.

Microsoft Global Input Method Editors (IMEs)  – This pack is "free" if you have a qualifying microsoft office product. 

Additional information at  Creating Chinese Web Pages

WordPress WP-Latex Plugin for rendering Mathematics

I found another math rendering plugin refered to here: http://www.illigal.uiuc.edu/web/kumara/2007/04/10/latex-math-plugin-for-wordpress/

It is based on LaTeX.

Note To Self:  Kumara Sastry  appears to be an interesting an talented person.  He studies in the area of genetic algorithms.  An idea I have is to study talented people and make a blog and the subsequently a company based around these people. 

Easy LaTeX – author interesting blog to punch around also

How to write a wordpress plugin

I will be summarizing for myself on this page how to write a WordPress plugin.

My initial search on Google

WordPress PlugIn Skeleton Generator

Fun with Plugins makes some assumptions about file names and paths to resources.

It is assumes that your plugin file is located at: YOURBLOG/wp-content/plugins/wp_emarket/wp_emarket.php

It is assumes that your external Javascript file is located at: YOURBLOG/wp-content/plugins/wp_emarket/js/script.js

A Sample functioning Plugin that appears very simple

 Write your own plugin for Wordpress

A step by step for producing plugins

WordPress User Geo Location by IP Address Map Generation

http://blog.vimagic.de/ip-city-cluster-wordpress-plugin/

This plugin requires a statistics plugin to remember all the IP addresses.  The plugin maps the geo locations associated with this.

  1. Need to have a statistics plugin that remembers all the user IP addresses.   During configuration of the plugin you specify the database table and field name.   See screen shot below.
  2. The MaxMinds geo ip data base is here: http://www.maxmind.com/app/geolitecity   You can import either binary or CSV list to your database.  The binary is said to be much faster compared with CSV  which may take up to a few seconds. 
  3. For #2 I need to convert to SQL because my ISP does not allow CSV lists to be imported. ( at one time they did )

phpBB php Bulletin Board integration into WordPress

I am researching the integration of phpBB into Wordpress.  I will put the results of my research here as time goes on.

Wp2BB

     Wp2BB Plugin Home Page   – Wp2BB in the Wordpress plugin directory  – The homepage has phpBB set up very well stylistically – It creates a forum topic automatically for every entry in your blog if you want. 

Configuration of the plugin

You have to install your phpBB separately.  Appears that it does not integrate USER / PASSWORD authentication. What that means is to log into the blog you have one user / password pair and yet another pair for the bulletin board software. 

Wp-United

 Wp-United Home Page   this site has alot of examples of its usage in well integrated artful sites. Including this one: GardeningZone.org  

Appears that the USER / PASSWORD integration problem was solved in this case.  I have not tested this but did read on their site that it is integrated.

Forum discussion of its usage

BBPress

BBPress is not phpBB. It is by the WordPress crew. For this reason I suspect it integrates more easily.

bbPress Integration – This plugin gives the default WP role to users who registered through approved bbPress installations. It also populates things like usernicename and displayname as necessary.

Notes on bbpress installation:

I found that in spite of having the most up to date version of WordPress I needed to add the following lines to my wp-config.php file

define('AUTH_KEY', 'KeyValue1');                    
define('SECURE_AUTH_KEY', 'KeyValue2');
define('LOGGED_IN_KEY', 'KeyValue3');
   AUTH_KEY, SECURE_AUTH_KEY, LOGGED_IN_KEY explanation here  HOWTO: Set up secret keys in WordPress 2.6
define('SECRET_KEY', 'KeyValue4');
    Secret Key Explanation here

The respective key values are long strings of random characters.

 Markdown for WordPress and bbPress – Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format.

punBB Latest Topics Widget

Creative useful ideas for sellers names on ebay

One of the funniest things I ever saw on ebay was the name of the user.   They chose the following name

      AuctionOver

What is so funny about this is that when you first saw it you thought oh damnit….I missed the bidding.  Now this only worked for about 1/2 a second on me but anyone who did not look closely would just keeping clicking and skip bidding. Thus this humorous user would get better prices on that which he bought.

WP Classifieds Plugin Installation errors – Invalid argument supplied for foreach() in /wp-includes/functions.php on line 1052

I tried installing the wp-classifieds plugin.  When I did I received the following error message:

   Invalid argument supplied for foreach() in …..   /wp-includes/functions.php on line 1052

Where the …. continuation is the first part of my URL which will differ from yours.  When I de-installed this plug in my top page wordpress theme was messed up.  It was rendered very narrow and I still had the above error line listed twice before the page rendering.  

In order to get the theme back to normal I went into the DESIGN menu and re-selected my theme.  After that the rendering was back to normal.

I really want to try this plugin but will need the authors assistance before I can do this.  http://forgani.com/wpclassified-plugins/

WP SuperCache PlugIn for converting your MySQL DB based blog content to static content

WP Super Cache   – You can serve out static HTML pages instead of

  • running php
  • accessing database
  • running more php to form the HTML page

On shared servers you sometimes have trouble getting access to the shared MySQL server when its overloaded.  This way you can just rip the pages out.

Notes on Installation:

When I first looked at this I was worried the .htaccess file update would foul up my already existing .htaccess file through which I use candied URL's.  I tested it and it works fine.