Nightmare XP
ngocbd | February 1, 2009
ngocbd | February 1, 2009
khiemtt | January 27, 2009
Đầu tiên bạn download bộ cài đặt tiếng Việt tại địa chỉ:
http://www.mediafire.com/?sharekey=470c49a9e32e055e111096d429abd360e04e75f6e8ebb871
Giải nén bộ cài và upload vào thư mục osc/includes/languages của Oscommerce.
Tiếp theo vào phần quản trị của Oscommerce http://localhost/osc/admin/. Vào phần Localization và chọn tiếp Languages
Bấm vào nút new languagevà thiết lập các thông số như sau:
Cuối cùng bấm vào Insert để [...]
khiemtt | January 27, 2009
1.Tải osCommerce tại trang http://www.oscommerce.com/solutions/downloads với file
» oscommerce-2.2rc2a.zip
2. Giải nén file mới tải về vào thư mục chạy của AppServ hoặc xampp. Tạo một thư mục mới(ở đây tôi đặt tên osc) copy tất cả file và thư mục có trong thư mục catalog vào.
3. Dùng SQLserver tạo một CSDL mới , chưa [...]
tuannh | January 16, 2009
Download và cài đặt Red5:
- Các bạn vào đây để download Red5
- Sau khi download xong tiến hành cài đặt như bình thường, thư mục mặc định để cài đặt Red5 là Applications
Khởi động và chạy Red5
- Sau khi cài xong các bạn có thể khởi động Red5 bằng các cách sau :
Cách 1 [...]
xuanhung | January 16, 2009
Bước 1
Download libevent , cài đặt :
#tar -xvf libevent-1.3b.tar.gz
#cd libevent-1.3b
#./configure
#make
#make install;
Bước 2
Download memcache, cài đặt :
#gunzip memcached-1.2.1.tar.gz
#tar -xvf memcached-1.2.1.tar
#cd memcached-1.2.1
#./configure
#make
#make install;
Bước 3
Tạo liên kết cho memcache :
#ln -s /usr/local/lib/libevent-1.3b.so.1 /lib/libevent-1.3b.so.1
memcached -d -u nobody -m 512 127.0.0.1 -p 11211
Bước 4
Cài đặt gói pecl cho PHP (memcache PHP extension):
#wget http://pecl.php.net/get/memcache-2.1.2.tgz
#gzip -df memcache-2.1.2.tgz
#tar -xvf memcache-2.1.2.tar
#cd memcache-2.1.2
#phpize (Chú [...]
xuanhung | January 15, 2009
tuannh | January 8, 2009
Khi lưu ảnh dưới dạng .PNG , chúng ta bỏ đi phần background của ảnh đó để hình nền trở nên trong suốt. Nhưng khi đưa lên website và dùng trình duyệt IE6 thì hình nền của ảnh đó sẽ không còn trong suốt nữa mà trở thành mầu trắng. Sau đây là cách khắc [...]
ngocbd | December 30, 2008
1.What is a stack? What is a heap?
Ans : Stack is a place in the memory where value types are stored. Heap is a place in the memory where the reference types are stored.
2.What is Boxing/Unboxing?
Ans : Boxing is used to convert value types to object.
E.g. int x = 1;
object obj = x ;
Unboxing [...]
ngocbd | December 30, 2008
1.What are server controls?
Ans : ASP.NET server controls are components that run on the server and encapsulate user-interface and other related functionality. They are used in ASP.NET pages and in ASP.NET code-behind classes.
2.What are Sealed Classes in C#?
Ans : The sealed modifier is used to prevent derivation from a class. A compile-time error occurs if [...]
ngocbd | December 30, 2008
1.What method do you use to explicitly kill a users session?
Ans : Syntax: Session.Abandon()
Note : The Abandon method destroys all the objects stored in a Session object and releases their resources.If you do not call the Abandon method explicitly, the server destroys these objects when the session times out.
2.What methods are fired during the page [...]