Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

web links = Warning: Cannot modify header information

Asked Modified Viewed 2,406 times
J
jdes
J
jdes 10
  • Junior Member, joined since
  • Contributed 40 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
asked
Junior Member

Warning-headers already sent in Z:\www\phpfusion7005\maincore.php on line 319.
1. safe mode=on
2. ver 7.0.0.5
3. no changes made to maincore.php
4. recently added new page in root directory...worldphotos.php.
page works OK no errors..
Problem only when working web links WITH navigation pages..

<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright © 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: World Photo Search
| CVS Version: 1.00
| Author: John De Sousa
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php";
require_once THEMES."templates/header.php";
if (!iMEMBER) { redirect("index.php"); }
srand((float) microtime() * 10000000);
$inputTags = array("Cape Town",
"South Africa",
"Table Mountain",
"Durban",
"Plettenburg Bay",
"Cape Point",
"Chicago",
"London",
"RWC 2007",
"Cardiff",
"Wales",
"Melbourne",
"Australia",
"New Zealand",
"Madeira",
"Funchal",
);
$rand_keys = array_rand($inputTags, 2);
if (!isset($_POST['submit']))
{
$FlickrTag = $inputTags[$rand_keys[0]] . "\n"; }else{
$TagName = $_POST["TagSearch"];
$FlickrTag = $TagName;
}
opentable("World Photo Search");
echo "<br /><center>
<table border='0' width='50%' id='table1' cellspacing='1'>
<tr><td width='50%'>
<form method='post' action='worldphotos.php'>
Try Your Own World Photo Search::<input type='text' class='textbox' value='$FlickrTag' size='35' maxlength='35' name='TagSearch'>
<input type='submit' class='button' value='Search' name='submit'></form><br>
<iframe align='center'
src='http://www.flickr.com/slideShow/index.gne?group_id=&user_id=&set_id=&tags=$FlickrTag&favorites=own' frameBorder='0' width='520' height='400' scrolling='no'>
</iframe>
</td>
</tr>
</table>
<br />";
closetable();
require_once THEMES."templates/footer.php";
?>
0 replies

2 posts

J
jdes
J
jdes 10
  • Junior Member, joined since
  • Contributed 40 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

problem resolved...
corrupt apache http.conf file.
0 replies
J
jdes
J
jdes 10
  • Junior Member, joined since
  • Contributed 40 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Anyone know how to add php-fusion7's comment box to this custom page above. Note thiis file is in the root directory, so not using php-fusion7's content admin custom->custom page functions.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 2 posts
  • Votes 0 votes
  • Topic users 1 member

1 participant

J
J
jdes 10
  • Junior Member, joined since
  • Contributed 40 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet