ThinkDing  

Go Back   ThinkDing > Search Forums
Acceptance Mark
User Name
Password


Showing results 1 to 25 of 46
Search took 0.01 seconds.
Search: Posts Made By: Winston
Forum: Pre-Sale Questions 09-11-2008, 05:29 PM
Replies: 1
Views: 50,057
Posted By Winston
Sorry for the delay; posts on this forum are so...

Sorry for the delay; posts on this forum are so few and far between that it isn't regularly checked. Yes, the code is open source and you can change it if you want.
Forum: "How Do I..." Questions 06-11-2008, 01:05 PM
Replies: 1
Views: 50,150
Posted By Winston
Click here...

Click here (http://www.thinkding.com/demo/tdSearch.php?query=quote) for a pagination example.
Forum: Troubleshooting & Problems 10-14-2007, 06:00 PM
Replies: 4
Views: 21,552
Posted By Winston
Only $db_show[2] is coded to allow a link, but if...

Only $db_show[2] is coded to allow a link, but if you wanted $db_show[3] and $db_show[4] as links as well, you'd need to edit the code, untested but probably near where $http_link appears in the...
Forum: Troubleshooting & Problems 10-14-2007, 05:50 PM
Replies: 2
Views: 21,907
Posted By Winston
1) Untested but use phpMyAdmin to change the...

1) Untested but use phpMyAdmin to change the description field from VARCHAR(255) to TEXT if needed, and then edit the tdSearch.php file by replacing 255 (three spots) with the same larger number.

2)...
Forum: Pre-Sale Questions 10-14-2007, 05:41 PM
Replies: 1
Views: 21,058
Posted By Winston
Sorry for the delayed response, but to answer the...

Sorry for the delayed response, but to answer the questions, tdSearch adds a FULLTEXT key to the table to be searched, and tdSearchStats uses its own table. Neither of these would corrupt data, but...
Forum: Troubleshooting & Problems 08-26-2007, 04:23 PM
Replies: 5
Views: 21,812
Posted By Winston
In the tdSearch.php file add the...

In the tdSearch.php file add the following:

$ind_name_list = array();

Before the following:

$start = utime();
Forum: Troubleshooting & Problems 08-26-2007, 02:23 AM
Replies: 5
Views: 21,812
Posted By Winston
Check that the table you want to search is set to...

Check that the table you want to search is set to a MyISAM table. If not, use phpMyAdmin to change the table to a MyISAM table.
Forum: Pre-Sale Questions 05-22-2007, 04:19 AM
Replies: 3
Views: 20,449
Posted By Winston
Sorry, I do not know of such a script. As to '...

