All,
I have a problem. I logging in, after I'm close the window of my wiki
When I open my site, I follow loggin in. So I clean all the cookies, the
cache, but I always follow loggin in.
Thanks in advance
Hello!
I installed a new instance of xwiki on my local machine. I tried to set up the email notification but it didn't really work. In the XWiki Preferences I set the outgoing smtp server to several smtp servers such as smtp.google.com, smtp.comcast.net, etc. Howver, there seem to be some authentication issues and I get the following error message:
***
Error number 4001 in 4: Error while parsing velocity page Demo.SendMailTestPage Wrapped Exception: Invocation of method 'sendMessage' in class com.xpn.xwiki.XWiki threw exception class com.xpn.xwiki.XWikiException : Error number 10006 in 10: Could not send mail to server smtp.comcast.net port 25 error code 530 (530 Authentication required ) OR
Error number 4001 in 4: Error while parsing velocity page Demo.SendMailTestPage Wrapped Exception: Invocation of method 'sendMessage' in class com.xpn.xwiki.XWiki threw exception class com.xpn.xwiki.XWikiException : Error number 10006 in 10: Could not send mail to server smtp.gmail.com port 25 error code 530 (530 5.7.0 Must issue a STARTTLS command first h14sm757315wxd )
***
I also tried to use my own smtp server (hmailserver) but then I had some relay problems and the following error message:
***
Error number 4001 in 4: Error while parsing velocity page Demo.SendMailTestPage Wrapped Exception: Invocation of method 'sendMessage' in class com.xpn.xwiki.XWiki threw exception class com.xpn.xwiki.XWikiException : Error number 10006 in 10: Could not send mail to server mail.hmailserver.com port 25 error code 550 (550-207-105-15-139.ded.pacbell.net (XWiki version 0.9.840) 207.105.15.139? is 550-currently not permitted to relay through this server. Perhaps you have not 550-logged into the pop/imap server in the last 30 minutes or do not have SMTP 550 Authentication turned on in your email client. )
***
I have right now no idea how to resolve these issues. I would appreciate any help in setting up the smtp server for the email notification.
Cheers,
Jens
Hi,
We got a new load of spam related hammering on xwiki.com. It is more and
more horrible and creates more and more unuseful load on xwiki.com. Spam
robots have included creation of XWiki accounts and use of these
accounts to publish spam data in the wiki pages.
I've had to deactivate statistics since each spam-related request that
cannot be catched by mod_security creates load on the database for these
statistics.
The only way to get statistics back will be to use Javascripts which
triggers a statistics storage request in the database (which would be
ignored by spam robots and search engines), or to wait until we can read
Google Analytics or another external statistics engine and redisplay it
on xwiki.com.
In the future we will propose a tutorial to activate Google Analytics on
your wikis. If you know how to do it you should include this on your
wiki pages to get statistics for your wiki.
I'm getting more and more worried about these spam robots and would
welcome any help and ideas on how to handle this to make xwiki.com a
viable platform for hosted public wikis.
Ludovic
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
Is it possible to save one object at at time?
I have looked at the template code for the "edit object" action and found
that ALL objects of a particular document are loaded
and when the "Save Objects" action is initiated, ALL the objects are sent
back in an HTML Form.
I have also looked (succinctly) at the XWiki Java code (in the "web" folder
of the SVN) and in doing so, I am lead to believe that a *single* object can
not be saved independantly from the whole document and all its objects.
Is this true?
Is there a way to save changes to one object at a time?
Help!
Jean-Lou.
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.407 / Virus Database: 268.12.9/458 - Release Date: 27/09/2006
Hi all..
I guess this would be mainly for the xwiki.com admins, but hopefully
there is another way around this.
Primarily what I have is a document clone feature using
$xwiki.copyDocument (created with some guidance from this mail group);
this naturally works on my local xwiki install, but not on the xwiki.com
hosted wiki.
Message received (I suspect this message comes from the
document.location.href change in script, however when I try to access
the document it appears to not be created):
_____________
Your request has been blocked. If you feel this is an error, please
contact us at webmaster at xwiki dot com. Thanks.
_____________
Code used (added as a menu option with prebuilt querystring):
_____________
#set($sOldWeb=$request.cloneweb)
#set($sOldDoc=$request.clonedoc)
#set($sOldParent=$request.cloneparent)
#set($sDoClone=$request.doclone)
#set($sCloneEditType=$request.editaction)
#set($sCloneSetTitle=$request.settitle)
1.1 Clone a document.
This will copy a document and all it's related content into a new
document.
#if("true" == $sDoClone)
<form action="$doc.getURL("view")" id="newdoc">
<input type="hidden" name="oldparent" value="${sOldParent}">
<input type="hidden" name="oldwebname" value="${sOldWeb}"
size="8">
<input type="hidden" name="olddocname" value="${sOldDoc}"
size="8">
<input type="hidden" name="edittype"
value="${sCloneEditType}" size="8">
<input type="hidden" name="name" value=""/>
New Document: <input type="text" name="title" value="" />
<input type="button" value="Create" onclick='if
(updateName(this.form.title,this.form.name)) {this.form.submit(); }'>
</form>
#elseif($request.getParameter("oldwebname"))
#set($sOldWeb=$request.getParameter("oldwebname"))
#set($sOldDoc=$request.getParameter("olddocname"))
#set($sNewDoc=$request.getParameter("name"))
#set($sDocTitle=$request.getParameter("title"))
#set($sCloneEditType=$request.getParameter("edittype"))
#set($sourceDocName="${sOldWeb}.${sOldDoc}")
#set($targetDocName="${sOldWeb}.${sNewDoc}")
$xwiki.copyDocument($sourceDocName, $targetDocName)
* *Clone Prepaired.*
<script language="javascript">
<!--
document.location.href='../../save/${sOldWeb}/${sNewDoc}?xredirect=../..
/${sCloneEditType}/${sOldWeb}/${sNewDoc}?isclone=true%26title=${sDocTitl
e}'
//-->
</script>
#else
* *No document information. Please try again, from the "More
Actions" menu while viewing the document you wish to Clone.*
#end
_____________
Frank,
I am login as admin, what do I have to do to allow admin to see the files? I remember I could get to them before.
Regards,
Wei-hsing
-------------- Original message ----------------------
From: Frank Häfemeier <frank(a)haefemeier.net>
> >I am trying to get skin and template files, from admin menu on my xwiki
> >site, but I am getting errors...
> >
> >HTTP Status 404 - /xwiki/templates/
> >
> >type Status report
> >
> >message /xwiki/templates/
> >
> >description The requested resource (/xwiki/templates/) is not available.
> >Apache Tomcat/5.5.17
>
> The files are there, but you have no access rights. You must configure
> a readable access in your apache configuration.
>
> Bye
>
> Frank
>
>I am trying to get skin and template files, from admin menu on my xwiki
>site, but I am getting errors...
>
>HTTP Status 404 - /xwiki/templates/
>
>type Status report
>
>message /xwiki/templates/
>
>description The requested resource (/xwiki/templates/) is not available.
>Apache Tomcat/5.5.17
The files are there, but you have no access rights. You must configure
a readable access in your apache configuration.
Bye
Frank
Hi,
I am trying to get skin and template files, from admin menu on my xwiki site, but I am getting errors...
HTTP Status 404 - /xwiki/templates/
type Status report
message /xwiki/templates/
description The requested resource (/xwiki/templates/) is not available.
Apache Tomcat/5.5.17
Any ideas?
Wei-hsing
Hello,
I've configured my xwiki to increase attachment size according to
these instructions:
http://www.xwiki.org/xwiki/bin/view/AdminGuide/Config+Larger+Attachments
I'm seeing this error/stack when trying to attach anything above 50mb
(below 50mb works fine):
===============================================================
A problem occured while trying to service your request. Please contact
the support if this happens again.
Detailed information:
Error number 11008 in 11: Exception while parsing uploaded file
Wrapped Exception: the request was rejected because it's size exceeds
allowed range
com.xpn.xwiki.XWikiException: Error number 11008 in 11: Exception
while parsing uploaded file
Wrapped Exception: the request was rejected because it's size exceeds
allowed range
at com.xpn.xwiki.XWikiService.actionUpload(XWikiService.java:135)
at com.xpn.xwiki.web.ViewEditAction.execute(ViewEditAction.java:195)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:127)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:541)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:797)
Wrapped Exception:
org.apache.commons.fileupload.FileUploadBase$SizeLimitExceededException:
the request was rejected because it's size exceeds allowed range
at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:317)
at com.xpn.xwiki.XWikiService.actionUpload(XWikiService.java:133)
at com.xpn.xwiki.web.ViewEditAction.execute(ViewEditAction.java:195)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:127)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:541)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:797)
===============================================================
Does anyone have any idea what could be causing this or what I forgot to tweak?
Thanks!
-jeff