Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter phunehehe

    (@phunehehe)

    Sorry, I should have explained better. I happened to need protected audio files, not just files available by public URLs. So the URL is a private one generated by the shortcode s2File and there wasn’t anyway to make Podlove use that. Now I realize that’s quite a corner case, but maybe someone else might find it useful?

    s2File is provided by s2Member.

    Thread Starter phunehehe

    (@phunehehe)

    Thanks James, do you have any clue on how to fix the configuration?

    Thread Starter phunehehe

    (@phunehehe)

    Hello again,

    We seem to have found the solution, but this is leading to something worse. Here is the error

    Warning: require_once(./wp-load.php) [function.require-once]: failed to open stream: No such file or directory in ./admin.php on line 20
    Fatal error: require_once() [function.require]: Failed opening required './wp-load.php' (include_path='.:/pear/lib:/var/www/pear/lib') in ./admin.php on line 20

    To “fix” this we had to change line 20 in wordpress/wp-admin/admin.php from
    require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
    to
    require_once(dirname(dirname(__FILE__)) . './wp-load.php');
    (add a dot before /wp-load.php).

    The original line was telling the server to look for wp-load.php in the same directory as admin.php, when it was really one directory level above admin.php.
    Why should we need to do that at all? Is this a (huge) WordPress bug or do we have some misconfiguration?

    Thread Starter phunehehe

    (@phunehehe)

    Hi batrachoid, how can I check the log? I tried looking in the wordpress directory but found nothing regarding log files

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