Link This Topic! (url, Bbcode, Html)


Inactive User
Subject: Re: Link This Topic! (url, Bbcode, Html)
Make it a hobby and have both forums - phpBB and IP running until you really decide which one you want to break! run with? :mrgreen:

Subject: Re: Link This Topic! (url, Bbcode, Html)
Boys are content who you like this MOD, as soon as I have a little of I will modernize it to time :mrblue:

Lopalong: Excuse but is Italian and the translator verniers is successful translate your question :oops:

Inactive User
Subject: Re: Link This Topic! (url, Bbcode, Html)
JC Design wrote: [View Post]
Boys are content who you like this MOD, as soon as I have a little of I will modernize it to time :mrblue:


Thanks, Does this mean that you have the MOD for IP 1.2.0.27 because I could not really understand IP.it Italian instructions?

Google wrote: 
Grazie, ciò significa che avete il MOD per IP 1.2.0.27 perché non riuscivo a capire veramente IP.it istruzioni italiano?


JC Design wrote: [View Post]

Lopalong: Excuse but is Italian and the translator verniers is successful translate your question :oops:


Language is always a problem unless it is kept simple for the translator to handle, and the spelling must always be correct with no slang.

We may end up talking like school children - but at least we get to understand each other. ;)

Google wrote: 
La lingua è sempre un problema a meno che non sia mantenuto semplice per il traduttore per la gestione, l'ortografia e deve essere sempre corretto, senza slang.

Si può finire a parlare come i bambini in età scolare - ma almeno si arriva a capire l'altro. ;)


:shock: :mricy:

Subject: Re: Link This Topic! (url, Bbcode, Html)
And for Icy Phoenix?
The same code posted from Lopalong?

Subject: Re: Link This Topic! (url, Bbcode, Html)
You can get the full code from Icy Phoenix SVN if you are a bit confident with PHP.

http://www.icyphoenix.com/viewtopic.php?f=1&t=4608

Subject: Re: Link This Topic! (url, Bbcode, Html)
I'm not a bit confident with PHP but i like to edit my own files because I have a lot of modifications on the sistem and if I reemplace the files I lost the changes.

Subject: Re: Link This Topic! (url, Bbcode, Html)
If you cannot wait the new IP release, you may try to register to Italian support site and try to apply this:

http://www.icyphoenix.it/viewtopic.php?f=7&t=2162

Only registered users can download files there.

Subject: Re: Link This Topic! (url, Bbcode, Html)
Thanks Mighty.

Finally I'm using the trunk version.

I have translated some parts of the new funtions to spanish. If you want this you know where find me. :mryellow:

Thanks.

Inactive User
Subject: Re: Link This Topic! (url, Bbcode, Html)
Mighty Gorgon wrote: [View Post]
If you cannot wait the new IP release, you may try to register to Italian support site and try to apply this:

h**p://***.icyphoenix.it/viewtopic.php?f=7&t=2162

Only registered users can download files there.



Maybe we need to set up a neutral MOD forum here for Only Webmasters of "support sites" to swap or simply post all of the available MODS for Icy Phoenix.

