phunehehe
Forum Replies Created
-
Forum: Plugins
In reply to: [Podlove Web Player] Shortcode support for srcSorry, 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.Forum: Installing WordPress
In reply to: my blog is OK, but admin pages are notThanks James, do you have any clue on how to fix the configuration?
Forum: Installing WordPress
In reply to: my blog is OK, but admin pages are notHello 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?Forum: Installing WordPress
In reply to: my blog is OK, but admin pages are notHi batrachoid, how can I check the log? I tried looking in the wordpress directory but found nothing regarding log files