How to size up PHP Upload Maximum via .htaccess

How to size up PHP Upload Maximum via .htaccess is pretty easy. This is very usefull for example if you run into your wordpress foto upload limit. Just add the following code to your .htaccess file in the web directory. (In this case up to 40 Megabyte) php_value post_max_size 40M php_value upload_max_filesize 40M the corresponding … Read more

WordPress: Moving Domain of a Worpdress Site – using SQL

Moving a wordpress installation to another Domain the “easiest” way: Use SQL statements! If you move your wordpress for example from a development server to a life/customer installation you first need to compress/zip your installation and put it to the destination server. Backup your database (you may use the mysqldump command) and put the installation … Read more

WordPress: Increase Upload Limit in WordPress

It’s pretty easy to increase the upload limit in wordpress. Use .htaccess increase the upload limit in wordpress Go into the web root of your wordpress installation. Create a file named “.htaccess”. Usually there already is one – edit it in this case. You need two line in there: php_value upload_max_filesize 10M php_value post_max_size 10M … Read more

WordPress: Deutsche Sprache im WordPress einstellen

Eine leichte Sache in 3 Schritte: Sprachdateien unter http://wpde.org/download/sprachdateien/ runterladen. Zip Datei in /wp-content/languages entpacken. Ggfs. muss das Verzeichnis languages dazu noch angelegt werden. SSH User müssen ggfs. noch den Dateibesitzer mit chown auf den Apache User einstellen. (bspw. wwwrun:www bei Suse oder www-data:www-data bei Ubuntu Standard Installationen) In der wp-config.php muss define(‘WPLANG’, ‘de_DE’); eingetragen … Read more