Monday, April 19, 2010

black berry chinese

How do I upgrade the OS on my device? Follow these instructions:

1. Download and install to PC the latest version of Desktop Manager from here: ( BlackBerry Operating System Downloads )

2. Download the new OS you want and install it to the PC

3. Open Desktop Manager and do a complete backup of your current device.

4. Delete the vendor.xml file located in c:\program files\common files\research in motion\apploader

5. Plug in BB and open Desktop Manager

6. Select Application Loader

7. You will be prompted to upgrade




http://www.blackberrycool.com/2010/01/12/how-to-upgrade-your-blackberry-os-software-2010-version/

http://www.blackberryfaq.com/index.php/How_do_I_upgrade_the_OS_on_my_BlackBerry%3F

***** Remember to turn pc internet off and delete vendor.xml

Sunday, April 11, 2010

traditional chinese problem with extplorer

http://chs-yoga.com/fenix/component/content/article/7-extensions/41-extplorer-cht

apply to 2.01

extplorer is file manager written by php

SQL Server remote connecting problem

Issue: can't connect to sql server,

fix:
open the port http://support.microsoft.com/kb/968872
or http://support.microsoft.com/kb/914277
enable the remote connection in the properties using management studio
enable tcp/ip in configure manager

to add user
use management studio -> security

Monday, March 1, 2010

SQL Server error

Connections to SQL Server Files (*.mdf) require SQL Server Express 2005 to function properly. Please verify the installation of the component or download from the URl: http:go.microsoft.com/fwlink/?linkID=49251.

1. Open the “Add or Remove Programs” from the control panel.

2. Select “Microsoft SQL Server 2005” or “…ServerExperss 2005” and click on the Change button

3. On the “Microsoft SQL Server 2005 Maintenance” window you will see the

SQL Server 2005 instances:

: Database Engine

4. Copy the of your database engine.

5. Cancel and get out of the “Microsoft SQL Server 2005” or “…ServerExperss 2005”

6. Close the “Add or Remove Programs” window.

Open Microsoft Visual Studio

1. Select Tools-Options-Database Tools-Data Connections

2. Enter the copied earlier into the “SQL Server Instance Name” field.

3. Click OK


OR I actually download the sql server 2005 sp3 from the website provided and install it, then ok.

After that, error still occurs:
Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance

Delete C:\Documents and Settings\USERNAME\Local Settings\Application Data\Microsoft\Microsoft SQL Server Data\SQLEXPRESS.



Saturday, September 19, 2009

"3" Australia Carrier Operator Settings

To get mobile internet
Go to settings -> Connections -> Connections
Add a new modem connection
Name the connection Three (or anything else)
Use Cellular Line (GPRS, 3G) as your modem
Access point name is "3services"
NO USERNAMES OR PASSWORDS JUST CLICK FINISH

Pocket PC:
# Connect Using : 3Services
# Internet mode: HTTP
# Use proxy: No
# Proxy address: Blank
# Port number: 8080(Default)
# Username: Blank
# Password: Blank


On Multimedia message> Multi msg centre> 3 MMS>View i've got
This is all the important info there
Title: 3 MMS
MMSC URL: mmsc.three.net.au:10021/mmsc
MMS Proxy: mmscprox.three.net.au:10021

Monday, July 27, 2009

control userpasswords2

run -> control userpasswords2 to set users in xp

Sunday, July 12, 2009

Joomla 中文search 既時有句野係上面

Warning: sprintf() [function.sprintf]: Too few arguments in xxx/libraries/joomla/methods.php on line 138


replace as follow, add @ after return

function sprintf($string)
{
$lang =& JFactory::getLanguage();
$args = func_get_args();
if (count($args) > 0) {
$args[0] = $lang->_($args[0]);
return @call_user_func_array('sprintf', $args);
}
return '';
}