Hi-
I have to replace the current "page not found message" on a site. The site was developed using PHP, PHP "calls" pages from page.php (which controls the layout, etc of the entire site). This is the orginal script:
if(!file_exists("content/$id.txt")
{
$nopage =
"<H3><b>Page Not Found on girlsinc.org</H3>
<HR>
<p> The page you are looking for is outdated, inaccurate, or does not exist at <a href=../ic/>}
else
{
$contents = file("content/$id.txt"
and then towards bottom of page this script makes refence to it:----
<?php
if(empty($nopage)) eval($data[2]);
else echo $nopage;
?>
I have made this change to the first part of the script:
if(!file_exists("content/$id.txt") $id.=".1";
if(!file_exists("content/$id.txt") {
$id=404;
}
I got this from another page.php which controls another part of the site (that calls in a 404.txt page), however I get an error about the second part of the script (listed above). I can't figure out what changes to make to this part of the script for it to function properly.
I appreciate any help!
Thanks!
I have to replace the current "page not found message" on a site. The site was developed using PHP, PHP "calls" pages from page.php (which controls the layout, etc of the entire site). This is the orginal script:
if(!file_exists("content/$id.txt")
{
$nopage =
"<H3><b>Page Not Found on girlsinc.org</H3>
<HR>
<p> The page you are looking for is outdated, inaccurate, or does not exist at <a href=../ic/>}
else
{
$contents = file("content/$id.txt"
and then towards bottom of page this script makes refence to it:----
<?php
if(empty($nopage)) eval($data[2]);
else echo $nopage;
?>
I have made this change to the first part of the script:
if(!file_exists("content/$id.txt") $id.=".1";
if(!file_exists("content/$id.txt") {
$id=404;
}
I got this from another page.php which controls another part of the site (that calls in a 404.txt page), however I get an error about the second part of the script (listed above). I can't figure out what changes to make to this part of the script for it to function properly.
I appreciate any help!
Thanks!