[GET] My PHP Article Scraper & Spinner

2 requests:

Is it possible to choose it not to automatically spin the articles?

Is it possible to have it scrape 1 sentence from each article and then put all those sentences together in 1 article?
1st, yes, it's possible. Currently, you can choose the sentence spin level. There will be no word/phrase spin.
2nd, it's possible too but the script is currently doing that. it randomly selects sentences from articles and build up the article before spinning.
 
Thanks so much for responding

1) How do you choose "sentence spin". The only options I see are for the keyword and number of articles.

2) Actually it seems to be pulling several sentences from each article, not just 1 sentence.

1st, yes, it's possible. Currently, you can choose the sentence spin level. There will be no word/phrase spin.
2nd, it's possible too but the script is currently doing that. it randomly selects sentences from articles and build up the article before spinning.
 
Thanks so much for responding

1) How do you choose "sentence spin". The only options I see are for the keyword and number of articles.

2) Actually it seems to be pulling several sentences from each article, not just 1 sentence.
1. Make sure you get the latest script. You will see "Readable Level" and there is one option called "Very High", select it.

2. Sure, it will select several sentences because if only one sentence is selected from one article, in many cases it will not be enough to form the long enough article.
 
Thanks so much for responding

1) How do you choose "sentence spin". The only options I see are for the keyword and number of articles.

2) Actually it seems to be pulling several sentences from each article, not just 1 sentence.

In the article spinner, Under Readable level, select Very High(Sentence Spin only)
 
not really a new version but some fixes applied. Please let me know if you have trouble using the script.

Code:
http://www.mediafire.com/?lpkjbrzrrdeo9zw

Code:
Warning: include_once(c:\wamp\www\php\newsp\library\webbot\LIB_parse.php) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\scraper\class\scrape-c.php on line 5


Got 4 such errors.


Fix:
In class folder, scrape-c.php file,
Replace:
Code:
include_once("c:\wamp\www\php\\newsp\library\webbot\LIB_parse.php");
include_once("c:\wamp\www\php\\newsp\library\webbot\LIB_http.php");

with
Code:
include_once("library\webbot\LIB_parse.php");
include_once("library\webbot\LIB_http.php");


Testing the script right now. Slow net so it takes time to scrape
 
thank you, I downloaded the zip file from your first post but I don't see anything like that.

Is there a new script to download somewhere else?

1. Make sure you get the latest script. You will see "Readable Level" and there is one option called "Very High", select it.

2. Sure, it will select several sentences because if only one sentence is selected from one article, in many cases it will not be enough to form the long enough article.
 
thank you, I downloaded the zip file from your first post but I don't see anything like that.

Is there a new script to download somewhere else?

Download the script two posts above yours
 
Thanks so much.

Installed, when I try to run it I get the following error:

Code:
[SIZE=1]Fatal error: Call to undefined function curl_init() in C:\wamp\www\php\newsp\library\webbot\LIB_http.php on line [I]249[/I][/SIZE]

Don't know if it matters but I did have to create a folder called "php" in my www folder

Download the script two posts above yours
 
Thanks so much.

Installed, when I try to run it I get the following error:

Code:
[SIZE=1]Fatal error: Call to undefined function curl_init() in C:\wamp\www\php\newsp\library\webbot\LIB_http.php on line [I]249[/I][/SIZE]
Don't know if it matters but I did have to create a folder called "php" in my www folder
you need to enable curl first.
Find php.ini files in wamp, find the line starts with ;curl..., remove ; and restart wamp then you are good to go
 
Thanks so much.

Installed, when I try to run it I get the following error:

Code:
[SIZE=1]Fatal error: Call to undefined function curl_init() in C:\wamp\www\php\newsp\library\webbot\LIB_http.php on line [I]249[/I][/SIZE]

Don't know if it matters but I did have to create a folder called "php" in my www folder

This guy needs to read through the thread. Both of these questions have been answered before.
 
Thanks so much.

Installed, when I try to run it I get the following error:

Code:
[SIZE=1]Fatal error: Call to undefined function curl_init() in C:\wamp\www\php\newsp\library\webbot\LIB_http.php on line [I]249[/I][/SIZE]
Don't know if it matters but I did have to create a folder called "php" in my www folder

Green WAMP Icon -> PHP -> PHP Extensions -> php_curl.

Now don't ask anyone to make a video on it.

And I assume the next question you'll be asking is that you get the error "Warning: include_once(c:\wamp\www\php\newsp\library\webbot\LIB_parse.php) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\scraper\class\scrape-c.php on line 5" when you run the script. To solve that, again, read the post 2 post before yours.

This guy needs to read through the thread. Both of these questions have been answered before.

Probably replying from the first page -.-
 
thank you, actually I didn't get any new errors, working perfectly

Green WAMP Icon -> PHP -> PHP Extensions -> php_curl.

Now don't ask anyone to make a video on it.

And I assume the next question you'll be asking is that you get the error "Warning: include_once(c:\wamp\www\php\newsp\library\webbot\LIB_parse.php) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\scraper\class\scrape-c.php on line 5" when you run the script. To solve that, again, read the post 2 post before yours.



Probably replying from the first page -.-
 
Hi all,

Yesterday my wamp server stopped working so I try the script on xampp and to my surprise, the script works without any warning (quite frequent on wamp) so I recommend you guys switch to xampp.

I also notice that I used the absolute path in the scrape-c.php, it's a down side as it require you to use wamp to run. I've changed to relative path so you can put the script anywhere in the local server to make it work, just don't change the folder name (newsp).

here is the script with the fix:
Code:
http://www.mediafire.com/?gne8zvh75ey5gm7
 
Want to instal the article software but I'm new to xampp. I've installed xamp but there's no www directory the instructions for wamp.
How can it be installed on xampp?

Hi all,

Yesterday my wamp server stopped working so I try the script on xampp and to my surprise, the script works without any warning (quite frequent on wamp) so I recommend you guys switch to xampp.

I also notice that I used the absolute path in the scrape-c.php, it's a down side as it require you to use wamp to run. I've changed to relative path so you can put the script anywhere in the local server to make it work, just don't change the folder name (newsp).

here is the script with the fix:
Code:
http://www.mediafire.com/?gne8zvh75ey5gm7
 
Last edited:
Want to instal the article software but I'm new to xampp. What's the best way?

The same way as has been explained so very many many times during the other 312 posts in this thread.

In other words, come on, read at least some of this thread.

Since when did laziness become so trendy, or prolific.
 
I've been through the whole 312 posts in the thread and found all the info about installing using wamp but not xamp. There is no www folder in xamp and so that's why I don't know what to do.


The same way as has been explained so very many many times during the other 312 posts in this thread.
 
I've been through the whole 312 posts in the thread and found all the info about installing using wamp but not xamp. There is no www folder in xamp and so that's why I don't know what to do.
in xampp, you need to find htdocs, it's equivalent to www in wamp
 
in xampp, you need to find htdocs, it's equivalent to www in wamp

Couldn't get it to work in xampp so using WAMP and getting this error message:

( ! ) Warning: include_once(c:\wamp\www\php\newsp\library\webbot\LIB_parse.php) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\php\newsp\newsp\class\scrape-c.php on line 5
 
Back
Top