HTTP request failed! HTTP/1.1 404 Not Found
Posted: Thu Dec 04, 2003 9:27 am
Hello,
The following is code i use to pull the meta tags from an html file to display
My problem is i get the error:
http://onlinetnt.com/community/partywidice
here is the problem file
http://onlinetnt.com/community/partywi ... icles.php
both files reside in the same directory
both files call the same html file
both files are using the smae code
only difference is in one instance the file is included the other the code is embedded
would this make any difference?
Kendall
The following is code i use to pull the meta tags from an html file to display
Code: Select all
$article_file = $article_listing[1];
$tags = get_meta_tags('http://www.onlinetnt.com/community/partywidice/articles/'.$article_file,1);
// get meta content
$article_id = $tags['id'];
$article_title = $tags['title'];
$article_description = $tags['description'];
$article_gallery = $tags['gallery'];
$article_alt_image = 'images/'.$article_gallery.'/'.$tags['pics'];
// output data
echo '<img src="'.$article_alt_image.'_alt.jpg" border="0" alt="click to visit gallery" align="left">';
echo '<span class="title">'.$article_title.'</span><br>';
echo '<span class="article_text">'.$article_description.'</span>';
echo '<a href="articles/article_driver.php?file='.$article.'">more >></a> ';
echo '<a href="images/gallery_driver.php?gallery='.$article_gallery.'">vew gallery >></a>';
echo '<hr noshade color="#000000" size="1px">';
// end output datanow what is strange about it is that the same code is being used in another script that retrieves the same file....and its working.HTTP request failed! HTTP/1.1 404 Not Found
http://onlinetnt.com/community/partywidice
here is the problem file
http://onlinetnt.com/community/partywi ... icles.php
both files reside in the same directory
both files call the same html file
both files are using the smae code
only difference is in one instance the file is included the other the code is embedded
would this make any difference?
Kendall