Search found 302 matches

by captquirk
Sat Apr 20, 2019 1:28 am
Forum: Announcements
Topic: Sphider PDO will see no more enhancements
Replies: 0
Views: 46872

Sphider PDO will see no more enhancements

The availability of Sphider 2.4.x-PDO will continue. However, there will be no more future enhancements to the PDO edition, although some minor maintenance release(s) may be expected.
by captquirk
Thu Apr 11, 2019 10:52 pm
Forum: Sphider Help
Topic: Problem of HTML entities and quotes in search result
Replies: 4
Views: 19811

Re: Problem of HTML entities and quotes in search result

Now that Sphider 2.4.0 is released, I've gone back to your site. I've found the the function removeEmoji(0 in and of itself was not the problem, but its placement. So, in future releases this: $host = $data['host']; $path = $data['path']; $fulltxt = $data['fulltext']; $fulltxt = removeEmoji($fulltxt...
by captquirk
Wed Apr 10, 2019 3:44 am
Forum: Announcements
Topic: Sphider 2.4.0 released in legacy and PDO editions
Replies: 0
Views: 46482

Sphider 2.4.0 released in legacy and PDO editions

The latest version of Sphider is now available.
by captquirk
Tue Apr 09, 2019 3:30 am
Forum: Sphider Help
Topic: Problem of HTML entities and quotes in search result
Replies: 4
Views: 19811

Re: Problem of HTML entities and quotes in search result

The problem of the "&" in the title disappearing and leaving "nbsp;" is resolved in Sphider 2.4. Also in the titles, the missing apostrophes are restored. Second issue is the truncation occurring in the description. This occurs when the apostrophe (&apos:) character is en...
by captquirk
Sat Apr 06, 2019 2:11 am
Forum: Sphider Help
Topic: Problem of HTML entities and quotes in search result
Replies: 4
Views: 19811

Re: Problem of HTML entities and quotes in search result

Probably a filter somewhere. I'll take a look. -------------------------------------------- UPDATE 4/6: There seems to be a twofold issue. Using Sphider v2.3, none of the full text of pages from http://www.equiterre.fr is being stored. This is probably related to the truncation issue. Trying a diffe...
by captquirk
Sat Mar 16, 2019 6:00 pm
Forum: Sphider MODS
Topic: Cause spidering to pause after indexing a specified number of pages
Replies: 2
Views: 63274

Cause spidering to pause after indexing a specified number of pages

If you wish to cause spidering to pause for a short time after indexing a certain number of pages, an easy edit can make this possible. Let's say that after indexing 30 pages, you want Sphider to take a five minute break, then resume for another 30 pages. Open spider.php. Find "function indexUr...
by captquirk
Mon Mar 11, 2019 2:33 am
Forum: Sphider Help
Topic: "Show only the 2 most relevant links from each site" broken in 2.3.1
Replies: 0
Views: 40196

"Show only the 2 most relevant links from each site" broken in 2.3.1

Another of the deprecated each() function replacements has come back to haunt Sphider 2.3.1. This has been corrected for the next release, but for those you can't wait, the fix is easy. Open the include/searchfuncs.php file and look for this code: $k = $domains_to_show[$domains[$key]][0]; $v = $doma...
by captquirk
Tue Feb 26, 2019 5:03 pm
Forum: Announcements
Topic: Sphider 2.3.0 released in legacy and PDO editions
Replies: 0
Views: 47188

Sphider 2.3.0 released in legacy and PDO editions

Sphider 2.3.0 was released late 25 February 2019. Details can be seen in the change logs found at https://www.sphider.worldspaceflight.com.
by captquirk
Thu Jan 31, 2019 10:47 pm
Forum: Sphider Help
Topic: .com search at Sphider 1.42
Replies: 13
Views: 37041

Re: .com search at Sphider 1.42

Your code for limiting the number of links Sphider fetch from each domain works just fine! That's good. It has occurred to me that you may want to keep an eye on the 'temp' and 'pending' tables. Since indexing may stop before ALL the links are processed, these tables may contain "leftovers&quo...
by captquirk
Thu Jan 31, 2019 3:20 am
Forum: Sphider Help
Topic: .com search at Sphider 1.42
Replies: 13
Views: 37041

Re: .com search at Sphider 1.42

I mean to tell Sphider he has to stop when fetch 40 or 50 links from a domain. In PDO 2.2.0, in spider.php, line 1009: while ($count < count($links)) { You can try: while ($count < count($links) && $num < 50) { I HAVE NOT TESTED THIS! NO GUARANTEE! It SEEMS like a good idea though. :lol: