14,974
edits
| Line 22: | Line 22: | ||
* the code of "Click event" should written in the loaded file. | * the code of "Click event" should written in the loaded file. | ||
= | = Server-side approach = | ||
== Apache == | == Apache == | ||
* [http://httpd.apache.org/docs/1.3/howto/ssi.html Server side includes][http://dob.tnc.edu.tw/themes/old/showPage.php?s=1997&t=3&at=]({{Acronym | acronym=SSI | def=Server Side Include}}) | * [http://httpd.apache.org/docs/1.3/howto/ssi.html Server side includes][http://dob.tnc.edu.tw/themes/old/showPage.php?s=1997&t=3&at=]({{Acronym | acronym=SSI | def=Server Side Include}}) | ||
== CMS software or Wiki softwares == | |||
CMS softwares | |||
* [https://pantheon.io/decoupled-cms Decoupled CMS: Why “Going Headless” Is Becoming So Popular | Pantheon] {{access | date=2017-09-12}} | |||
Wiki softwares | |||
* [[DokuWiki]]: [[DokuWiki export]] or use the plugin [https://www.dokuwiki.org/plugin:getraw plugin:getraw] | |||
* Mediawiki: | |||
** [[MediaWiki Template]] or transclude syntax([[Mediawiki formatting rules]]) | |||
** Include the content of wiki page from other software [https://www.mediawiki.org/wiki/API:FAQ#get_the_content_of_a_page_.28HTML.29.3F API:FAQ - MediaWiki] ex: https://meta.wikimedia.org/w/index.php?title=Spam_blacklist&action=raw&sb_ver=1 {{access | date = 2016-02-16}} | |||
* [[Oddmuse wiki]]: [http://www.oddmuse.org/cgi-bin/wiki/Transclusion Transclusion] means to include a wiki page from elsewhere into your current page | |||
Other softwares | |||
* [[MovableType]]: template modules, or [http://www.sixapart.com/pronet/plugins/plugin/multiblog.html MultiBlog] plugin | |||
== PHP require / include function == | == PHP require / include function == | ||
| Line 40: | Line 54: | ||
** Using CONSTANT parameter (such as absolute file path in common configuration file) in the included path NOT using relative path | ** Using CONSTANT parameter (such as absolute file path in common configuration file) in the included path NOT using relative path | ||
** [http://antbsd.twbbs.org/~ant/wordpress/?p=3966 Resolving PHP Relative Paths Problems - Ant's ATField] | ** [http://antbsd.twbbs.org/~ant/wordpress/?p=3966 Resolving PHP Relative Paths Problems - Ant's ATField] | ||
= further reading = | = further reading = | ||