<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello<br>
<br>
Some days ago I posted a mail concerning the possibility to integrate
php code into opencms. This should be possible if one installs opencms
as described in the <a
 href="http://www.iwka-is.de/opencms/opencms/alkacon-documentation/howto_apache_httpd/mod_proxy.html">docu</a>.
I did it exactly in this way. The only exception is step 2. There you
can read that one should "remove any occurrence of the ${SERVLET_NAME}
variable". They also have an example how the section where one has to
make the replacing should look like:<br>
<pre class="code"> <rendersettings>
      <rfs-prefix>${CONTEXT_NAME}/export</rfs-prefix>
      <vfs-prefix>${CONTEXT_NAME}</vfs-prefix>
      <userelativelinks>false</userelativelinks>   
      <exporturl><a class="moz-txt-link-freetext" href="http://127.0.0.1:8080/handle404">http://127.0.0.1:8080/handle404</a></exporturl>
      ...
  </rendersettings>

This is a contradiction to what they suggested one should do. Anyhow
if you use this settings (with ${CONTEXT_NAME}) I am not able to login anymore.
So I removed everything. My file now looks like:

  <rendersettings>
      <rfs-prefix>/export</rfs-prefix>
      <vfs-prefix></vfs-prefix>
      <userelativelinks>false</userelativelinks>
      <exporturl><a class="moz-txt-link-freetext" href="http://127.0.0.1:8080/handle404">http://127.0.0.1:8080/handle404</a></exporturl>
      ...
  </rendersettings>

I can login now but no publishing is really done. I set the "export" property of a php
file on "true" and published it but I do not see any files (exept "system" folder) under
the export folder.

I do not know exactly if I am doing something wrong with "publishing a file/folder"
(sorry, I am a newbie) or if there is still an error in the configuration file. Does
somebody has a working solution ?

Thank's in advance for any help

        Pedro

</pre>
<br>
</body>
</html>