Author Topic: Problem with Search results  (Read 21978 times)

0 Members and 1 Guest are viewing this topic.

Offline uny

  • Newbie
  • *
  • Posts: 46
    • View Profile
Problem with Search results
« Reply #15 on: March 01, 2003, 02:02:58 AM »
V@no, thanks for your reply, but I dont' see anything like


Quote
type="post" to type="get" in search_form.html


only see  
Code: [Select]
form method="post"

so still change   POST to GET?

did that, nothing happend,

thanks again!

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Problem with Search results
« Reply #16 on: March 01, 2003, 02:05:16 AM »
ops, yes, that what I ment... :wink:
hmmm...but atleast did u see the full address with all "mombo-jumbo" stuff in the address bar?
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline Deepu Sudhakar

  • Newbie
  • *
  • Posts: 26
    • View Profile
    • http://deepu.cyanosis.net
http://deepu.eroding.com
« Reply #17 on: March 01, 2003, 03:15:12 AM »
i dont think its a skin problem. i just uploaded the default skin directory from the original installation zip file, and it didnt work with those templates.

Offline Deepu Sudhakar

  • Newbie
  • *
  • Posts: 26
    • View Profile
    • http://deepu.cyanosis.net
Problem with Search results
« Reply #18 on: March 02, 2003, 10:10:57 PM »
i tried the switch to GET again...for the first time that results are shown, all the parameters are shown in the url. however, the links to the second and so forth pages do not have any parameters. i do believe its a problem with the links being formed.

Offline uny

  • Newbie
  • *
  • Posts: 46
    • View Profile
Problem with Search results
« Reply #19 on: March 07, 2003, 03:56:23 AM »
ok, we will keep trying, as soon as we have the solution, we will post it here.. Hope it's going to be soon.

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Problem with Search results
« Reply #20 on: March 07, 2003, 12:16:57 PM »
ok, I asume the problem is /includes/sessions.php, because search uses sessions.
so, lets try avoid using it, and use "inline" parameters instead.
try this:
in search.php find:
Code: [Select]

  $link_arg = $site_sess->url(ROOT_PATH."search.php?show_result=1");

Replace with:
Code: [Select]
 $link_arg = $site_sess->url(ROOT_PATH."search.php?search_keywords=$org_search_keywords&search_new_images=$search_new_images&search_user=$org_search_user&search_terms=$search_terms&cat_id=$search_cat&search_fields=$search_fields");
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline uny

  • Newbie
  • *
  • Posts: 46
    • View Profile
Problem with Search results
« Reply #21 on: March 07, 2003, 11:57:42 PM »
thx V@no, tried, didnt' work  :(
any other possibilities?? thank u  :lol: