It is currently March 28th, 2024, 12:22 pm



Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46, 47, 48 ... 74  Next
Author Message
 Post subject: Re: Forum replacements problems.
PostPosted: October 21st, 2018, 10:28 am 

Joined: June 7th, 2011, 10:14 am
Posts: 35
Hi

before
https://fbom.me/file/427c3ae244435

after


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: October 21st, 2018, 12:30 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Just use "links" tag configuration as described in FAQ: http://poster.freddy.lt/faq.php?expand=faq104

It will be added automatically for needed forum.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 13th, 2018, 1:11 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
input
Code:
abc.S01e13.720P.Bluray.X264-Geckos Ffb Ffb-29

output
Code:
abc.S01e13.720P.Bluray.X264-Geckos


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 13th, 2018, 1:58 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
If it's always "Ffb" then this would work (if not it's possible to make more generalized replacement).

Search for:
Code:
(?i)(.+?) ffb ffb-[0-9]+


Replace with:
Code:
$1


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 14th, 2018, 8:03 am 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
thanks another one

input
Code:
abc.S01e13e14.720P.Bluray.X264-Geckos


output
Code:
abc.S01e13e14


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 14th, 2018, 9:42 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
(?i)(^.+?S[0-9]+E[0-9]+).+


Replace with:
Code:
$1


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 20th, 2018, 9:47 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
input:
The Twilight Zone - 2x01 - King Nine Will Not Return_(ENGLISH)_DJJ.HOME.SAPO.PT


output
The Twilight Zone - 2x01


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 21st, 2018, 11:01 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
(?i)(^.+? - [0-9]+x[0-9]+).+


Replace with:
Code:
$1


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 28th, 2018, 8:55 pm 

Joined: June 7th, 2011, 10:14 am
Posts: 35
Freddy wrote:
Just use "links" tag configuration as described in FAQ: http://poster.freddy.lt/faq.php?expand=faq104

It will be added automatically for needed forum.

the only way to do this?
can this be done through replacements in one forum?


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 29th, 2018, 5:09 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
gorizon wrote:
Freddy wrote:
Just use "links" tag configuration as described in FAQ: http://poster.freddy.lt/faq.php?expand=faq104

It will be added automatically for needed forum.

the only way to do this?
can this be done through replacements in one forum?


You could done it with replacement, but links options are already per forum. If you add the replacement it will conflict with links setting and it will end up with two spoiler tags.

The replacement would be:

Search for:
Code:
https?://fboom.+


Replace with:
Code:
[spoiler]$0[/spoiler]


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 29th, 2018, 6:07 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
not sure if possible or not. Input
Code:
<div class="bbcode_description">Openload (1GB Link Interchangeable)</div>
<dl>https://openload.co/f/Yg/Overlord.1975.1080p.part1.rar
https://openload.co/f/q/Overlord.1975.1080p.part2.rar</dl>

Openload (1GB Link Interchangeable)
https://openload.co/f/Yg/Overlord.1975.1080p.part1.rar
https://openload.co/f/q/Overlord.1975.1080p.part2.rar


Output
Code:
<div class="bbcode_description">Openload (1GB Link Interchangeable)</div>
<dl>https://openload.co/f/Yg/Overlord.1975.1080p.part1.rar
https://openload.co/f/q/Overlord.1975.1080p.part2.rar</dl>


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 29th, 2018, 9:16 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
(?s)Openload \(1GB Link Interchangeable\)\nhttp.+openload.+?(\n|$)


Replace with:
Code:
(leave empty)


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 2nd, 2018, 12:36 pm 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
wrong sorry


Last edited by zaika on December 2nd, 2018, 4:12 pm, edited 1 time in total.

Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 2nd, 2018, 3:28 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
https?://filecrypt.+


Replace with:
Code:
$0\n\n[b]Another Host[/b]\n[code]https://worldbytez.com/users/italiano/14972/LINK[/code]


Enable regex.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 2nd, 2018, 4:12 pm 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
Im sorry Freddy but i added wrong link no filecrypt but keeplinks it must be so:

Search
Code:
https://www.keeplinks.co/p95/5c02a1a698142


Replace Adding another link with:
Code:
https://www.keeplinks.co/p95/5c02a1a698142

[b]Another Host[/b]
[code]https://worldbytez.com/users/italiano/14972/LINK[/code] 


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46, 47, 48 ... 74  Next

Who is online

Users browsing this forum: No registered users and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Theme designed by stylerbb.net © 2008
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All times are UTC