| Author |
Message |
gormnass
Nuke Soldier


Joined: Feb 29, 2004
Posts: 25
|
Posted:
Mon Mar 01, 2004 8:24 am |
  |
|
    |
 |
ImHere2HLP
Captain


Joined: Mar 08, 2004
Posts: 343
Location: Morelia, México
|
Posted:
Wed Mar 10, 2004 3:27 pm |
  |
Look for the regex definition in .htaccess and change ^search.html to ^search(.*).html and then change modules.php?name=Search to modules.php?name=Search$1
Good luck,
ImHere2HLP |
_________________ - Never suspect conspiracy if incompetence could achieve the same result. |
|
      |
 |
gormnass
Nuke Soldier


Joined: Feb 29, 2004
Posts: 25
|
Posted:
Sun Mar 14, 2004 3:07 pm |
  |
Hello.
I do not have the regex definition in my .htaccess .
I can only find this :
| Code: |
#Search
#RewriteRule ^search(.*).html modules.php?name=Search$1 |
|
_________________ Regards Gorm
www.itbergen.no |
|
    |
 |
ImHere2HLP
Captain


Joined: Mar 08, 2004
Posts: 343
Location: Morelia, México
|
Posted:
Sat Mar 20, 2004 8:16 pm |
  |
| gormnass wrote: |
Hello.
I do not have the regex definition in my .htaccess .
I can only find this :
| Code: |
#Search
#RewriteRule ^search(.*).html modules.php?name=Search$1 |
|
That's precisely a regular expression (regex) definition rule.
Now that you've applied the changes, does it work correctly?
Good luck,
ImHere2HLP |
_________________ - Never suspect conspiracy if incompetence could achieve the same result. |
|
      |
 |
TrevorE
Lieutenant


Joined: Dec 28, 2003
Posts: 292
|
Posted:
Sat Mar 20, 2004 8:22 pm |
  |
I'm having the same problem  |
|
|
   |
 |
redstrip
Nuke Cadet


Joined: Mar 23, 2004
Posts: 1
|
Posted:
Tue Mar 23, 2004 2:13 am |
  |
I have the same problem, only with the search inside web_links, i try to do the mod above, but still not work. |
|
|
   |
 |
gormnass
Nuke Soldier


Joined: Feb 29, 2004
Posts: 25
|
Posted:
Fri Apr 02, 2004 3:55 am |
  |
| ImHere2HLP wrote: |
| gormnass wrote: |
Hello.
I do not have the regex definition in my .htaccess .
I can only find this :
| Code: |
#Search
#RewriteRule ^search(.*).html modules.php?name=Search$1 |
|
That's precisely a regular expression (regex) definition rule.
Now that you've applied the changes, does it work correctly?
Good luck,
ImHere2HLP |
No, it does not work after I applied the changes.  |
_________________ Regards Gorm
www.itbergen.no |
|
    |
 |
djblade311
Nuke Soldier


Joined: Jan 31, 2003
Posts: 14
Location: USA
|
Posted:
Tue Feb 19, 2008 11:39 am |
  |
I know that this is an OLD post but I figured I would post up my fix for the web links search problem.
When you get no search results while in the Web_links module, I found that $min was not getting set for some reason. Not sure if it was a googletap problem or not. So here was my fix:
1. Find the following under the function search:
| Code: |
| if (!isset($min)) $min=0; |
2. Change to:
| Code: |
| if (empty($min) || !isset($min)) $min=0; |
|
_________________ DJ Josh Blade
The DJ Groove
www.thedjgroove.com |
|
    |
 |
|
|