Pages

Bài đăng phổ biến

Wednesday, November 30, 2011

Template for php

Easy Template System
http://ets.sourceforge.net/

Smarty
http://smarty.php.net/


FastTemplate
http://www.thewebmasters.net/php/FastTemplate.phtml


bTemplate
http://www.massassi.com/bTemplate/


ModeliXe
http://modelixe.phpedit.com/


UltraTemplate
http://www.ultratemplate.com/main.php


PHPTemplate
http://nutbar.chemlab.org/


PHPLib
http://sourceforge.net/projects/phplib


XTemplate
http://sourceforge.net/projects/xtpl/


SmartTemplate
http://www.smartphp.net/content/smar...out/about.html


Yapster
http://yapter.sourceforge.net/
PHP Classes
http://www.phpclasses.org/browse.html/class/37.html

Zend template
https://www.zend.com/codex.php?CID=332

SledgeHammer
http://sledgehammer.sourceforge.net/


PHPtemplater
http://www.jmcresearch.com/src/proje...tion=view&id=4


phpSavant
http://phpsavant.com/


SmashTemplate
http://www.phpclasses.org/browse.html/class/1401.html


{PHPTMPL}
http://www.lri.fr/~gk/PHPTMPL/

AwesomeTemplateEngine
http://www.pinkgoblin.com/index.php?view=scripts


Virtual Template
http://sourceforge.net/projects/vtemplate/


TemplateTamer
http://www.templatetamer.org

QuickTemplate
http://www.phpclasses.org/browse.html/package/49


Phemplate
http://pukomuko.esu.lt/phemplate/


Templates engine for PHP
http://sourceforge.net/projects/php-templates


YATS
http://yats.sourceforge.net


iTemplate
http://sourceforge.net/projects/itemplate


Cached Fast Template
http://zoned.net:8000/~xkahn/php/fasttemplate/


AvanTemplate
http://avantemplate.sourceforge.net/


PHPWidgets
http://www.northern.ca/projects/phpwidgets

(internet)

Zend studio: Errors occurred during the build. Errors running builder 'JavaScript Validator' on project 'PROJECT'. java.lang.NullPointerException

Problem:


Errors occurred during the build. Errors running builder 'JavaScript Validator' on project 'PROJECT'. java.lang.NullPointerException


Resolution:


you must go to Project->Properties->Builders then disable ‘Javascript Validator’.


Nguyễn Sĩ Nhàn

How do I sync data between two Load balanced Windows 2003 servers?


For UNIX/Linux server you can use rsync command to keep data sync'd between two servers. rsync also works under Windows NT/2003 server but it will take lots of time to setup.
For Microsoft Windows 2003 server use robocopy tool, to sync files between two windows server. You can download robocopy.exe and other files from Windows 2003 Resource Kit Tools set.
Once tool is downloaded, install the Resource Kit. By default robocopy located at c:\Program Files\Windows Resource Kits\Tools\robocopy.exe. Now let us assume that you want to sync d:\Inetpub\wwwroot\ directory between two Windows server. First create hidden share on www2 (secondary server)
  1. Login to www2
  2. Select d:\Inetpub\wwwroot\
  3. Right click > Properties > Sharing tab > Share this folder > Add $ at the end of share name and save the changes.

How do I use robocopy command?

=> Login to primary server (www1)
=> Click on stat > run > type cmd
=> At command prompt type command:
c:>"c:\program files\windows resource kits\tools\robocopy.exe d:\inetpub\wwwroot www2\\inetpub\wwwroot\"ALTERNATIVELY, use IP address of www2 server :
c:>"c:\program files\windows resource kits\tools\robocopy.exe d:\inetpub\wwwroot 202.54.10.200\\inetpub\wwwroot\"robocopy has many more options and lots of other information available in Robocopy.DOC file.
(cyberciti)