So i've had this same problem, except I'm trying to mkdir on a repo URL instead of a working copy(it's hosted on localhost through apache2). I should ostensibly be able to set a commit log message and then run mkdir, but that does not work. Instead, nothing happens, I get no error message, and the directories are not created. In fact, the revision number does not even change. if my repo url is

 http://localhost/svn/repo1

shouldn't I just be able to do:

 $svn->mkdir("http://localhost/svn/repo1/newDir");

where $svn is an initialized SVN::Client object with the correct authentication information?

I suspected that it would be something having to do with an access error through apache, but after reviewing both the error and access logs in apache2, I can find no errors, and the script is indeed succeeding in accessing my SVN repo.

Does anyone have any ideas?


In reply to Re: SVN::Client not committing? by Anonymous Monk
in thread SVN::Client not committing? by zigdon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.