Sorry, I do not know of such a script. As to ' " % characters, ' and % are searchable (see here (http://www.thinkding.com/demo/tdSearch.php?query=quote%27s) and here...
Forum: Pre-Sale Questions 05-21-2007, 03:40 PM
Replies: 3
Views: 20,449
Posted By Winston
tdSearch can search just one MySQL database...

tdSearch can search just one MySQL database table. The one table is to have the following form:

CREATE TABLE search_data (
title varchar(255) NOT NULL,
description text NOT NULL,
keywords text...
Forum: "How Do I..." Questions 11-22-2006, 02:46 AM
Replies: 2
Views: 20,682
Posted By Winston
If you want a search box on a different webpage,...

If you want a search box on a different webpage, use the following where http ://www.DOMAIN.COM/DIR/tdSearch.php is the full link to your search.php page:

<form method="get"...
Forum: "How Do I..." Questions 05-15-2006, 02:53 PM
Replies: 1
Views: 19,230
Posted By Winston
Hi there, sorry for the delay, missed this post....

Hi there, sorry for the delay, missed this post. In the tdSearch.php file look for " WHERE " (that's spaceWHEREspace but without the quotes) and try adding "field_name = 1 AND" (without the quotes)...
Forum: Troubleshooting & Problems 02-25-2006, 02:09 PM
Replies: 3
Views: 20,575
Posted By Winston
Hi, let's say your article links are like...

Hi, let's say your article links are like so:

http://www.yoursite.com/article.php?article_id=9

And you are using an HTTP link like so:

$http_link =...
Forum: Pre-Sale Questions 01-03-2006, 03:57 PM
Replies: 1
Views: 19,868
Posted By Winston
Hi, tdSearch can search and display results from...

Hi, tdSearch can search and display results from just one MySQL table.
Forum: Feedback & Suggestions 12-09-2005, 10:20 AM
Replies: 1
Views: 54,514
Posted By Winston
Hi, hadn't planned on it, but check out...

Hi, hadn't planned on it, but check out http://sourceforge.net/projects/dmoz2mysql/ as it looks like it'll parse the content.
Forum: Bugs & Issues Tracker 11-27-2005, 02:11 AM
Replies: 6
Views: 51,773
Posted By Winston
Okay, thanks, found the problem. Either a) apply...

Okay, thanks, found the problem. Either a) apply the attached patch or b) download the tdSearch archive again, FTPing just the tdSearch.php file, overwriting the old tdSearch.php file.
Forum: Bugs & Issues Tracker 11-24-2005, 06:24 AM
Replies: 6
Views: 51,773
Posted By Winston
Hi, sorry, I haven't heard of this issue before,...

Hi, sorry, I haven't heard of this issue before, so I'm not yet sure what is going on. What setlocale, common_word, and word_weight did you set in the config file?
Forum: General Chit Chat 11-23-2005, 11:33 PM
Replies: 1
Views: 59,521
Posted By Winston
Hi, if you have access to shell try... # make a...

Hi, if you have access to shell try...

# make a backup (http://dev.mysql.com/doc/mysql/en/mysqldump.html)
# capitalizations represent your database information

shell> mysqldump -h HOST -u USER -p...
Forum: "How Do I..." Questions 11-23-2005, 10:35 PM
Replies: 1
Views: 19,450
Posted By Winston
Hi, when you have LIKE queries turned off, the...

Hi, when you have LIKE queries turned off, the MATCH AGAINST queries take over so MySQL then treats special characters such as + and - as delimiters so queries such as C++ and t-shirt do not return...
Forum: "How Do I..." Questions 11-23-2005, 10:17 PM
Replies: 1
Views: 19,502
Posted By Winston
Hi, in tdSearch.php find $numresults = null; and...

Hi, in tdSearch.php find $numresults = null; and afterwards echo out $sql_query (this doesn't have on the ORDER BY / LIMIT parts of the query). If you want the latter, you'll need to COPY $results =...
Forum: Bugs & Issues Tracker 11-23-2005, 10:10 PM
Replies: 6
Views: 51,773
Posted By Winston
Hi, the tdSearch queries select relevance greater...

Hi, the tdSearch queries select relevance greater than zero, but the number zero in the image name means either a) that relevance greater than zero is no longer part of the queries, b) that relevance...
Forum: Pre-Sale Questions 11-17-2005, 05:05 AM
Replies: 1
Views: 19,949
Posted By Winston
Hi, tdSearch can search two or three text columns...

Hi, tdSearch can search two or three text columns from a table: title, description, and optional keywords. tdSearch cannot search binary content such as images or PDFs. If you have the actual image...
Forum: Troubleshooting & Problems 11-09-2005, 02:24 PM
Replies: 4
Views: 21,552
Posted By Winston
Hi, in the language.php file find: 'subtext2'...

Hi, in the language.php file find:

'subtext2' => 'Size: ',
'subtext3' => 'Date: ',

And change to the following:

'subtext2' => '',
'subtext3' => '',
Forum: "How Do I..." Questions 11-07-2005, 04:38 PM
Replies: 3
Views: 19,927
Posted By Winston
Thanks for the speed update, and glad you like...

Thanks for the speed update, and glad you like the script. :D
Forum: "How Do I..." Questions 11-07-2005, 04:01 PM
Replies: 3
Views: 19,927
Posted By Winston
Hi, in the config file look for $common_word and...

Hi, in the config file look for $common_word and set it to the number one. I'd be interested to know how this affects your search speed. :)
Forum: Pre-Sale Questions 10-13-2005, 09:55 AM
Replies: 1
Views: 21,030
Posted By Winston
Hi, that is correct for one table: tdSearch can...

Hi, that is correct for one table: tdSearch can search one table, and you can use an existing database table without using the freebies.


There could be speed differences, with LIKE queries possibly...
Showing results 1 to 25 of 46

 
Forum Jump

All times are GMT. The time now is 11:55 PM.


Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.