The best way to learn how to use the WebCore is by example. See the documentation for more information.
The requested URL is always shown first; if a page uses one or more WebCore templates, those are shown afterwards.
00 <?php
01 include_once ('software/webcore_init.php');
02
03 $Page->title->subject = 'Requirements';
04 $Page->location->append ('WebCore', './');
05 $Page->location->append ('Requirements');
06
07 $Page->start_display ();
08 ?>
09 <div class="top-box">
10 <div class="button-content">
11 <a href="download.php" class="button">Download ></a>
12 </div>
13 </div>
14 <div class="main-box">
15 <div class="text-flow">
16 <p>The earthli WebCore runs with PHP and MySQL. In order to install and run software based
17 on it, you'll need the following server-side software:</p>
18 <ul>
19 <li>
20 <p><a href="http://www.apache.org/">Apache</a> 2.x</p>
21 <p>The WebCore 3.4.0 was developed on and is deployed on Apache 2.x.</p>
22 </li>
23 <li>
24 <p><a href="http://www.php.net/">PHP</a> 4.x</p>
25 <p>The WebCore 3.4.0 was developed on PHP versions 5.4.x and higher. Older versions (especially 4.x) are no longer supported.</p>
26 </li>
27 <li>
28 <p><a href="http://www.mysql.com/">MySQL</a> 3.x, 4.x, 5.x</p>
29 <p>The WebCore uses plain vanilla generated SQL and can run with pretty much
30 any version of MySQL. Newer versions are, naturally, better—especially for
31 full-text support. The WebCore 3.4.0 was developed with version 5.5 on Mac OS X, and
32 is deployed on an Ubuntu box running version 5.x as well.</p>
33 </li>
34 <li><a href="http://www.phpmyadmin.net/">PHPMyAdmin</a>* (or similar database administration tool)</li>
35 </ul>
36 <p class="notes">*You only need the database administration tool during installation.</p>
37 <p>All in all, the WebCore has relatively modest server software requirements and has
38 been tested/deployed on Windows, OS X and Linux servers.</p>
39 </div>
40 </div>
41 <?php $Page->finish_display (); ?>
42