All your post are belong to us
A test post from my new DROID phone
Since Windows server only gives you 2 remote connections, it’s easy to end up “locked out” of the server. To overcome that, you can actually use a third remote connection that allows you to get in and kill the other offending connections.
On Linux type:
rdesktop -0 1.2.3.4
where 1.2.3.4 is the ip address of the server that you want to connect to. Obviously, you need to have rdesktop installed and it should be a fairly recent version.
The easiest way to mount an external USB drive from the commandline is:
sudo mount -t ntfs-3g /dev/sdc1 /media/red -o umask=0000
This actually sets it up so that’s completely readable/writeable by anyone.
To update the server time, type:
sudo ntpdate -b pool.ntp.org
For me, OpenDocMan wouldn’t allow me to add new users. It turns out that the SQL query was wrong. Since the first field, id, is set as ‘autoincrement’, it’s handled by the database directly, so there should be no reference to it in the query. It may just be my installation that it doesn’t work on, I don’t know. Anyway, here’s what I did to get it to work. You need to remove a couple of things from one of the pages – commitchange.php
Firstly, change $query = “INSERT INTO user (id, username, password,etc.
to read
$query = “INSERT INTO user (username, password,etc.
Notice that id and the comma are removed.
Secondly, change VALUES(”, ‘”. addslashes($_POST[
to read
VALUES( ‘”. addslashes($_POST[
Notice that the single quotes and comma are removed, just after the parentheses.
In case of Brain-fart, use the instructions below to reset the admin password in Wordpress. It needs to be done through phpMyAdmin, MySQL query browser, or some such place that allows you to run SQL commands.
update wordpress.wp_users
set user_pass = MD5(‘new_password’)
where user_login = ‘admin’
Logon, su to ldm (sudo su - ldm) and run: ldmadmin start If the queue is corrupt, the LDM will freak. In this case, do the following: ldmadmin stop ldmadmin delqueue ldmadmin mkqueue ldmadmin start It's good to run: ldmadmin watch after that, just to verify that stuff is coming in.
Binary package hint: fetchmailconf
I installed fetchmailconf via the Package Manager and when I tried to run it, it would error out. Googling the problem revealed the answer…
From: https://bugs.launchpad.net/ubuntu/+source/fetchmail/+bug/371072/+viewstatus
“I have installed fetchmailconf 6.3.9~rc2-4ubuntu1 on Ubuntu 9.04; /usr/bin/fetchmailconf — a shell script to start the real Python script — fails to start because it looks for the real fetchmailconf script in the wrong place.”
/usr/bin/fetchmailconf as installed reads:
#! /bin/sh
exec /usr/bin/python /usr/lib/`pyversions -d`/site-packages/fetchmailconf.py “$@”
Changing “site-packages” to “dist-packages” fixes the problem and allows fetchmailconf to start.
I would STRONGLY urge you to ditch Claris Homepage and Filemaker for a more robust solution. If you still insist on using them, this should at least get you started…
Instructions for using Claris Homepage 3.0 to create forms for Filemaker Pro 4.0
1> Make sure that FM Pro 4.0 is running and that the desired database is open and shared.
2> Start Homepage and goto — File: New…
3> Choose “Use Assistant”
4> Choose Filemaker Connection Assistant.
5> Follow the Assistant through.
IMPORTANT NOTES ABOUT THE CONNECTION ASSISTANT
On the Database Selection Screen …

DON’T US “This computer”. It’ll kill CHP, or lock up the computer, OR BOTH. I’ve NEVER gotten it to work successfully.
USE: IP Address= localhost, and then click “Connect to server” button. This should bring up a listing of any open and shared databases.
Layout Selection: Make sure that the layout that you select contains all of the fields that you want to be able to use on your form, because you will select the specific fields used a couple of steps down the road.
Feature Selection: You can select to create both the Search and Add New Records pages at the same time here.
Location: I generally choose to create a New Folder to keep all of the pages together, so that I can easily find them to tweak ‘em to my liking. Also, the possibility exists that there may be other files of the same name that would be overwritten otherwise.