
The latest movie I have watched to share. I give 3 our of 5 star for this movie’s rate. You can see lots of fight and fight action among human with blood exhausted vampires. This vampires move fast and silent when hunting, but they can’t fly or turn to bat. Storyline quite similar with previous vampires movie that watched. But will be the first time to see if a human can turn to vampires by injected vampires blood to human body. For wat? To gain power against with those powerful vampires which hard to kill by human during the day without sunlight.
Story line
Producer Sam Raimi (”Spider-Man”) brings audiences the terrifying thriller “30 Days of Night,” set in the isolated town of Barrow, Alaska, in the extreme northern hemisphere, which is plunged into complete darkness annually for an entire month. When most of the inhabitants head south for the winter, a mysterious group of strangers appear: bloodthirsty vampires, ready to take advantage of the uninterrupted darkness to feed on the town’s residents. As the night wears on, Barrow’s Sheriff Eben (Josh Hartnett), his estranged wife Stella (Melissa George), and an ever-shrinking group of survivors must do anything they can to last until daylight.
Posted in Movie |
Sample error,
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes)
Workaround
Increase PHP’s memory limit, either by adding:
memory_limit = 20M to your php.ini file (recommended, if you have access)
ini_set(’memory_limit’, ‘20M’); in your sites settings php file
php_value memory_limit 20M in your .htaccess file
The memory can adjust more than 20MB according to needs.
Posted in PHP |
Any error similar like
“W: GPG error: http://my.archive.ubuntu.com feisty-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key “
Try to edit /etc/apt/sources.list
Change all
http://my.archive.ubuntu.com
to
http://archive.ubuntu.com
http://my.archive.ubuntu.com is the repositories server for Malaysia.
Posted in Ubuntu stuff |
It have been a month I didn’t post. I wish to share a light weight system monitoring tools which deploy at Ubuntu. Note : It does not use to remotely monitor. It just a tools that let you enter some build in variable to monitor your system. Such as hdd space, system loading, monitor logs, and etc. Browse to Conky main page for more information need.
Simple installation step by fire to your terminal with following command,
$ sudo apt-get install conky
Import the conky setting file that came along with the installation,
$ zcat /usr/share/doc/conky/examples/conkyrc.sample.gz > ~/.conkyrc
Try to edit below variable from conky setting file in order to let it run as transparent.
own_window_type override
own_window_transparent yes
double_buffer yes
own_window yes
Posted in Ubuntu stuff |
Have look around on any information and found a nice stuff. A Ubuntu Community Magazine. Looks cool, there is few issue can download through Fullcirclemagazine. Beside English version issue by default, there is few language issue such as Spanish, Dutch, Itallian, Polish and French which translate
Ubuntu Forums have create a sub-forum on their site regarding this magazine.
A lot nice information can grab through their magazine and totally foc.

Posted in Ubuntu stuff |
Simple step to install Pidgin at Ubuntu by compile via source.
- Download source file from Pidgin download site.
- There are few packages need to install in order to compile the source. Below is the complete packages I install.
sudo apt-get install gettext libglib2.0-dev libgtk2.0-dev libxml2-dev libnss-dev libnspr-dev libnss3-dev libgnutls-dev
- Run the configure with below enable else you will encounter error like “SSL support is needed for MSN. Please install a supported SSL library.” when execute pidgin.
./configure –enable-gnutls=yes
- Next step easy :
make
sudo make install
- Final step is run Pidgin.

Posted in Ubuntu stuff |
Do you having problem in install some application from source due to some tools are not install by default at Ubuntu? Then you should install build-essential first at terminal with below command,
# sudo apt-get install build-essential
Below is the packages will install if you are using Ubuntu 7.04 as me.
linux-libc-dev (2.6.20-16.29) …
libc6-dev (2.5-0ubuntu14) …
dpkg-dev (1.13.24ubuntu6) …
libstdc++6-4.1-dev (4.1.2-0ubuntu4) …
g++-4.1 (4.1.2-0ubuntu4) …
g++ (4.1.2-1ubuntu1) …
Posted in Ubuntu stuff |
This is after many months I learn install Apache at my Vmware machine under WinXp. As my recent migrate to Ubuntu, I do install Apache for my learning usage. A bit confuse when choose which version to install. But since my comp plan to migrate Apache 1.x to 2.x, I straight away download the latest release and install.
However, there will never have one time success installation for a beginner. LOL. Hence, there got few starting erros encounter with the solving steps I locate.
Got this when compile apache,
configure: error: Cannot use an external APR-util with the bundled APR
which can resolve by below configure
# ./configure –enable-so –with-included-apr
# make
# make install
or
# ./configure –prefix=/usr/local/apache2 –enable-so –with-included-apr
Use command to start apache:
# /usr/local/apache2/bin/apachectl start
Remember to edit ServerName under /usr/local/apache2/conf/httpd.conf else below error will display when start apache:
apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName
Then, verify by browse http://localhost/ or http://127.0.0.1/.
*** Drop me any comment if there is any step left and best configure setting to recommend.
Posted in LAMP |
After using Ubuntu for few weeks. Suddenly I encountered that Openoffice can’t load. After google, found a way to check error of fail load by execute below comman through terminal
$ oowriter
Oops, there is backtrace load till below error occur:
** (process:6921): WARNING **: Unknown error forking main binary / abnormal early exit …
A lot comment found to say problem regarding ATI video card, SCIM and Openoffice. Many guide such as reinstall Openoffice can solved problem. Some said this is not the problem with ATI video card and the simple way to solve is edit below file
/etc/openoffice/soffice.sh
Which just change:
OPENGL_SUPPORT=yes
to
OPENGL_SUPPORT=auto
A very simple and easy way of fixing.
Please refer bugs.launchpad.net for this.
Posted in Ubuntu stuff |
Security issue founded which can cause Firefox vulnerabilities under Ubuntu releases:
- Ubuntu 6.06 LTS
- Ubuntu 6.10
- Ubuntu 7.04
The problem can be corrected by upgrading your system to the following package versions:
- Ubuntu 6.06 LTS: firefox 1.5.dfsg+1.5.0.13~prepatch070731-0ubuntu1
- Ubuntu 6.10: firefox 2.0.0.6+0dfsg-0ubuntu0.6.10
- Ubuntu 7.04: firefox 2.0.0.6+1-0ubuntu1
There is flaw on “about:config” under Firefox which can cause those malicious websites can exploit and retrieve the password saved. So, I do hurry update my Firefox version as well.
Further source information can read at Ubuntu news and Issue tracking system.
Posted in Security |