Else It appears that one will have to join the various boards where login is required to access them and translate them to English; and then post them on an English-Speaking site.. :(

Subject: Re: Link This Topic! (url, Bbcode, Html)
Unfortunately we cannot make everyone happy. :sad:

And not everyone could speak english correctly, so I can't force them to post things here. :sad:

On the Italian support site we decided to make some attachments available only for registered users, because there are a lot of people complaining without any effort to read instructions or read things... :sad:

Subject: Re: Link This Topic! (url, Bbcode, Html)
for who it has the version 1.2.* installed here a NOT OBLIGATORY little one UPDATE:

OPEN viewtopic.php
FIND
Code: [Download] [Hide] [Select]
'LINKBACK' => $linkback,

REPLACE WITH
Code: [Download] [Hide] [Select]
'LINKBACK_URL' => 'http://' . $board_config['server_name'] . $board_config['script_path'] . $linkback,
'LINKBACK_BBCODE' => '[url=http://' . $board_config['server_name'] . $board_config['script_path'] . $linkback . ']' . $topic_title . ' - ' . $board_config['sitename'] . '[/url]',
'LINKBACK_HTML' => '<a href="http://' . $board_config['server_name'] . $board_config['script_path'] . $linkback . '" target="_blank" title="' . $topic_title . '">' . $topic_title . ' - ' . $board_config['sitename'] . '</a>',


OPEN templates/*/viewtopic_nav_footer.tpl
FIND
Code: [Download] [Hide] [Select]
<tr>
<td width="42">HTML:</td>
<td>
<form name="select_all">
<textarea readonly="readonly" style="width:99%;height:15px;" readonly="readonly" name="text_area" onClick="javascript:this.form.text_area.focus();this.form.text_area.select();"><a href="{FULL_SITE_PATH}{LINKBACK}" target="_blank" title="{TOPIC_TITLE} - {SITENAME}">{TOPIC_TITLE} - {SITENAME}</a></textarea>
</form></td>
</tr>
<tr>
<td width="42">BBCode:</td>
<td>
<form name="select_all">
<textarea readonly="readonly" style="width:99%;height:15px;" readonly="readonly" name="text_area" onClick="javascript:this.form.text_area.focus();this.form.text_area.select();">[url={FULL_SITE_PATH}{LINKBACK}]{TOPIC_TITLE} - {SITENAME}[/url]</textarea>
</form></td></tr>
<tr>
<td width="42">Link:</td>
<td>
<form name="select_all">
<textarea readonly="readonly" style="width:99%;height:15px;" readonly="readonly" name="text_area" onClick="javascript:this.form.text_area.focus();this.form.text_area.select();">{FULL_SITE_PATH}{LINKBACK}</textarea>
</form>
</td>
</tr>

REPLACE WITH
Code: [Download] [Hide] [Select]
<tr>
<td>
<form name="select_all">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="row1" width="150"><span class="post-details"><b>URL</b></span></td>
<td class="row2"><textarea name="linkback_url" style="width:99%;height:15px;" readonly="readonly" onClick="javascript:this.form.linkback_url.focus();this.form.linkback_url.select();" class="gensmall">{LINKBACK_URL}</textarea>
</td>
</tr>
<tr>
<td class="row1" width="150"><span class="post-details"><b>BBCode</b></span></td>
<td class="row2"><textarea name="linkback_bbcode" style="width:99%;height:15px;" readonly="readonly" onClick="javascript:this.form.linkback_bbcode.focus();this.form.linkback_bbcode.select();" class="gensmall">{LINKBACK_BBCODE}</textarea>
</td>
</tr>
<tr>
<td class="row1" width="150"><span class="post-details"><b>HTML</b></span></td>
<td class="row2"><textarea name="linkback_html" style="width:99%;height:15px;" readonly="readonly" onClick="javascript:this.form.linkback_html.focus();this.form.linkback_html.select();" class="gensmall">{LINKBACK_HTML}</textarea>
</td>
</tr>
</table>
</form>
</td>
</tr>

Inactive User
Subject: Re: Link This Topic! (url, Bbcode, Html)
@ JC Design

Thanks for the "Mod".

Can you tell me what it's for?

Because viewtopic.php doesn't contain the code you posted, and Icy Phoenix doesn't have a template file named viewtopic_nav_footer.tpl ?

Subject: Re: Link This Topic! (url, Bbcode, Html)
I have made a update based on the present guide on IP.it: http://www.icyphoenix.it/viewtopic.php?f=7&t=2162

It says in fact to duplicate the rows and to modify some of the others!

If it is not what excuse serves you but I do not understand, I do not understand very l' English :(

Subject: Re: Link This Topic! (url, Bbcode, Html)
Lopalong wrote: [View Post]
@ JC Design

Thanks for the "Mod".

Can you tell me what it's for?

Because viewtopic.php doesn't contain the code you posted, and Icy Phoenix doesn't have a template file named viewtopic_nav_footer.tpl ?


Traduzione:
@ JC Design
Grazie per il "Mod"

Poi dirci a cosa serve questo

Perche viewtopic.php non contiene codice che tu hai scrito,e poi nel Icy Phoenix non ce template che si chiama viewtopic_nav_footer.tpl ?

Subject: Re: Link This Topic! (url, Bbcode, Html)
Limun wrote: [View Post]
Can you tell me what it's for?...


JC Design has made the LinkBack MOD for IP 1.2.0.27 that MG has recoded in latest Private/SVN releases, so if you use the "original" MOD provided JC Design you can apply this little update.

JC, please tell me if I said something wrong :wink:


Page 2 of 3


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 3.2108s (PHP: 1% SQL: 99%)
SQL queries: 9 - Debug Off - GZIP Enabled