<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Apache Web Server Question. in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846706#M2892</link>
    <description>Oops, I'm sorry.  I didn't read your request properly.&lt;BR /&gt;&lt;BR /&gt;SSI is one method.  Others include things like 'mod_perl' and 'mod_python'.  These use perl/python respectivly type code within the HTML page in order to get dynamic content.  I've not used either of them (given I know and like PHP), but they are very powerful from all I've read about them.&lt;BR /&gt;&lt;BR /&gt;They also run quicker than "&lt;!--#INCLUDE" (mod_include) statements (less overhead) because the interpreters are always loaded.&lt;BR /&gt;&lt;BR /&gt;And of course, another option, you could just use CGI.  Not the neatest way, but still effective.--&gt;</description>
    <pubDate>Tue, 19 Nov 2002 22:36:10 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2002-11-19T22:36:10Z</dc:date>
    <item>
      <title>Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846699#M2885</link>
      <description>Hi everyone,&lt;BR /&gt;&lt;BR /&gt;I wanted to find out if there is anyone out there who knows if its possible to configure Apache to create dynamic pages, but using html instead of php !&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Nov 2002 08:31:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846699#M2885</guid>
      <dc:creator>Admin32</dc:creator>
      <dc:date>2002-11-18T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846700#M2886</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Could you pls explain what you mean by creating dynamic pages with html?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Vincent&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Nov 2002 16:47:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846700#M2886</guid>
      <dc:creator>Vincent Stedema</dc:creator>
      <dc:date>2002-11-18T16:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846701#M2887</link>
      <description>If you mean you want HTML pages to be parsed (executed) like PHP pages are, then you need to change the PHP binding in /etc/httpd/conf/httpd.conf from:&lt;BR /&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php4.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php .php .php4 .php3 .phtml&lt;BR /&gt;        AddType application/x-httpd-php-source .phps&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php3.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php3 .php3&lt;BR /&gt;        AddType application/x-httpd-php3-source .phps&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php .phtml&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;&lt;BR /&gt;To something like this:&lt;BR /&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php4.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php .php .php4 .php3 .phtml .html&lt;BR /&gt;        AddType application/x-httpd-php-source .phps&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php3.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php3 .php3&lt;BR /&gt;        AddType application/x-httpd-php3-source .phps&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;    &lt;IFMODULE mod_php.c=""&gt;&lt;BR /&gt;        AddType application/x-httpd-php .phtml .html&lt;BR /&gt;    &lt;/IFMODULE&gt;&lt;BR /&gt;&lt;BR /&gt;Note however that this will impact system performance as it will mean that *EVERY* page that is retrieved that ends in '.html' will be parsed by the PHP module.&lt;BR /&gt;&lt;BR /&gt;There's more details on this on the PHP web site (&lt;A href="http://www.php.net/manual/en/install.apache.php)." target="_blank"&gt;http://www.php.net/manual/en/install.apache.php).&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you.</description>
      <pubDate>Mon, 18 Nov 2002 23:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846701#M2887</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-11-18T23:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846702#M2888</link>
      <description>Stuart,&lt;BR /&gt;&lt;BR /&gt;Thank for your answer. Its something which I never thought about, but sounds like a very interesting way to get the job done.&lt;BR /&gt;&lt;BR /&gt;While the solution you proposed dosen't exactly fullfil my requirements, its definitely a good one !&lt;BR /&gt;&lt;BR /&gt;I'm not sure is there is another way of generating dynamic html pages, but Im sure there is, as I have seen it on other Apache webservers which generate html pages dynamicaly. &lt;BR /&gt;&lt;BR /&gt;If you come up with any other idea, please let me know ! &lt;BR /&gt;&lt;BR /&gt;Cheers,</description>
      <pubDate>Tue, 19 Nov 2002 07:48:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846702#M2888</guid>
      <dc:creator>Admin32</dc:creator>
      <dc:date>2002-11-19T07:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846703#M2889</link>
      <description>Look at server-side includes.  The functionality is not as powerful as PHP.  If server-side includes don't work, you could look at the various options for CGI scripting.  Perl is one of the tools of choise.  You could look at Mason which helps partition the code from the html.</description>
      <pubDate>Tue, 19 Nov 2002 14:27:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846703#M2889</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-11-19T14:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846704#M2890</link>
      <description>If anyone can point a good site which shows how to create Dynamic html pages using ssi, it would be appreciated ! &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 19 Nov 2002 15:19:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846704#M2890</guid>
      <dc:creator>Admin32</dc:creator>
      <dc:date>2002-11-19T15:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846705#M2891</link>
      <description>&lt;A href="http://httpd.apache.org/docs-2.0/howto/ssi.html" target="_blank"&gt;http://httpd.apache.org/docs-2.0/howto/ssi.html&lt;/A&gt;</description>
      <pubDate>Tue, 19 Nov 2002 17:07:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846705#M2891</guid>
      <dc:creator>Mark Bainter</dc:creator>
      <dc:date>2002-11-19T17:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Apache Web Server Question.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846706#M2892</link>
      <description>Oops, I'm sorry.  I didn't read your request properly.&lt;BR /&gt;&lt;BR /&gt;SSI is one method.  Others include things like 'mod_perl' and 'mod_python'.  These use perl/python respectivly type code within the HTML page in order to get dynamic content.  I've not used either of them (given I know and like PHP), but they are very powerful from all I've read about them.&lt;BR /&gt;&lt;BR /&gt;They also run quicker than "&lt;!--#INCLUDE" (mod_include) statements (less overhead) because the interpreters are always loaded.&lt;BR /&gt;&lt;BR /&gt;And of course, another option, you could just use CGI.  Not the neatest way, but still effective.--&gt;</description>
      <pubDate>Tue, 19 Nov 2002 22:36:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/apache-web-server-question/m-p/2846706#M2892</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-11-19T22:36:10Z</dc:date>
    </item>
  </channel>
</rss>

