• I was assigned an SVN repository to upload my plugin, but there appears to be a problem with it. Every time I commit, it runs for 15 minutes and then fails with an error. I’ve asked around and I’m told this is a problem on the server. How can I go about getting this resolved so I can publish my plugin?

    $ mkdir pipeline_svn2
    $ svn co http://plugins.svn.wordpress.org/wp-github-pipeline pipeline_svn2
    $ cd pipeline_svn2
    
    [ copied all files into pipeline_svn2/ ]
    
    $ svn add trunk/*
    $ svn ci -m 'Adding v1.0 files'
    Adding         trunk/wp-github-pipeline.php
    Transmitting file data ............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................svn: E000002: Commit failed (details follow):
    svn: E000002: Can't open file '/home/svn/repos/wp-plugins/db/transactions/1233755-rx30.txn/props': No such file or directory

    I think this probably belongs in the WP-Advanced forum but I’m not sure where else to post it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Not the Advanced sub-forum but to miscellaneous where I moved it to.

    Please send an email to the plugins team at plugins [at] wordpress.org It may be something simple to fix.

    Thread Starter emersonthis

    (@sdp)

    I was instructed to try again using the https protocol. I did this and the error message changed:

    $ svn relocate https://plugins.svn.wordpress.org/wp-github-pipeline
    $ svn ci -m 'Adding 1.0 files'Adding         trunk/README.md
    Adding         trunk/bin
    svn: E195023: Commit failed (details follow):
    svn: E195023: Changing directory '/Applications/MAMP/htdocs/pipeline_svn2/trunk/bin' is forbidden by the server
    svn: E175013: Access to '/!svn/txr/1234183-rxgi/wp-github-pipeline/trunk/bin' forbidden

    I read that this new “Forbidden by the server” error can sometimes be the result in criss-crossed credentials. And I do have two different WordPress.org accounts. So I removed the credentials file in ~/.subversion/auth/svn.simple/ and re-authenticated as the correct user. Now I get a slightly more verbose error:

    ...................................................................................................................................................................................................................................................................................svn: E165001: Commit failed (details follow):
    svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output:
    PHP Parse error:  syntax error, unexpected 'class' (T_CLASS) in - on line 9
    
    ***********************************
    PHP error in: wp-github-pipeline/trunk/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.php:
    Errors parsing wp-github-pipeline/trunk/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.php
    ***********************************
    Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    As you discovered, “forbidden” means you used the wrong username or password.

    Your latest error message says that your PHP code contains a syntax error.

    Yes, we do run a check on PHP code entering the system. You can’t upload invalid code to the SVN. Fix the code so that it actually works, then upload it.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Plugin SVN repository is broken’ is closed to new replies.