Wordpress

Mystique Blog Description font spacing

Mystique settings:
User CSS:
#site-title p.headline{ letter-spacing:0em; }

By WladyX on 4 January, 2010 | General, Wordpress | A comment?

Administration Over SSL

wp-config.php:

define(‘FORCE_SSL_ADMIN’, true);

http://codex.wordpress.org/Administration_Over_SSL

By WladyX on 12 November, 2009 | General, Wordpress | A comment?

Howto: Create a page tab for a category in Wordpress

By WladyX on 26 October, 2009 | General, Wordpress | A comment?

Wordpress SVN

Updating to a New Stable Version:

$ cd blog
$ svn sw http://svn.automattic.com/wordpress/tags/2.6.3/ .

Installing/Updating WordPress with Subversion « WordPress Codex

By WladyX on 25 October, 2008 | General, Wordpress | A comment?

Convert WordPress database from Latin1 to UTF-8

$ mysqldump –default-character-set=latin1 –databases wordpress > m.sql

$ replace “CHARSET=latin1″ “CHARSET=utf8″ \
“SET NAMES latin1″ “SET NAMES utf8″ < m.sql > m2.sql

$ mysql < m2.sql

wp-config.php:
define(‘DB_CHARSET’, ‘utf8′);
define(‘DB_COLLATE’, ”);

atppp’s Blog » Convert WordPress database from Latin1 to UTF-8

By WladyX on 30 June, 2008 | Mysql, Wordpress | A comment?

Wordpress Debian

bash /usr/share/doc/wordpress/examples/setup-mysql -n wp_mortiablog blog.mortia.org.uk

Andy » Adding a new WordPress blog to a Debian install

By WladyX on 20 May, 2008 | Ubuntu, Wordpress | A comment?

Wordpress Wp-content Folder

<Directory “/var/www/wladyx.wxs.ro/wp-content”>
Options -Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>

By WladyX on 13 March, 2008 | Wordpress | A comment?