Month: July 2013

  • Cannot make my IMDB watchlist public?

    Each time I try to change my IMDB watchlist from “private” to “public”, it seems to be changed but comes back to “private” once I click on “Done”.

    This is a bug in the IMDB interface. There is fortunately a workaround: after changing the status of the list, add a movie in that list before clicking on “Done”.

    This bug is reported here.

    Loading

  • “Page not Found” in WordPress after Upgrade

    I got “Page Not Found” on any permalink clicked in my blog after doing:

    • an upgrade of the Synology’s WordPress package from 3.4 to 3.5.
    • and an upgrade all my Plugins.

    The problem was in the URL rewriting configured in the .htaccess.

    Click to Read More

    The easiest solution is to reset the “Default” common settings for the Permalink via the WordPress Dashboard. This will reset the .htaccess.

    1. Go into the DashBoard > Settings > Permalinks.
    2. Select “Default” in the “common settings”
    3. “Save Changes”

    Possibly set back next your favorite settings (such as “Post name” in my case).

    Voilà.

    Here is for information purpose the content of the .htaccess once fixed:

    [bash] # BEGIN WordPress

    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]

    # END WordPress
    [/bash]

    Loading