the problem: “Your PHP installation appears to be missing the MySQL extension which is required by WordPress.” is shown when attempting to install wordpress on windows
try this: check your php.ini file and make sure the following line is uncommented (i.e. does not have a semi colon in front of it):
extension=php_mysql.dll
if that is ok, then check for the line in the file that designates the location of the extension_dir. by default mines said:
extension_dir = "./"
but i had to change it to the following and then it worked (note: my php installation directory is c:\php):
extension_dir = "C:\php\ext"
Permanent link to this article: http://devnumbertwo.com/515
the problem: assigning an elastic ip to an ec2 instance doesn’t work – can’t see your website.
try: checking the windows firewall – the standard rule that allows the tcp standard ports through doesn’t seem to be enough. if you create a custom one allowing ports 80/443 that should work.
Permanent link to this article: http://devnumbertwo.com/511
the problem: attempting to mount an amazon EBS volume to an EC2 linux machine results in the following:
mount: wrong fs type, bad option, bad superblock on /dev/xvdf,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Caution: This procedure assumes you want to mount an empty volume. If you’re mounting a volume that already has data on it (e.g., a public dataset), don’t use mkfs before mounting the volume. Otherwise you’ll format the volume and delete the existing data.
as i attempted to edit some installation files to update scripts to point to a different directory than the defaults i realized that i needed to replace a string with one that would have slashes in it – eg. replacing ‘u01′ with ‘somewhere/else’
i then found out that “/” in the search/replace command is just a default and you can replace it with a different character:
%s#u01#somewhere/else#ABC#g
or
%s+u01+somewhere/else+g
or
%s_u01_somewhere/else_g
Permanent link to this article: http://devnumbertwo.com/483
in a nutshell in order to have something mounted on startup under linux you will need to edit your /etc/fstab file. if you don’t know how to do that, take a look at the link below. it’s a pretty thorough yet easy to understand read on how to edit the fstab file:
i looked high and low for this and finally found it – works for PeopleTools 8.4x+:
note: you must have Tuxedo installed as it is required in order to run the Data Mover in a Unix shell.
execute the psconfig.sh to set the environment variables but first make sure the following variables in psconfig.sh have been modified to point the proper locations in your PS_HOME.
export PS_DM_DATA=default is $PS_HOME/data.
export PS_DM_SCRIPT=default is $PS_HOME/scripts.
export PS_DM_LOG=default is $PS_HOME/log.
. ./psconfig.sh
PS_DM_DATA = directory where the PS Data Mover executable searches for input data (.DAT) files.
PS_DM_SCRIPT=location of the ps Data Mover scripts files.
PS_DM_LOG=location of the PeopleSoft Data Mover log files.
run the PeopleSoft Data Mover executable:
psdmtx -CT dbtype -CS server -CD database name -CO user -CP password -CI connectid -CW connectpassword -FI filename.dms
Permanent link to this article: http://devnumbertwo.com/473
Download the latest version of s3fs (which is a FUSE backend for S3 — note that fuse 2.8.4 is required for the latest version of s3fs) from http://code.google.com/p/s3fs/downloads/list
the question: in windows, why is “System Idle Process” using up my CPU?
the answer: basically shows that your CPU isn’t doing much at the moment – so relax… if you’re interested in the long version of this answer check it out here.
Permanent link to this article: http://devnumbertwo.com/393
The Dropbox Blog » Blog Archive » The Dropbox API!Posted by Brian Smith on October 20, 2011 We’re really excited to announce the launch of the Dropbox API for mobile and web apps! Even if you have no clue what the Dropbox API does, chances are you’ve already used it – it’s the engine that powers our iPhone and Android apps and thousands of third-party Dropbox-enabled apps.