Rebuliding Search index problem at server location

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
12/27/2010 11:34:12 PM
Gravatar
Total Posts 26

Rebuliding Search index problem at server location

hi Joe,

  what ever the steps did u mentioned for rebuliding search index,i folllowed that steps ,it is working fine in local system ,but it is not working on server(means in Data/sites/1/index folder the files are not regenerated in server ).why? please provide the solution.

Thanks & Regards,

Ramakrishna Thota.

 

 

12/28/2010 8:48:06 AM
Gravatar
Total Posts 18439

Re: Rebuliding Search index problem at server location

Most likely file system permissions on the server are not correct so it cannot write the index.

12/29/2010 11:25:47 PM
Gravatar
Total Posts 26

Re: Rebuliding Search index problem at server location

hi joe,

i checked the folder permissions Data/sites/1/index it has write permissions,when  i rebuild the search index the files in index folder are deleted but new copy of files are not created why?please provide the solutions.

 

Thanks & Regards,

Ramakrishna Thota.

 

12/30/2010 10:04:48 AM
Gravatar
Total Posts 2239

Re: Rebuliding Search index problem at server location

Hi,

Have you checked the System Log? It is located at Administration > System Log.

Your best bet for checking the log is to clear it, rebuild the search index and then check the log again. This process will help limit the number of messages in the log to make it easier to read and possibly find the problem.

HTH,
Joe D.

1/2/2011 10:40:15 PM
Gravatar
Total Posts 26

Re: Rebuliding Search index problem at server location

hi,

First i declare  in user.config like........

<add key="ShowRebuildSearchIndexButtonToAdmins" value="true" />
<add key="IndexPageMeta" value="true" />
<add key="DisableSearchFeatureFilters" value="false" />
<add key="SearchUseBackwardCompatibilityMode" value="false" />
<add key="EnableSearchResultsHighlighting" value="true" />
<add key="SearchIncludeModuleRoleFilters" value="true" />

then i clear the Systemlog , and i clicked  the rebuild search index button then i got a message "The Search Index for the site is currently being built. Please wait a few minutes and try your search again."

after thet i goto admin--->Systemlog ,i have  a message in System log is

2011-01-02 23:32:55,658 INFO mojoPortal.Web.WebTaskManager - Queued WebTaskManager on a new thread

and also i checked the Data/sites/1/index folder ...This index folder is empty...............

please provide the solution to this problem. or Please Provide the One by one steps for Rebuilding the search index

 

 

Thanks & Regards,

Ramakrishna Thota.
 

1/3/2011 6:35:51 AM
Gravatar
Total Posts 18439

Re: Rebuliding Search index problem at server location

Are you using a custom build that you produced yourself from source code or one of my pre-compiled packages? If you made your own build you may have left out some files related to building the search index, these files exist under /Setup/ProviderConfig/indexbuilders

You should also see IndexWriterTask will start about 10-15 seconds later, indexing is not instantaneous, it takes time, it will serialize content into the mp_IndexingQueue table and then the task will process the rows in this table and write to the index, for a large site it can take a little while and if you do anything that recycles the app pool it will kill the task and it cannot finish, so for example you should not manually restart the app or touch Web.config after you start the rebuilding or that will kill it.

Hope it helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.