ReWriter - Automatically Rewrite Affiliate Datafeeds And Articles

Status
Not open for further replies.


Ah cool, he provides the synonym database in SQLite format so you can integrate it into your own tools. Much thanks!
 
I cracked this open and played with it for 10 minutes.

Initial thoughts:

1. Even without using the manual, this tool is user friendly and rather simple to use. No worries of getting confused or lost.

2. The stuff it does with paragraphs is really nice, you wont find these options on a lot of rewriters on the market. I actually built something similar to this years ago with PHP and YACG. Very nice to see this in a desktop app now.

3. Everything worked as advertised and I can say that I will for sure be using this on feeds and other side projects I have to make my content unique.

4. Couple of small things I didnt like, like having to log into it every time I closed and then opened it. I found myself hitting the Exit button when I really wanted to hit rewrite too.

5. Overall, I give it a 9/10 as well and I can say that I would pay $40 for this tool too.

6. The beauty of this app is not only does it do what it is suppose to do well, but also can be used on many other projects. With the way it is setup, you dont HAVE to use it for feeds, if you get my drift.
 
  • Like
Reactions: gutterseo
Great app, the biggest + for me was that I could use the synonym database that came with it. I immediately integrated it into a bunch of scrapers I have lying around and the results are phenomenal. The only 2 features that are missing are: command line support, and the ability to take an article and output it in spintax. Thankfully using the synonym database the author provided I managed to easily make a spintax generator in one hour. Still would be great to have it in the main program! Great work, for $40 a steal!
 
Tanks for the feedback guys. Will include spintext output and a remember password checkbox in v2. I will also look at a way of including its functionality in current scripts.
 
Update Released

Ok so I have listened to the feedback given by the users of ReWriter and the main request everyone had was some way to incorporate rewriter within their current scripts. With this update that is now possible.

You will now find two executables in your ReWriter folder. The file called rewriter_server will start a small http server listening on port 1285. To make a call to the server you can use something like this from PHP:
Code:
<?php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://127.0.0.1:1285");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
    //1 turns an option on and 0 turns an option off
    'striphtml' => '0',
    'parshuf' => '0',
    'parrestruc' => '0',
    'phrase' => '1',
    'word' => '1',
    'custom' => '0',
    'content' => 'Content you want rewritten'
));
$result = curl_exec($ch);    //contains the rewritten content
curl_close($ch);
?>
Code snippets in other scripting languages will follow shortly, please make requests here in the thread.

Other updates are the application now remembers your password after you have logged in the first time. If you are using a custom thesaurus with ReWriter v1 I recommend you export it through the application and import it into v2 through the thesaurus tab. You will also need to log into ReWriter once before running rewriter_server, this is solely to save your login details into the app.

The option to output spintext will be the next update with an ETA of 1 week.

You can download v2 of ReWriter through your original download link. As always please ask any questions in the thread or by PM.
 
For the next ten people who buy use the discount code: WFSPECIAL to get $10 off the cost price.
 
So with this rewriter do you still have to use the syntax {xxxx|YYYY} etc

No, you select which thesaurus you want to use and click rewrite.

It can learn new synonyms by inputting a spun article created in other programs in {xxxx|YYYY} format and then use the synonyms it finds in its own rewriting.
 
Ok so I have listened to the feedback given by the users of ReWriter and the main request everyone had was some way to incorporate rewriter within their current scripts. With this update that is now possible.
you rule :bowdown:

though it would be better to have this logic in a native php class ;)
 
Thanks seozero for the bug report. A new version has been uploaded with a unicode bug fixed in the rewriter_server version and also a bug with opening files has been fixed in the single rewrite mode.

You can download the update from your original download link. Only the exe's need to be replaced so you can keep your original database file if you have custom synonyms in it.

Anyone who's dl link has expired just shoot me a pm.

Thanks for the comment phrench. I'll have a function up in a few hours using the native PHP function stream_context_create().
 
Thanks for the comment phrench. I'll have a function up in a few hours using the native PHP function stream_context_create().
Sorry, I didn't mean "native" php function instead of using curl. What I meant is having a php class rather then having to setup a windows server with the exe.
 
Status
Not open for further replies.