Posts Tagged ‘wp-config.php’

Easy update to WordPress 3.0.1

Friday, July 30th, 2010

Today I made an easy upgrade to WordPress 3.0.1, automatic and thanks to my great webhost (swedish webhost Binero.se) I can get around the FTP-account form in WordPress. I just set some constants for method and permissions in wp-config.php:

1
2
3
define( 'FS_METHOD', 'direct' );
define( 'FS_CHMOD_DIR', 0755 );
define( 'FS_CHMOD_FILE', 0644 );

How easy this made my life, since I tend to lot of Worpress blogs. If you want to learn some great configuration tips for your wordpressblog check out this article on digwp, theres a lot to do then just easy updates.