Tag: sitebuilding

  • Permalinks & .htaccess

    To enable pretty permalinks, or ‘clean URLs’ as it were in drupal speak, WP needs to be able to write to .htaccess. The file should live next index.php on the folder specified as the URL on Genereal > options. If it does not exist, upload 1.htaccess.txt and rename to .htaccess. 

    This is the code that needs to go in it

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

  • Hide Title

    There are several ways to selectively hide the title of pages and posts. The easiest one seems to be the Hide Title plugin.

  • WYSIWYG issue: UI only visble for admin

    This was an obscure one, this workaround did it for me:

    https://community.openatrium.com/issues/node/2561

    The Wysiwyg FCKeditor 2.6.6 is not visible when only one input format is authorized for a given user/role, but it is visible when two input formats are authorized. How can I have it visible with only the default input format authorized?

    Also discussed here:

    http://drupal.org/node/1296012#comment-form