Two new installs require me to use .../phpopenchat/index.php to start the chat
If I just point to .../phpopenchat/
I get and error (see below). Index.php runs but it seems to not know the environment.
I've never had a product require me to specifiy index.php. Any ideas??
XML Parsing Error: junk after document element
Location: http://friendsofcwg.com/en/phpopenchat/ Line Number 3, Column 1:
<b>Warning</b>: get_template(/home/friofcwg/public_html/en/phpopenchat/include/templates/openchat/en.tpl): failed to open stream: No such file or directory in <b>/home/friofcwg/public_html/en/phpopenchat/include/class.Template.inc</b> on line <b>331</b><br /> ^
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-09-03
Create an index.html file and put a redirect in it to the index.php You havn't missed any files in the install. Some servers dont process Index.php the same way.
Two new installs require me to use .../phpopenchat/index.php to start the chat
If I just point to .../phpopenchat/
I get and error (see below). Index.php runs but it seems to not know the environment.
I've never had a product require me to specifiy index.php. Any ideas??
XML Parsing Error: junk after document element
Location: http://friendsofcwg.com/en/phpopenchat/ Line Number 3, Column 1:
<b>Warning</b>: get_template(/home/friofcwg/public_html/en/phpopenchat/include/templates/openchat/en.tpl): failed to open stream: No such file or directory in <b>/home/friofcwg/public_html/en/phpopenchat/include/class.Template.inc</b> on line <b>331</b><br /> ^
Looks like to me that not all Files are Uploadet.
Create an index.html file and put a redirect in it to the index.php You havn't missed any files in the install. Some servers dont process Index.php the same way.
<html>
<title>CodeAve.com (JavaScript: Redirect)</title>
<body bgcolor="#FFFFFF">
<script language="javascript">
<!--
location.replace("http://www.yourdomain.com/chat/index.php");
-->
</script>
</body>
</html>
Jared