Thread: Image damage
View Single Post
  #8  
Old 28th April 2012, 18:12
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by gogo999 View Post
Click the image to open in full size.
Is here

Thank you
Ok you have not done the changes to the source yet you have to do the following..

Look on line 594 in details.php and change it to this and look for an image/icon for you download button and put in pic folder, make sure the correct right are given (755)

Quote:
<td style="padding-left: 5px;" valign="top" width="430"><a href="'.ts_seo($id,$torrent['name'],'d').'" alt="'.$lang->details['dltorrent'].'" title="'.$lang->details['dltorrent'].'"><img src="/pic/download.png"></a></td>
I see you are using localhost if the follow link above does not work change to

Quote:
<td style="padding-left: 5px;" valign="top" width="430"><a href="'.ts_seo($id,$torrent['name'],'d').'" alt="'.$lang->details['dltorrent'].'" title="'.$lang->details['dltorrent'].'"><img src="localhost/pic/download.png"></a></td>
and if that doest work try this, remember to enter your ip where it says your ip :) :)


Quote:
<td style="padding-left: 5px;" valign="top" width="430"><a href="'.ts_seo($id,$torrent['name'],'d').'" alt="'.$lang->details['dltorrent'].'" title="'.$lang->details['dltorrent'].'"><img src="yourip/pic/download.png"></a></td>
You will also need to change this

Quote:
takeedit.php
[code]

find:
PHP Code:
unset ($dict['value'][{'created by'}]);
      unset (
$dict['value'][{'announce-list'}]); 
replace with:
PHP Code:
unset ($dict['value']['created by']);
      unset (
$dict['value']['announce-list']); 
With thx to francisco23 For posting this
__________________



Last edited by firefly007; 28th April 2012 at 18:25.
Reply With Quote
The Following User Says Thank You to firefly007 For This Useful Post:
dandanch (28th April 2012)