Whenever I search something in alfresco share search , I am getting No result found. I tried even the exact file name. But the advanced search is able to find.
What is the problem?
Can I make the default search as advanced search?
I think you need to click on the tab Repository instead of All Sites
Related
Im migrating a wordpress site for the first time. I can get the site to load here: http://www.foureyescomic.com/ by updating the config file and the database table like this:
But now I'm getting images with broken links like this:
You need to update wp_posts table in database. Here is a workaround.
If you the original address is up yet, it is more convenient to use a plugin for migration. Here is a good one.
Yep, that happens because the absolute URLs of the images are stored as text within your posts' content in the wp_posts table. If your site's backend is functioning, you can use a database find/replace plugin to find the old urls in that table and replace them with the new urls. Or you can just do it with SQL/phpMyadmin if you're comfortable with that.
I find the easiest is by using this plugin: Better Search & Replace
It's pretty straightforward from there:
Install and activate the plugin, then in wp-admin go to Tools > Better Search Replace.
In the Search For field, put your old url. Ex: http://www.oldurl.com
Then in Replace With put your new url. Ex: http://www.newurl.com
In the Select tables section select wp_posts (or whatever your posts table is if you use a differnet prefix)
You can leave Run as dry run? checked if you want to do a dry run first to see what'll be changed. If it's unchecked, the changes will be made in your database.
Hit the Search/Replace button and that should do it!
Make sure you're using the exact strings you want to find and replace, and think about whether the search string could potentially occur anywhere else in that table where you wouldn't want it to change, otherwise you could screw things up. You should definitely have your DB backed up before you run this.
Hope that helps.
I recently created Google Custom Search Engine for my website and attached it on my site. Its working fine when I select
Search only selected site
under the advance option of Basic tab under setup menu of Google CSE. The problem arises when I select
Search the entire web but emphasize included site
As I understand from the last option that, it should show result from entire web but give preference to the included website. However, I could not find any result from my website.
I tried by typing in search
site:xxx.com
and it's showing all results to the specific website but if I place
site:mywebsite.com
It shows no results.
Can anybody shed some light on this.
Refreshing the page several times fixed it for me, though it's not a perfect solution. I think this is a problem that Google has to fix.
I using Drupal Managing News Attribution 6.0 / 1.2
Users can search a word and after users can save this search word.
But all users can see this saved searchs.
I want to show only users own saved searchs. Example Only My SAved Searchs...
I tried add argument but cant.
How can i make this?
You haven't specified the version as well as what module you are using to achieve but I think this module works great for saved search -
http://drupal.org/project/views_savedsearches
And you will have to set the permission like which search is accessible by whom and you will surely achieve what you are looking for...
When we click a document in Share, another page opens (document-details) with a preview of this document in flash.
By default, we can't select text (for copy/paste) in that preview, and I would like to know if this is possible and how ?
Perhaps I should use another previewer, or use the default one with a specific parameter ?!
I searched the web, and saw that this functionnality is present in flash, but can't find how to implement that with the WebPreviewer.
Any help is welcome.
Thanks.
The Media Viewers add-on on Share Extras provides an alternative document viewer based on pdf.js
Assuming you are using Alfresco 4.0, the add-on allows you to view document outlines, thumbnails and pages. In the pages you can select text and perform searches.
I am one of the contributors to this add-on and we would welcome feedback via the project site.
I inherited a Drupal 5 site recently and have a series of enhancements to make. Several of then revolve around search results.
Unpublished pages showing up in
search engine results. Some of these
are old pages, others are recently
unpublished. All are correctly
marked as unpublished in the CMS and
are still showing up.
Outdated pages are showing up from the search engine. The URL path structure changed and those items are old results in the DB.
From what I can tell the site uses Google Search Appliance(GSA) for the search rather than the default Drupal search. Is there a way I can be certain that it's using GSA other than seeing the module enabled?
If it is GSA it seems that I could get someone with access to the GSA to rebuild the search results on the site. Is this correct?
If rebuilding the search results is the right way to go about it, it seems whenever a fair amount of content is removed from the site I'll need to get someone to rebuild the search. Is there a better/automatic way?
Sounds like it's drupal that is handling the search. Google would need db access to show unpublished nodes. It could be you are using views to do search but forgot to only take published nodes.
If Drupal is handling the searchyou just need to flush and rebuild the search index. This can be done without too much trouble if you don't have too much content.
The GSA could still be showing deleted content depending on what your data source is.
If the content is coming from a database feed and is then dropped from the query it would be dropped. If the content was coming from a natural crawl or through a custom connector feed it would not be removed from the index on delete. Instead it needs to naturally cycle out of the index which can take a while.
One way to block deleted url's from being displayed is to do it through the front end. In the GSA Admin interface go to Serving > Front Ends then choose your front end and click the Remove URL tab. You can either list your url's or block a group of url's through regular expressions.
I have posted an answer to your more general question concerning node access. The problem with your search results might well be related to that.
In order to keep the Google Appliance more up to date, you might try out XmlSiteMap, a module that publishes a proper xml sitemap for all your content.
For an online website, publishing a sitemap is a good way to keep the search engines up to date, as they can use it to know about new pages and to purge old pages. I'm assuming that the Google Appliance would use this too,.