[xwiki-users] My Recent changes is empty
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
On 09/25/12 15:28, Juan Carlos Vizueta wrote:
Hi guys,
The next steps I've repeated over and over again and I'm still having the same issues: my favorite definition of "insanity": expecting different results while repeating the same activities ;-)) - 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 let's stop here: you've created a new page, entered something into its content and clicked 'save'. Then the content appeared, right?
R.
Hi Ryszard, Yeah, that's right, everything fine until then, everything gets missy after that when trying to link to that page I created from the link button in the wysisyg Search tab in the dialog doesn't return anything at all either, if I try to search for that same webpage from the normal search box in the upper right corner there is no problem, it works just fine I'm clueless here because there is no error message I can look for Regards El 25/09/2012 08:38, "Ryszard Łach" <ryszard.lach@contium.pl> escribió:
On 09/25/12 15:28, Juan Carlos Vizueta wrote:
Hi guys,
The next steps I've repeated over and over again and I'm still having the same issues: my favorite definition of "insanity": expecting different results while repeating the same activities ;-)) - 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 let's stop here: you've created a new page, entered something into its content and clicked 'save'. Then the content appeared, right?
R.
_______________________________________________ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users
On 09/25/12 20:40, Juan Carlos Vizueta wrote:
Hi Ryszard,
Yeah, that's right, everything fine until then, everything gets missy after that when trying to link to that page I created from the link button in the wysisyg
So, you've created a page, let's call it "page1". It looks normal, it can be found via search, it has a version/history. Then you create another page (let's call it "page2"), write some text into "page2", edit it again using wysiwyg, select some text, click 'link->wiki page', you choose "page1" as the target, right? R.
Yes indeed Well, what I did was to try to create a link from Xwiki.WebHome to page1 from wysiwyg editor, which was impossible to do, as I already said Something weird is that I created a new space too, and the same thing happened when trying to create a link from Xwiki.WebHome to Space1.WebHome Another issue, which I think relates to this one is that the space created doesn't appear in the dropdown in Administration section to manage permissions to only that space. El 25/09/2012 14:01, "Ryszard Łach" <ryszard.lach@contium.pl> escribió:
On 09/25/12 20:40, Juan Carlos Vizueta wrote:
Hi Ryszard,
Yeah, that's right, everything fine until then, everything gets missy after that when trying to link to that page I created from the link button in the wysisyg
So, you've created a page, let's call it "page1". It looks normal, it can be found via search, it has a version/history.
Then you create another page (let's call it "page2"), write some text into "page2", edit it again using wysiwyg, select some text, click 'link->wiki page', you choose "page1" as the target, right?
R.
_______________________________________________ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users
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@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@xwiki.org http://lists.xwiki.org/mailman/listinfo/users
On 09/25/12 22:15, Juan Carlos Vizueta wrote:
Yes indeed
Well, what I did was to try to create a link from Xwiki.WebHome to page1 from wysiwyg editor, which was impossible to do, as I already said
Something weird is that I created a new space too, and the same thing happened when trying to create a link from Xwiki.WebHome to Space1.WebHome
Exactly, as Marius wrote, simplify your test case (that's why I'm cutting most of your mail while quoting). So, please, create 'Sandbox.page2', and enter into it (source) '[[link to page 1>>SpaceOfPage1.page1]]', save, view. And let us know if: * Sandbox.page2 looks 'normal' (has version/history, displays link to page1) * link to page1 in Sandbox.page2 is correct/clickable (click opens page1) * page1 still looks as before If you answer to some of the above 'it is problem here', then you should go back to the last step which lead to the problem and repeat it using some browser-based debuging tool (like Firebug), as Marius suggested. Let us know what happend. R.
I've spent hours on this, reinstalling tomcat, recreating user in mysql, reinstalling xwiki, reinstalling xar over and over again. The thing is there is no error message, I've installed xwiki successfully in the past (2 years ago in a Windows 2003 Server box) It's just a basic installation, I don't know why it's not working, I've already tested with tomcat 6 and 7. Maybe I should report this as a bug, I'm not sure really. My environment Operating System: Centos 5 Xwiki version: xwiki-enterprise-web-4.1.4.war Servlet Container: Tried with apache-tomcat-6.0.35 and apache-tomcat-7.0.30, same issue in both of them Instructions followed: http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationTomcat (all the way until Activate headless mode, inclusive) Also tried instructions from https://wiki.archlinux.org/index.php/XWiki No error message anywhere, did the firebug thing you told me about, nothing there, everything seems just fine What is wrong then? I'll show it to you with some screenshots, I think it's much easier to understand I'm so sorry if I don't give you all the needed information, this is what I have so far: <http://xwiki.475771.n2.nabble.com/file/n7581588/link-creation-my-recent-changes-is-empty.jpg> <http://xwiki.475771.n2.nabble.com/file/n7581588/link-creation-all-pages-loading-data-never-ends.jpg> <http://xwiki.475771.n2.nabble.com/file/n7581588/link-creation-search-no-results-page-does-exist.jpg> <http://xwiki.475771.n2.nabble.com/file/n7581588/administration-administer-spaces-is-empty.jpg> -- View this message in context: http://xwiki.475771.n2.nabble.com/My-Recent-changes-is-empty-tp7581535p75815... Sent from the XWiki- Users mailing list archive at Nabble.com.
participants (4)
-
Juan Carlos Vizueta -
jvizueta -
Marius Dumitru Florea -
Ryszard Łach