MultiSearch
50 posts by 11 authors in: Forums > CMS Builder
Last Post: August 14, 2012 (RSS)
By richo - May 28, 2008
The iframe does work but causes big problems when used either for the list or the search. Links, of course appear in the frame.
Would you mind following this link to see what I am trying to do please? http://theatremusicshop.com/dlg/cart/mp3List.php
I want to have the search on a separate page but when a search is made I want the results to show like the list is displayed now. At the moment when a search is made the results are shown below the search as links. I want them to appear with all the information as per the mp3List.
Many thanks
John
Re: [richo] MultiSearch
By Dave - May 28, 2008
You should be able to put the search form on any page you like with some code like this:
<form method="GET" action="/dlg/cart/mp3List.php" >
<input type="text" name="q" value="" size="50">
<input type="submit" name="" value="Search">
</form>
Will that do what you need? Let me know what else is missing.
interactivetools.com
By richo - May 28, 2008
Many thanks
John
Re: [richo] MultiSearch
By Dave - May 29, 2008
I understand. You're not going to be able to use multisearch for that. You can use a regular search for as per the docs here: http://www.interactivetools.com/docs/cmsbuilder/viewer_search.html
Multisearch is for when you want to search multiple sections that have different fields. Do you have multiple sections with MP3s or just one?
If you like you can email me CMS and FTP login details to dave@interactivetools.com (email don't post login details in forum) and I can take a look and give you some suggestions on the best setup.
Hope that help! :)
interactivetools.com
By richo - May 30, 2008
Just a little extra - I want to upload files upto 8MB in size but get an error - to change the php.ini
In cmsadmin i have changed the section editor to allow unlimited upload size. Got any suggestions.
Thanks
John
Re: [richo] MultiSearch
By Dave - May 30, 2008
You can see your current PHP settings under Admin > General > PHP Info (at the bottom of the page).
The settings you want to check are:
upload_max_filesize
post_max_size
max_input_time
max_execution_time
Usually just asking your host is the simplest though.
Hope that helps.
interactivetools.com
By sev - December 18, 2008
im enjoying learning what i can do with cmsb [;)]
hopefully a quick question for you...
can this multisearch be used in conjunction with the seo friendly urls option "filename fields" in viewer urls of admin > section editors?
i have the sitewide search multisearch.php working great but would ideally like the links to mirror what i have set up in the categories using the record title in the link eg mysite.com/viewer.php/my-title-6/
also not just on the multisearch but on all links is there a way to remove the record number from the end and just refer to the record title?
or is the number needed somewhere? [crazy]
thanks very much for your support
Re: [sev] MultiSearch
By Dave - December 18, 2008
No, unfortunately multisearch doesn't support SEO urls or extra values in the url such as: my-title-6.
For all links, the number is what's used to look up the record. So you can remove it but then you need to use something else to look up the value. You could do something like this:
page.php?title=About
Or as a where option in the code:
'where' => " title = 'About' ",
Hope that helps!
interactivetools.com
By Djulia - March 24, 2009
searchMultipleTables does not seem to work with fieldname_min or fieldname_min.
You confirm ?
Thanks for your answer.
Djulia
Re: [Djulia] MultiSearch
By Dave - March 24, 2009
No, unfortunately it won't. It's because it generalizes all the fields from multiple tables and only provides basic keyword search features.
interactivetools.com