Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Forum: Fixing WordPress
    In reply to: Permalinks fail

    Hi, Gregor!
    Yep, RewriteBase is the path to your blog root (I think It’ll work without it too).
    The love.php file can be anything, I just happened to have a file called that. You can use any file that you have or creates – the interesting part is to see that the link is rewritten.
    Phpinfo
    <?php
    phpinfo();
    ?>

    will show more interesting stuff than an empty file.

    Please go to post https://www.ads-software.com/support/3/8665 and have a look to see if it helps.

    Forum: Fixing WordPress
    In reply to: blogroll import

    I had the exact same problem when trying to import a blogroll from Blo.gs via a url.
    A quick check at php_info() told me this:
    allow_url_fopen Off
    And a check at my providers support page told me that they run PHP in Safe Mode.
    A search at php.org gave this hint:
    Regardless of how you run PHP, you can change certain values at runtime of your scripts through ini_set(). The configuration option will keep this new value during the script’s execution, and will be restored at the script’s ending.
    (https://us4.php.net/manual/en/function.ini-set.php)
    So I added this:
    ‘ini_set(“allow_url_fopen”, “1” );’
    on line 6 in my link-import.php
    and now I have a successfully imported blogroll.
    Greetz

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