<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Crystal Asia&#187; Crystal Asia &#8211; Web design Beijing, Website development China, E-marketing, SEO, Hosting Asia</title>
	<atom:link href="http://www.crystal-asia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crystal-asia.com</link>
	<description>Interactive Medium</description>
	<lastBuildDate>Mon, 19 Jul 2010 08:08:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Ubuntu Server 10.04 LTS + Nginx + PHP + MySQL</title>
		<link>http://www.crystal-asia.com/ubuntu-server-10-04-lts-nginx-php-mysql/</link>
		<comments>http://www.crystal-asia.com/ubuntu-server-10-04-lts-nginx-php-mysql/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 06:08:03 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/ubuntu-server-10-04-lts-nginx-php-mysql/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[access log]]></category>
		<category><![CDATA[buffer size]]></category>
		<category><![CDATA[content length]]></category>
		<category><![CDATA[default location]]></category>
		<category><![CDATA[default server]]></category>
		<category><![CDATA[directory location]]></category>
		<category><![CDATA[htpassword]]></category>
		<category><![CDATA[location location]]></category>
		<category><![CDATA[method request]]></category>
		<category><![CDATA[path info]]></category>
		<category><![CDATA[query string]]></category>
		<category><![CDATA[request method]]></category>
		<category><![CDATA[resource hog]]></category>
		<category><![CDATA[script name]]></category>
		<category><![CDATA[size 256k]]></category>
		<category><![CDATA[split path]]></category>
		<category><![CDATA[static content]]></category>
		<category><![CDATA[string query]]></category>
		<category><![CDATA[temp file]]></category>
		<category><![CDATA[xml access]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=913</guid>
		<description><![CDATA[In a pursuit to optimise a customers server, we looked at the initial stack of software which runs the application. As it runs on a VPS and has limited resources, we decided on using Nginx &#8211; an extremely lightweight web server, instead of Apache which can be a resource hog. Below you will find my [...]]]></description>
			<content:encoded><![CDATA[<p>In a pursuit to optimise a customers server, we looked at the initial stack of software which runs the application. As it runs on a VPS and has limited resources, we decided on using Nginx &#8211; an extremely lightweight web server, instead of Apache which can be a resource hog. Below you will find my guide for installing Nginx 0.7.76, PHP 5.3, MySQL 5.1 and APC caching. Enjoy!</p>
<p><span id="more-913"></span></p>
<p>Let&#8217;s install <strong>Nginx</strong></p>
<pre class="brush: bash;"> sudo apt-get install nginx
</pre>
<p>Start your server and test:</p>
<pre class="brush: bash;">/etc/init.d/nginx start</pre>
<p>Update your nginx configuration (see later section!) <strong>/etc/nginx/sites-available/default</strong> (make a backup of the old one):</p>
<pre class="brush: bash;">
server {
listen   80 default;
server_name  localhost;

access_log  /var/log/nginx/localhost.access.log;

## Default location
location / {
root   /var/www;
index  index.php index.htm index.html;
}
## Images and static content is treated different
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
access_log        off;
expires           30d;
root /var/www;
}

## Parse all .php file in the /var/www directory
location ~ .php$ {
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass   backend;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME  /var/www$fastcgi_script_name;
include fastcgi_params;
fastcgi_param  QUERY_STRING     $query_string;
fastcgi_param  REQUEST_METHOD   $request_method;
fastcgi_param  CONTENT_TYPE     $content_type;
fastcgi_param  CONTENT_LENGTH   $content_length;
fastcgi_intercept_errors        on;
fastcgi_ignore_client_abort     off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}

## Disable viewing .htaccess &amp;amp;amp;amp;amp;amp;amp;amp; .htpassword
location ~ /\.ht {
deny  all;
}
}
upstream backend {
server 127.0.0.1:9000;
}
</pre>
<p>Visit the IP number in your web browser to make sure it&#8217;s installed ok &#8220;<strong>Welcome to nginx!</strong>&#8220;. Next, add to <strong>/etc/apt/sources.list</strong>:</p>
<pre class="brush: bash;"> deb http://ppa.launchpad.net/brianmercer/php/ubuntu lucid main
deb-src http://ppa.launchpad.net/brianmercer/php/ubuntu lucid main
</pre>
<p>then run</p>
<pre class="brush: bash;">
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8D0DC64F
sudo apt-get update
</pre>
<p>Now let&#8217;s install PHP 5.3, and the things you need. Here&#8217;s my stack:</p>
<pre class="brush: bash;">
sudo apt-get install php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-json php5-suhosin php5-common php-apc php5-dev
</pre>
<p>A few of these are replaced by php5-common &#8211; this is ok and I should update the stack at some point but it&#8217;s automatic!</p>
<p>Now we grab the PHP FPM + CGI Module:</p>
<pre class="brush: bash;">sudo apt-get install php5-fpm php5-cgi</pre>
<p>Restart Nginx + Fast CGI</p>
<pre class="brush: bash;">sudo /etc/init.d/nginx restart</pre>
<p>and you should get something like this:</p>
<pre class="brush: bash;">
ryan@localhost:~# sudo /etc/init.d/nginx restart
Restarting nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful
nginx.
</pre>
<p>Get CGI up:</p>
<pre class="brush: bash;">/etc/init.d/php5-fpm start</pre>
<p>Create an index.php in /var/www with <!--?php phpinfo(); ?--> and test your configuration. This was all working for me on Ubuntu Server amd64. Now it&#8217;s time to try and deploy an application to see how it can work :)</p>
<p>My nginx.conf file:</p>
<pre class="brush: bash;">
user www-data www-data;
worker_processes  4;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
worker_connections  1024;
# multi_accept on;
}

http {
include       /etc/nginx/mime.types;
default_type  application/octet-stream;

access_log  /var/log/nginx/access.log;

sendfile        on;
#tcp_nopush     on;

#keepalive_timeout  0;
keepalive_timeout  65;
tcp_nodelay        on;

gzip  on;
gzip_disable &quot;MSIE [1-6]\.(?!.*SV1)&quot;;
gzip_comp_level 2;
gzip_proxied any;
gzip_types      text/plain text/html text/css application/x-javascript text/xml
application/xml application/xml+rss text/javascript;

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
</pre>
<p>I installed memcache and APC (beta works with 10.04 lucid but <strong>you need libpcre installed</strong> ). Select the [no] defaults:</p>
<pre class="brush: bash;">
sudo pecl install memcache
sudo apt-get install libpcre3-dev
sudo pecl install apc-beta
</pre>
<p>Didn&#8217;t need to modify any php.ini so far, but it is in 3 locations so I&#8217;ll see how this goes :-)</p>
<p><strong>Update</strong>: Don&#8217;t forget to install <strong>postfix</strong> and configure it as an Internet Server if it was not part of your default installation. Then you can send emails&#8230;. Also, just to make sure&#8230; &#8220;ufw&#8221; the default firewall needs your attention ;)</p>
<pre class="brush: bash;">sudo apt-get install postfix</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/ubuntu-server-10-04-lts-nginx-php-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An update on Google China</title>
		<link>http://www.crystal-asia.com/an-update-on-google-china/</link>
		<comments>http://www.crystal-asia.com/an-update-on-google-china/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 13:37:27 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/an-update-on-google-china/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[cat and mouse]]></category>
		<category><![CDATA[cat and mouse game]]></category>
		<category><![CDATA[chinese government]]></category>
		<category><![CDATA[chinese law]]></category>
		<category><![CDATA[chinese users]]></category>
		<category><![CDATA[company websites]]></category>
		<category><![CDATA[david drummond]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google english]]></category>
		<category><![CDATA[googleblog]]></category>
		<category><![CDATA[government officials]]></category>
		<category><![CDATA[hong kong search]]></category>
		<category><![CDATA[hong kong search engine]]></category>
		<category><![CDATA[internet content provider]]></category>
		<category><![CDATA[mainland china]]></category>
		<category><![CDATA[ncr]]></category>
		<category><![CDATA[provider license]]></category>
		<category><![CDATA[simplified chinese]]></category>
		<category><![CDATA[tele communications]]></category>
		<category><![CDATA[www google com]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=899</guid>
		<description><![CDATA[I&#8217;m just going to quote the whole text for readers since the link is blocked in China. This is a cat and mouse game between the Chinese Government and Google in order to hold onto it&#8217;s ICP license which is a special license all websites hosted in mainland China require. There are different kinds of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just going to quote the whole text for readers since the link is blocked in China. This is a cat and mouse game between the Chinese Government and Google in order to hold onto it&#8217;s ICP license which is a special license all websites hosted in mainland China require. There are different kinds of ICP licenses including e-commerce, tele-communications and general company websites. Our website doesn&#8217;t need one as we&#8217;re hosted in Hong Kong ;) Yours can be too, just contact us ;)</p>
<p>Personally, I found the redirect annoying as I required my results from Google English mainly. A way to stop this was to set your home page to <a href="http://www.google.com/ncr">http://www.google.com/ncr</a></p>
<p>Source: <a href="http://googleblog.blogspot.com/2010/06/update-on-china.html">http://googleblog.blogspot.com/2010/06/update-on-china.html</a></p>
<address>Posted by David Drummond, SVP, Corporate Development and Chief Legal Officer</address>
<blockquote><p>Ever since we launched Google.cn, our search engine for mainland Chinese users, we have done our best to increase access to information while abiding by Chinese law. This has not always been an easy balance to strike, especially since our January announcement that we were no longer willing to censor results on Google.cn.</p>
<p>We currently automatically redirect everyone using Google.cn to <a href="http://www.google.com.hk/">Google.com.hk</a>, our Hong Kong search engine. This redirect, which offers unfiltered search in simplified Chinese, has been working well for our users and for Google. However, it’s clear from conversations we have had with Chinese government officials that they find the redirect unacceptable—and that if we continue redirecting users our Internet Content Provider license will not be renewed (it’s up for renewal on June 30). Without an ICP license, we can’t operate a commercial website like Google.cn—so Google would effectively go dark in China.</p>
<p>That’s a prospect dreaded by many of our Chinese users, who have been vocal about their desire to keep Google.cn alive. We have therefore been looking at possible alternatives, and instead of automatically redirecting all our users, we have started taking a small percentage of them to a <a href="http://www.google.cn/landing/cnexp/indexd.html">landing page on Google.cn</a> that links to <a href="http://www.google.com.hk/">Google.com.hk</a>—where users can conduct web search or continue to use Google.cn services like music and text translate, which we can provide locally without filtering. This approach ensures we stay true to our commitment not to censor our results on Google.cn and gives users access to all of our services from one page.</p>
<p>Over the next few days we’ll end the redirect entirely, taking all our Chinese users to our new landing page—and today we re-submitted our ICP license renewal application based on this approach.</p>
<p>As a company we aspire to make information available to users everywhere, including China. It’s why we have worked so hard to keep Google.cn alive, as well as to continue our research and development work in China. This new approach is consistent with our commitment not to self censor and, we believe, with local law. We are therefore hopeful that our license will be renewed on this basis so we can continue to offer our Chinese users services via Google.cn.</p></blockquote>
<p style="padding-left: 30px;">
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/an-update-on-google-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monday Madness: Top SEO Improvements</title>
		<link>http://www.crystal-asia.com/monday-madness-top-seo-improvements/</link>
		<comments>http://www.crystal-asia.com/monday-madness-top-seo-improvements/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 04:24:13 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/monday-madness-top-seo-improvements/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=862</guid>
		<description><![CDATA[SEO (&#8220;Search Engine Optimisation&#8221;) matters, I think most self resecting web developers know this. Below are some simple things you can do to improve your ranking (you might need a developer to update your website!). One thing that strikes me about this list is that it is based on the notion that it&#8217;s doing your [...]]]></description>
			<content:encoded><![CDATA[<p>SEO (&#8220;Search Engine Optimisation&#8221;) matters, I think most self resecting web developers know this. Below are some simple things you can do to improve your ranking (you might need a developer to update your website!). One thing that strikes me about this list is that it is based on the notion that it&#8217;s doing your customer or user a favor by allowing them to find you. When they are on your website, do they really need or notice all the work that has been done so they can find you? Most of these changes are transparent, but some interfere with the design of your website and the excuse of doing it &#8220;because of SEO&#8221;.</p>
<p>Not all of us agree in this philosophy as it means you&#8217;re building a website for Google instead of your target audience (although many would argue it&#8217;s for your customer THROUGH Google). So just remember, whilst SEO might be EVERYTHING in your mind, it might not matter when your website starts having content for Googles sake and not your customer.</p>
<p>So without no further adeu, <a title="Top ways to improve your SEO ranking" href="http://sixrevisions.com/web_design/improve-seo-website-design/">the top 9 ways to improve your  SEO Ranking </a>thanks to <strong>Alex Cleanthous</strong> and Six Revisions:</p>
<ol>
<li>Add a Blog</li>
<li>Add Google Analytics to every page</li>
<li>Reduce code bloat</li>
<li>Make each page unique</li>
<li>Use META description tags</li>
<li>Remove repetitive wording from the website layout</li>
<li>Add footer links to every page</li>
<li>Create a separate web page for each keyword or keyword phrase</li>
<li>Use keyword rich title tags on each page</li>
</ol>
<p>Follow the link above for some basic explanations of each and while reading, think to yourself &#8220;<em>Who is for? Google or my Customer?</em>&#8220;. Of course, some things Google needs, and a visitor is not aware of them as they&#8217;re embedded in the HTML of the page, but some things are visible to us&#8230; ;-)</p>
<p>More on SEO-101 coming soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/monday-madness-top-seo-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal welcomes new customer National Bio Energy (NBE)</title>
		<link>http://www.crystal-asia.com/crystal-welcomes-new-customer-the-national-bio-energy-nbe/</link>
		<comments>http://www.crystal-asia.com/crystal-welcomes-new-customer-the-national-bio-energy-nbe/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:12:29 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/crystal-welcomes-new-customer-the-national-bio-energy-nbe/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[1 billion]]></category>
		<category><![CDATA[bio energy]]></category>
		<category><![CDATA[biofuels]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[community forum]]></category>
		<category><![CDATA[design trends]]></category>
		<category><![CDATA[dragon]]></category>
		<category><![CDATA[dragon power]]></category>
		<category><![CDATA[energy business]]></category>
		<category><![CDATA[energy company]]></category>
		<category><![CDATA[energy market]]></category>
		<category><![CDATA[farmers]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[knowledge base]]></category>
		<category><![CDATA[latest tools]]></category>
		<category><![CDATA[subsidiaries]]></category>
		<category><![CDATA[subsidiary companies]]></category>
		<category><![CDATA[web development world]]></category>
		<category><![CDATA[yuan]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=864</guid>
		<description><![CDATA[NBE is the worlds biggest Bio-Energy company giving farmers back over 2 billion yuan for their biofuels (increasing by 1 billion every year). They set the world class standard for the bio energy business including boilers and power station construction. As a corporate sensitive with it&#8217;s global image, NBE wish for this to be reflected in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-865" title="National Bio Energy" src="http://www.crystal-asia.com/wp-content/uploads/2010/04/NBE-Logo.jpg" alt="National Bio Energy Logo" width="250" height="89" />NBE is the worlds biggest Bio-Energy company giving farmers back over 2 billion yuan for their biofuels (increasing by 1 billion every year). They set the world class standard for the bio energy business including boilers and power station construction. As a corporate sensitive with it&#8217;s global image, NBE wish for this to be reflected in their new website which places a strong emphasis on the professional blogs, community forum and a knowledge base, but with still retaining a consistency across it&#8217;s other subsidiary companies.</p>
<p>Having worked on subsidiary companies <a title="Crystal's previous customer DPCleanTech" href="http://www.crystal-asia.com/crystal-asia-launches-new-website-www-dpcleantech-com/">DPCleanTech</a> and Dragon Power (coming soon), we have gained insight into bio-energy, bio-fuels, it&#8217;s benefits, and the energy market.</p>
<p>Crystal wishes to extend this knowledge in the coming months so we can work further with NBE and other subsidiaries to further their online brands by using the latest tools from the web development world and design trends.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/crystal-welcomes-new-customer-the-national-bio-energy-nbe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal welcomes new customer British Council!</title>
		<link>http://www.crystal-asia.com/crystal-welcomes-new-customer-british-council/</link>
		<comments>http://www.crystal-asia.com/crystal-welcomes-new-customer-british-council/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 05:14:39 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/crystal-welcomes-new-customer-british-council/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[british council]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[core software]]></category>
		<category><![CDATA[decisions]]></category>
		<category><![CDATA[design aesthetics]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[internal staff]]></category>
		<category><![CDATA[open source software]]></category>
		<category><![CDATA[reliance]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[waves]]></category>
		<category><![CDATA[word documents]]></category>
		<category><![CDATA[workflows]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=852</guid>
		<description><![CDATA[Crystal would like to welcome our newest of new customers the British Council in China. Together, we will be helping improve the communication with IELTS examiners and internal staff by optimising their current workflows removing the reliance on Excel and Word documents for organisation. Using Open Source software (CakePHP) and a strong technical know-how on [...]]]></description>
			<content:encoded><![CDATA[<p>Crystal would like to welcome our newest of new customers the <a title="British Council in China" href="http://www.britishcouncil.org/china.htm">British Council in China</a>. Together, we will be helping improve the communication with IELTS examiners and internal staff by optimising their current workflows removing the reliance on Excel and Word documents for organisation.</p>
<p><img class="alignleft size-full wp-image-853" title="New customer British Council!" src="http://www.crystal-asia.com/wp-content/uploads/2010/04/British-Council-logo-home.gif" alt="British Council Logo" width="129" height="38" />Using Open Source software (<a title="CakePHP: Rapid Application Development" href="http://www.cakephp.org/">CakePHP</a>) and a strong technical know-how on petri-nets &amp; workflows, we plan to make big waves in the company. Spearheading the <a title="Web development by Crystal Asia" href="http://www.crystal-asia.com/web-development-beijing-china/">development</a>, an agile approach to developing the core software is used enabling us to be highly responsive to user feedback which will govern some important <a title="User Experience" href="http://www.crystal-asia.com/user-experience-design-and-why-its-the-most-important-part-of-your-website/">UI &amp; interface</a> decisions, as well as <a title="Design by Crystal Asia! Ta-daaa!" href="http://www.crystal-asia.com/creative-web-design-beijing/">design</a> aesthetics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/crystal-welcomes-new-customer-british-council/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset Joomla! Administrator password</title>
		<link>http://www.crystal-asia.com/reset-joomla-administrator-password/</link>
		<comments>http://www.crystal-asia.com/reset-joomla-administrator-password/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 04:04:06 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/reset-joomla-administrator-password/">crystal</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[administrator control]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[beijing]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[ftp program]]></category>
		<category><![CDATA[full web design]]></category>
		<category><![CDATA[happy customer]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[language website]]></category>
		<category><![CDATA[marketing manager]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[true crypt]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design service]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=848</guid>
		<description><![CDATA[Some of our customers in China are facing the fast employee turn over. We did provide them a full web design service including a CMS implementation. In some of the project we are using Joomla! 1.5 , a very well known CMS and especially adequate for multi-language website supporting chinese. We got a call from [...]]]></description>
			<content:encoded><![CDATA[<p>Some of our customers in China are facing the fast employee turn over. We did provide them a full web design service including a CMS implementation. In some of the project we are using<a href="http://www.joomla.org/"> Joomla! 1.5</a> , a very well known CMS and especially adequate for multi-language website supporting chinese.<span id="more-848"></span></p>
<p>We got a call from a customer having the person in charge of their website, in this case the marketing manager, leaving the company. And of course he &#8220;forgot&#8221; to give the administrator password.</p>
<p>So here is the easy way to reset Joomla! administrator password :</p>
<p>- Simply access to the hosting panel. Use your control panel file editing or use a FTP program.<br />
- Edit the file : plugins/authentication/joomla.php , and find :</p>
<blockquote><p><code>if ( $crypt == $testcrypt) {</code></p></blockquote>
<p>- Change this line by :</p>
<blockquote><p><code>if ( true /* $crypt == $testcrypt */ ) {</code></p></blockquote>
<p>- Et voila ! Now you can login with you super administrator user, without any password,  and change the password directly from the administrator control panel</p>
<p>What we have done it&#8217;s simply removing the authentication in the Php code. Of course don&#8217;t forget to change back the line to</p>
<blockquote><p><code>if ( $crypt == $testcrypt) {</code></p></blockquote>
<p>And we have another happy customer in Beijing !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/reset-joomla-administrator-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Asia welcomes new customer Ringier China!</title>
		<link>http://www.crystal-asia.com/crystal-asia-welcomes-new-customer-ringier-china/</link>
		<comments>http://www.crystal-asia.com/crystal-asia-welcomes-new-customer-ringier-china/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 01:30:14 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/crystal-asia-welcomes-new-customer-ringier-china/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[asia team]]></category>
		<category><![CDATA[beijing]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[magazines]]></category>
		<category><![CDATA[mobile platforms]]></category>
		<category><![CDATA[newspapers]]></category>
		<category><![CDATA[parents]]></category>
		<category><![CDATA[printing plants]]></category>
		<category><![CDATA[radio stations]]></category>
		<category><![CDATA[ringier]]></category>
		<category><![CDATA[shanghai]]></category>
		<category><![CDATA[swiss media]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[tv programmes]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=830</guid>
		<description><![CDATA[Crystal welcomes new customer Ringier China as a new customer, which is part of Swiss media giant Ringier: Worldwide, Ringier publishes more than 120 newspapers and magazines and produces and markets more than 20 TV programmes. The company also holds considerable stakes in television and radio stations and operates about 80 websites and mobile platforms. It has eleven [...]]]></description>
			<content:encoded><![CDATA[<p>Crystal welcomes new customer <a title="Ringier China / Pacific" href="http://www.ringierpacific.com/visitor/index.php">Ringier China</a> as a new customer, which is part of Swiss media giant <a title="Ringier" href="http://www.ringier.com/">Ringier</a>:</p>
<blockquote><p>Worldwide, <a title="Ringier" href="http://www.ringier.com/">Ringier</a> publishes more than 120 newspapers and magazines and produces and markets more than 20 TV programmes. The company also holds considerable stakes in television and radio stations and operates about 80 websites and mobile platforms. It has eleven printing plants.</p></blockquote>
<p><img class="alignleft size-full wp-image-838" title="Ringier-Logo" src="http://www.crystal-asia.com/wp-content/uploads/2010/03/Ringier-Logo.jpg" alt="Ringier-Logo" width="220" height="60" />Ringier is responsible for the Beijing publications of <a title="City Weekend" href="http://www.cityweekend.com.cn/">City Weekend</a>, Parents &amp; Kids and <a href="www.bettyskitchen.com.cn">Bettys Kitchen</a>. They are based in Beijing, Shanghai and Guangzhou. We can&#8217;t disclose the exciting work we&#8217;re doing with them just yet, so stay tuned for these developments, hitting a city near you soon!</p>
<p>The Crystal Asia Team!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/crystal-asia-welcomes-new-customer-ringier-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal to tie up with Chinese partner (Hooray?)</title>
		<link>http://www.crystal-asia.com/paypal-to-tie-up-with-chinese-partner-hooray/</link>
		<comments>http://www.crystal-asia.com/paypal-to-tie-up-with-chinese-partner-hooray/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 01:09:51 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/paypal-to-tie-up-with-chinese-partner-hooray/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[buyers and sellers]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[chinese banks]]></category>
		<category><![CDATA[chinese customers]]></category>
		<category><![CDATA[chinese market]]></category>
		<category><![CDATA[chinese partner]]></category>
		<category><![CDATA[electronic payment]]></category>
		<category><![CDATA[error codes]]></category>
		<category><![CDATA[fanfare]]></category>
		<category><![CDATA[mastercards]]></category>
		<category><![CDATA[merchants]]></category>
		<category><![CDATA[new feature]]></category>
		<category><![CDATA[payment gateway]]></category>
		<category><![CDATA[payment platform]]></category>
		<category><![CDATA[surprise]]></category>
		<category><![CDATA[visa]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=815</guid>
		<description><![CDATA[Old news to some but I have been meaning to write about it for some time&#8230;. E-commerce in China has always been tightly controlled and requires a lot of capital to get going. A lot of foreign entrepreneurs dream of the Chinese market but are stopped by this, and in turn, Chinese customers are stopped [...]]]></description>
			<content:encoded><![CDATA[<p>Old news to some but I have been meaning to write about it for some time&#8230;. E-commerce in China has always been tightly controlled and requires a lot of capital to get going. A lot of foreign entrepreneurs dream of the Chinese market but are stopped by this, and in turn, Chinese customers are stopped through buying online through foreign transfers (even most Visa and Mastercards!).</p>
<blockquote><p><em>China&#8217;s top provider of electronic payment serviceswill tie up with online payment platform PayPal, the two companies said, in a move that will let Chinese customers buy from overseas merchants.</em></p></blockquote>
<p>So it&#8217;s no surprise that <a title="http://news.yahoo.com/s/afp/20100318/tc_afp/chinausinternetbusiness" href="http://news.yahoo.com/s/afp/20100318/tc_afp/chinausinternetbusiness">this news of linking the countries</a> is good news (although it&#8217;s interesting to read 2 comments, one about Googles departure). Under what rules we don&#8217;t know, for sure it won&#8217;t be as easy as it sounds, but it will supply an avenue through the PayPal API which is 10 times better and more advanced than all the Chinese banks and payment gateway API&#8217;s put together (error codes anyone?).</p>
<p>We have been implementing PayPal&#8217;s chained payments on a current customer, along with authorised payments, and like the new feature. Perhaps this can be part of the whole fanfare to allow some protection for buyers and sellers (and some great new apps!).</p>
<p>Watch this space!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/paypal-to-tie-up-with-chinese-partner-hooray/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Experience design and why it&#8217;s the most important part of your website</title>
		<link>http://www.crystal-asia.com/user-experience-design-and-why-its-the-most-important-part-of-your-website/</link>
		<comments>http://www.crystal-asia.com/user-experience-design-and-why-its-the-most-important-part-of-your-website/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 09:52:50 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/user-experience-design-and-why-its-the-most-important-part-of-your-website/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[brochure website]]></category>
		<category><![CDATA[content architecture]]></category>
		<category><![CDATA[corporate brochure]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design content]]></category>
		<category><![CDATA[imaginative approach]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[interface design]]></category>
		<category><![CDATA[navigation interface]]></category>
		<category><![CDATA[new business]]></category>
		<category><![CDATA[nutshell]]></category>
		<category><![CDATA[point of view]]></category>
		<category><![CDATA[quite some time]]></category>
		<category><![CDATA[scenarios]]></category>
		<category><![CDATA[search engine optimisation]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[target audience]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[ux]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[wireframes]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=764</guid>
		<description><![CDATA[Crystal has been focusing on user experience (&#8220;UX&#8221;) for quite some time now and how it can benefit a simple brochure website or a large web application. It&#8217;s benefits to the end user is huge and what we have discovered is that if no UX analysis is made before a website design or development, the [...]]]></description>
			<content:encoded><![CDATA[<p>Crystal has been focusing on user experience (&#8220;UX&#8221;) for quite some time now and how it can benefit a simple brochure website or a large web application. It&#8217;s benefits to the end user is huge and what we have discovered is that if no UX analysis is made before a website design or development, the effectiveness of the website suffers greatly.</p>
<p>UX encompasses the better half of how a user interacts with a website, the architecture of the content/information, just about all of the visual design and over half of the content.</p>
<p><span id="more-764"></span>Lets just say that again, but a bit more clearly:</p>
<blockquote><p>User interaction<br />
Content Architecture<br />
Information Architecture<br />
Visual Design (navigation, interface design)<br />
Content<br />
Search Engine Optimisation (&#8220;SEO&#8221;)</p></blockquote>
<p>That&#8217;s your whole website in a nutshell. You see, UX is all about examining &#8220;what goes on inside the user&#8221;. It takes an scientific and imaginative approach to analysing the content, it&#8217;s importance and how to display it and where.</p>
<p>By producing user scenarios of your target audience, a list of your most important content and <a title="Learn more about Wireframes at Wikipedia" href="http://en.wikipedia.org/wiki/Website_wireframe">wireframes</a> to reflect the position and kind of content inside these positions, you have just created 80% of what you need for a successful website. After all, if your website is not performing a specific function like encouraging sales leads through contact, advertising your products to lead to an online sale, then what is the purpose of investing in a website?</p>
<h3>What about an example?</h3>
<p>Easily done. Let&#8217;s say you want a corporate, brochure website where your main purpose is to generate new business leads through potential customers contacting you through your website. Sounds easy enough, right?  Let&#8217;s examine it from the customers point of view:</p>
<blockquote><p>I am not going to contact you unless your company has what I am looking for displayed clearly (information about a product or service)<br />
I have to know something about your company or it&#8217;s people before I feel comfortable with the idea of contacting you.<br />
I must be able to contact you without filling out complicated forms. I hate online forms.<br />
I really don&#8217;t want to dig through sub-menu after sub-menu finding out more about your services</p></blockquote>
<p>Those four points (and there are many more) have one answer.</p>
<blockquote><p>The more I know about your company and it&#8217;s people allows me to build up enough knowledge and therefore trust to want to contact you.</p></blockquote>
<p>The longer this takes, the less I feel like contacting you. So time-to-information is a factor. This is heavily influenced by navigation, and what blocks of content you show on the home page.</p>
<h3>What about &#8220;Choice&#8221;?</h3>
<p>Finding the information, and the right amount of it with the ability to find more if I choose too is really important. But what if it is not enough for me? I will need to be presented with a choice to find out more about a service or product. By presenting the user with a choice to &#8220;discover more&#8221; you&#8217;ve now got an informed and driven customer. A customer who will more than likely contact you.</p>
<h3>What about the design?</h3>
<p>You could have hundreds of different designs for the same layout which help a potential customer contact you, but only the content itself remains the defining factor in it&#8217;s success. From a marketing and user experience standpoint, you&#8217;ve got a pretty good grasp of what content is being shown&#8230; now it&#8217;s a matter of striking a balance between your brand, visual imagery and your product or service.</p>
<p>A capable designer can stress the importance of whether a contact button needs to be in orange or green. They will understand that there is a <strong>visual path</strong> a user will follow because they have created <strong>visual queues</strong> where the eye will follow using colour, animation, graphic imagery and typography.</p>
<p>All of these in beautiful subtle (or unsubtle!) balance, combined with well thought out content targeted at the purpose of a user making contact. That&#8217;s the difference between a cheap &#8220;web development&#8221; company and the professionals (like us ;).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/user-experience-design-and-why-its-the-most-important-part-of-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Asia launches new website www.dpcleantech.com</title>
		<link>http://www.crystal-asia.com/crystal-asia-launches-new-website-www-dpcleantech-com/</link>
		<comments>http://www.crystal-asia.com/crystal-asia-launches-new-website-www-dpcleantech-com/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 02:15:33 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://www.crystal-asia.com/crystal-asia-launches-new-website-www-dpcleantech-com/">ryansnowden</span></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[boiler]]></category>
		<category><![CDATA[brilliant animation]]></category>
		<category><![CDATA[carbon emission]]></category>
		<category><![CDATA[conglomerate]]></category>
		<category><![CDATA[curves]]></category>
		<category><![CDATA[dragon]]></category>
		<category><![CDATA[dragon power]]></category>
		<category><![CDATA[farmers]]></category>
		<category><![CDATA[first impression]]></category>
		<category><![CDATA[friendly company]]></category>
		<category><![CDATA[global image]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[international accomplishments]]></category>
		<category><![CDATA[natures]]></category>
		<category><![CDATA[neglect]]></category>
		<category><![CDATA[pipeline]]></category>
		<category><![CDATA[search engine optimisation]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[world class technology]]></category>

		<guid isPermaLink="false">http://www.crystal-asia.com/?p=785</guid>
		<description><![CDATA[DPCleanTech is a eco-friendly company that produces biomass boiler power stations in over 37 locations and in over 12 different countries. After a long neglect of their website and perfection of their world class technology, they decided to focus on their global image under their conglomerate, Dragon Power. We were chosen to produce 2 websites, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="DPCleanTech Designed &amp; developed by Crystal Asia" href="http://www.dpcleantech.com/">DPCleanTech</a> is a eco-friendly company that produces biomass boiler power stations in over 37 locations and in over 12 different countries. After a long neglect of their website and perfection of their world class technology, they decided to focus on their global image under their conglomerate, Dragon Power.</p>
<p>We were chosen to produce 2 websites, the <a title="DPCleanTech Designed &amp; developed by Crystal Asia" href="http://www.dpcleantech.com/">DPCleanTech</a> (below) and Dragon Power (in the pipeline). Focusing on the international accomplishments and keeping a clean corporate brand there was a requirements to bring natures curves back into the first impression, thus creating quite a striking slideshow.</p>
<p>Keeping page length down, a image &amp; information UI slider was used to condense the necessary content into a acceptable visual form&#8230;but we&#8217;re not finished yet. We will be integrating Google maps fully and now focusing on <a title="Search Engine Optimisation" href="http://www.crystal-asia.com/e-marketing-seo-beijing-china-asia/">Search Engine Optimisation</a> of the website. Further to this, a brilliant animation of how their technology works, carbon emission saver counter and money returned to farmers which will appear on the Dragon Power website in the coming weeks. Enjoy!</p>
<p><img class="aligncenter size-full wp-image-786" title="DPCleanTech Home page - Designed &amp; Developed by Crystal Asia" src="http://www.crystal-asia.com/wp-content/uploads/2010/02/dp_home.png" alt="DPCleanTech Home page - Designed &amp; Developed by Crystal Asia" width="590" height="473" /></p>
<p><img class="aligncenter size-full wp-image-787" title="DPCleanTech Content page - Designed &amp; Developed by Crystal Asia" src="http://www.crystal-asia.com/wp-content/uploads/2010/02/dp-content.png" alt="DPCleanTech Content page - Designed &amp; Developed by Crystal Asia" width="590" height="473" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crystal-asia.com/crystal-asia-launches-new-website-www-dpcleantech-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
