The first thing you need to do is to clear your browser cache. Then
you need to simplify your test case. Don't test with Main.WebHome.
Test with two new plain wiki pages. Moreover, you should check with
Firebug (or any similar tool) if the AJAX requests made by the WYSIWYG
editor to get the recent changes or the search results are successful
(you should see requests to
http://<server>/xwiki/resources/js/xwiki/wysiwyg/xwe/WikiService.gwtrpc
in Firebug's console). Finally, you can try separately the services
used by the WYSIWYG editor:
----------8<----------
{{groovy}}
import org.xwiki.gwt.wysiwyg.client.wiki.WikiService;
def wikiService = services.component.getInstance(WikiService.class);
def wikiName = 'xwiki';
def start = 0;
def count = 10;
def pages = wikiService.getRecentlyModifiedPages(wikiName, start, count);
println "Recently modified pages:";
for(def page in pages) {
println "* " + page.getTitle();
}
{{/groovy}}
---------->8----------
Hope this helps,
Marius
On Tue, Sep 25, 2012 at 4:28 PM, Juan Carlos Vizueta <jvizueta(a)gmail.com> wrote:
Hi guys,
The next steps I've repeated over and over again and I'm still having the
same issues: - I installed xwiki-enterprise-web-4.1.4.war in tomcat6.0.35,
then imported xwiki-enterprise-ui-all-4.1.4.xar and configured
hibernate.cfg.xml to point it to a mysql 5.0.95 brand new database - I
logged in with with admin/admin - I created a new page called Test - I
edited Main.WebHome and tried to add a link to page "Test" through WYSIWYG
"Link" button - A new dialog appeared, "My recent changes" tab is
empty,
"All pages" tab when clicked shows a message "Loading data..." and
a
"loading" icon, which never goes away and never finds anything, I searched
for "Test" in "Search" tab, and it doesn't display anything. The
same thing
happens if I create a new space and try to find it in WebHome. I looked in
the catalina.out log, there is no message about this issue, I'm back where
I started, I'm lost, I have no clue of what can be the problem, it doesn't
show any error or debugging information related.
Mi box is a centos5 and I installed xwiki in the ROOT folder of tomcat
webapps, i changed tomcat's default port too
Please help me, I'm lost here
Regards
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users