Problem SSEP search script in site with https

Place for comments, problems, questions, or any issue related to the JavaScript / PHP scripts from this site.
rcull
Posts: 5

Problem SSEP search script in site with https

I now have the script ( https://coursesweb.net/php-mysql/ssep-si ... hp-ajax_s2 ) crawling how I think I would like it and am trying to use the search. It seems that no matter what I search for it goes to '/ssep/index.php' and fails to find any results. The '/ssep/index.php' does not look anything like the one in the demo.

I will keep trying to figure out where I went wrong, but thanks for any help :)
You can see it and try it here:
teambuick.com/reference/index.php

I will also be like to line up the suggestions with the searchbox.

Admin Posts: 805
Hello,
From what i checked, I noticed that the script did not work in sites with https.
I fixed that problem. You can download again the script, or make this simple change in the "search.htm" file (in the "templ/" folder).
- Delete the "http" protocol from the <base> tag and <a> link for home page, to be like these:

Code: Select all

<base href="//{$base}" />
and

Code: Select all

<a href="//{$home_page}/" title="{$home_page}" id="home_page">{$home_page}</a>

Similar Topics