View Full Version : viewNfo.php problem
barrosz
May 14th, 2006, 01:17 AM
ive hit a little snag, when i try to view a .nfo in my downloads it errors out:
Parse error: syntax error, unexpected T_STRING in /var/www/center/downloads/viewnfo.php on line 1
great work by the way, keep it up :D
TTT_travis
May 14th, 2006, 02:13 AM
ive hit a little snag, when i try to view a .nfo in my downloads it errors out:
Parse error: syntax error, unexpected T_STRING in /var/www/center/downloads/viewnfo.php on line 1
great work by the way, keep it up :D
My bad, file formatting got messed up, delete that file, and make a new file with this in it and save it as viewnfo.php
REMOVED, scroll down for solution
barrosz
May 14th, 2006, 02:26 AM
thx! it looked like wrong format, now i get a diff error :(
Warning: include_once(config.php) [function.include-once]: failed to open stream: No such file or directory in /var/www/center/downloads/viewnfo.php on line 27
Warning: include_once() [function.include]: Failed opening 'config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/center/downloads/viewnfo.php on line 27
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /var/www/center/downloads/viewnfo.php:27) in /var/www/center/downloads/functions.php on line 26
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/center/downloads/viewnfo.php:27) in /var/www/center/downloads/functions.php on line 26
Warning: Cannot modify header information - headers already sent by (output started at /var/www/center/downloads/viewnfo.php:27) in /var/www/center/downloads/functions.php on line 98
TTT_travis
May 14th, 2006, 11:09 AM
thx! it looked like wrong format, now i get a diff error :(
Sorry, My bad.
<?php
/************************************************** ***********
* TorrentFlux - PHP Torrent Manager
* www.torrentflux.com
************************************************** ************/
/*
This file is part of TorrentFlux.
TorrentFlux is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
TorrentFlux is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with TorrentFlux; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// contributed by NovaKing -- thanks duder!
include_once("../content/conf/downloads.php.inc");
include_once("functions.php");
DisplayHead("View NFO");
$file = $_GET["path"];
$folder = htmlspecialchars( substr( $file, 0, strrpos( $file, "/" ) ) );
if( ( $output = @file_get_contents( $cfg["path"] . $file ) ) === false )
$output = "Error opening NFO File.";
?>
<div align="center" style="width: 740px;">
<a href="<?php echo "viewnfo.php?path=$file&dos=1"; ?>">DOS Format</a> :-:
<a href="<?php echo "viewnfo.php?path=$file&win=1"; ?>">WIN Format</a> :-:
<a href="dir.php?dir=<?=$folder;?>">Back</a>
</div>
<pre style="font-size: 10pt; font-family: 'Courier New', monospace;">
<?php
if( ( empty( $_GET["dos"] ) && empty( $_GET["win"] ) ) || !empty( $_GET["dos"] ) )
echo htmlentities( $output, ENT_COMPAT, "cp866" );
else
echo htmlentities( $output );
?>
</pre>
<?php
DisplayFoot();
?>
barrosz
May 14th, 2006, 04:02 PM
thx! works fine now.
vBulletin® v3.7.2, Copyright ©2000-2008, Jelsoft Enterprises Ltd.