I loveTwitter
I love Twitter! I quite like to use that. Because it got very clean and nice mobile internet(much than Facebook). But I am feeling a bit strange to put where I am, what I am doing.
Australian Netbook
I went to Havery Norman last Sunday. There is a salse running. I found EEE PC 701, priced at $235(I can't remember correctly). I almost buy that, but my friend stopped me. Because the spec is too low. But I am still looking. I found an Australian Netbook,http://www.kogan.com.au/blog/2009/mar/17/australias-cheapest-netbook/. Just $499 with good spec. But I have not bought anythings from this online shop.
Trimed out html in Joomla
I found by default, Joomla trimed out all html tag in request variables.
The solution is like that:
PHP
$data = JRequest::get( 'post' ); | |
$data['html'] = JRequest::getVar('html', '', 'post', 'string', JREQUEST_ALLOWRAW); |
Aggregating all posts at the front page b2evolution
In 1.8.X, by the default, the frist blog will aggregate the posts from all other blogs. But new version 2.4.x, it won't do by default. I read some posts in forums. Some people suggested to use multiblogs.php and summary.php. Yes, they are right, if you want to do a custom layout, please use multiblogs.php, if you want to have a summary of your blogs, using summary.php is a right choice. But if you just want the frontpage working like the older version. Please go to backoffice->Blog setting. And select you default blog. At Advance tab, there is an option to set aggregate blogs' post. You need to enter ID of blogs need to be aggregated in a comma-separated format, such as "2,3,5". Then it will work for you.
I can't login after upgarde to b2evolution 2.4.6
I did an upgarde to b2evolution 2.4.6 this morning.
I can't login again.
It gave me this error:
Either you have not enabled cookies or this login window has expired.
I found the solutions;
Go to conf/_advanced.php
PHP
$instance_name = 'b2evo'; |
to
PHP
$instance_name = 'itblogs'; |
Actually, just need to change a unique name, then it will be fixed.