wordpress migration the painless way
May 22, 2006 | In WebTechnology | 2 CommentsChanged web hosts & wanted to move this Wordpress blog.
on old server
Exported SQL tables from the old installation.
Make sure you of course have any custom php files & templates.
on new server
Created new Wordpress installation on new server.
save wp_options table. Delete all other SQL tables on the new installation EXCEPT this wp_options table. It has the server specific settings.
Remove wp_options table info from OLD sql file and run that SQL file in new Database. This populates the new blog with all of the old blog’s information.
Upload any templates and custom files.
Voila - New Wordpress installation!
This should work on identical or similar wp versions.
Unidata 6.1 Documentation Set
May 19, 2006 | In Other Tech | No CommentsFull Set of Documentation available from IBM U2 Library
6.1 and other U2 systems available there.
Also available in piecemeal pdf files: http://my.antioch.edu/docs/unidata/ The Index and Online Guide Page that has links to all other PDF’s : http://my.antioch.edu/docs/unidata/onlguide61.pdf
Linux metacharacters
May 19, 2006 | In Linux, Other Tech | No CommentsHere is the meaning of some metacharacters:
* = Matches any sequence of zero or more characters, except for “.” (a dot) at the beginning of a filename.
? = Matches any single character.
[abC1] = Matches a single character in the enumerated set. In this example the set contains: ‘a’, ‘b’, ‘C’, and ‘1′.
[a-z] = Matches any lower-case letter.
[A-F] = Matches any upper-case letter from A to F.
[0-9] = Matches any single digit.
[a-zA-Z0-9] = Matches any letter (lower or upper case) or any digit. The character \ (backslash) is also special. It makes the subsequent special character aquire literal meaning (read on).
Examples. This command will list any filename in the current directory, with the exception of filenames starting with “.” (dot):
ls *
An equivalent to this command is to type just ls or dir (without the “*”). Files with names starting with “.” are not shown because “.” as the first character of a filename is not matched by “*”. Think of files with names starting with “.” as an equivalent of DOS hidden files. Use ls -a (list with the option “all”) or ls .* to see these “dot” files. The “dot-files” are common in the user home directories and they typically contain user-level configurations.
This command will list any file (in the current directory) that contains a dot (except files starting with a dot):
ls *.*
Powered by WordPress
RSS Feed - Syndicate this Site
and comments feed



