Archive for January 3, 2008
January 3, 2008 at 4:37 pm
· Filed under APU ·Tagged APU, HELP, Technology
A P U
My Friend APU. He has completed his graduation under the department of Computer Science & Engineering(CSE) of Shah Jalal University of Science & Technology, Sylhet, Bangladesh. He was a meritorious and promising student in the University. Also he was a very popular and blossomed for his co-curricular activities in the campus. He is a singer and acted as president of ‘Shikorr’, a well known cultural organization in the SUST campus.But Unfortunately he is now suffering from Aplastic Anemia. It is deadly. The treatment is bone marrow transplantation. He is now admitted in Vellore Hospital, Chennai, India…
To help APU:
Bank account: Prime bank limited , Mouchak branch, Dhaka.
Account Holders’ Name:
1. M. M. Arafat Hossain
2. Mahmudul Hasan
3. Sharmila Majumdar
Account no. 210 49 744
(For sending money you have to use one of the above Account holder’s names and Account number.)
Swift Code: PRBLBDDH013
(The Swift code is for them who wants to deposit money from abroad.)
Details…
Join Discussion
Permalink
January 3, 2008 at 2:39 pm
· Filed under Cakephp, PHP ·Tagged Cakephp, MVC, PHP, php framework
At the very first of this new year, the great PHP framework Cakephp release there beta version.
You can download it from Cake Bekary.
The details of this version is here.
Thank You
Permalink
January 3, 2008 at 11:26 am
· Filed under Cakephp, PHP ·Tagged Cakephp, PHP, php framework
Permalink
January 3, 2008 at 10:49 am
· Filed under CODEIGNITER ·Tagged CODEIGNITER, PHP, php framework
Permalink
January 3, 2008 at 7:36 am
· Filed under INODB ·Tagged Database, Innodb, WINDOWS, XAMPP
InnoDB MySQL database storage engine is not enabled in the my.cnf
configuration file of XAMPP.
I have configured successfully Innodb engine with XAMPP latest version.
To enable the support of MySQL server on InnoDB storage engine, locate
the “my.cnf” config file (normally in /installation_path/xampp/mysql/
bin/ directory), and edit the my.cnf with any text editor.
Search and locate each of the following lines (except the lines in
italic where they’re comments):
- Comment the following line to unskip and use InnoDB
skip-innodb
- Uncomment the following options for InnoDB database if you are
using InnoDB tables.
#innodb_data_home_dir = C:/xampp/xampp/mysql/data/
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = C:/xampp/xampp/mysql/data/
#innodb_log_arch_dir = C:/xampp/xampp/mysql/data/
- Uncomment the lines and set innodb_buffer_pool_size up to 50% -
80% of RAM for optimization of InnoDB databases, try not to memory
usage too high.
#set-variable = innodb_buffer_pool_size=16M
#set-variable = innodb_additional_mem_pool_size=2M
- Uncomment the lines and set innodb_log_file_size to 25% of
InnoDB buffer pool size for optimisation.
#set-variable = innodb_log_file_size=5M
#set-variable = innodb_log_buffer_size=8M
#innodb_flush_log_at_trx_commit=1
#set-variable = innodb_lock_wait_timeout=50
After modification, the code for each lines should look like this:
# skip-innodb
innodb_data_home_dir = C:/xampp/xampp/mysql/data/
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = C:/xampp/xampp/mysql/data/
innodb_log_arch_dir = C:/xampp/xampp/mysql/data/
set-variable = innodb_buffer_pool_size=16M
set-variable = innodb_additional_mem_pool_size=2M
set-variable = innodb_log_file_size=5M
set-variable = innodb_log_buffer_size=8M
innodb_flush_log_at_trx_commit=1
set-variable = innodb_lock_wait_timeout=50
Permalink