CartMetrix - Do you know yours?

1/31/2007

Terminal server has exceeded maximum number of allowed connection

This error gets me all the time when using MS Remote Desktop to access remote Windows servers.

List the active sessions for the server 1.2.3.4

qwinsta /server:1.2.3.4
SESSIONNAME  USERNAME        ID      STATE     TYPE
console      Administrator   0       Active    wdcon
rdp-tcp                      65536   Listen    rdpwd
rdp-tcp#2    Administrator   1       Active    rdpwd
rdp-tcp#4    Administrator   2       Active    rdpwd

Kill session #2

rwinsta /server:1.2.3.4 2

Popularity: 44%

1/30/2007

Use PHP Substr() and Strpos() to Split a String

To split a variable $act like:

$act = 'coupon:edit';
$act = 'coupon:delete';
$method = substr($act, strpos($act, ':')+1);

Popularity: 21%

1/18/2007

Open Relay Test

From the machine to test:

telnet relay-test.mail-abuse.org

Popularity: 13%

1/15/2007

Be Care When Changing Contact Email on a Domain at Godaddy.com

I recently tried to transfer a block of domains out of Godaddy.com for a client. We had to update the email as the domain was registered, forgotten and the original email contact was given over to spammers. ICANN regulations say:

Upon denying a transfer request for any of the following reasons, the Registrar of Record must provide the Registered Name Holder and the potential Gaining Registrar with the reason for denial. The Registrar of Record may deny a transfer request only in the following specific instances:

1. Evidence of fraud
2. UDRP action
3. Court order by a court of competent jurisdiction
4. Reasonable dispute over the identity of the Registered Name Holder or Administrative Contact
5. No payment for previous registration period (including credit card charge-backs) if the domain name is past its expiration date or for previous or current registration periods if the domain name has not yet expired. In all such cases, however, the domain name must be put into “Registrar Hold” status by the Registrar of Record prior to the denial of transfer.
6. Express written objection to the transfer from the Transfer Contact. (e.g. - email, fax, paper document or other processes by which the Transfer Contact has expressly and voluntarily objected through opt-in means)
7. A domain name was already in “lock status” provided that the Registrar provides a readily accessible and reasonable means for the Registered Name Holder to remove the lock status.
8. A domain name is in the first 60 days of an initial registration period.
9. A domain name is within 60 days (or a lesser period to be determined) after being transferred (apart from being transferred back to the original Registrar in cases where both Registrars so agree and/or where a decision in the dispute resolution process so directs).

http://www.icann.org/transfers/policy-12jul04.htm

Godaddy.com goes this a few steps further and decides to put a 60 day hold for any change in registrant information (like the contact email). Its an obvious retention ploy, but they lean on security, saying someone may be trying to hijack the domain.

OK… it’s my domain, I’m on the phone with you, what information do you need me to verify to prove this isn’t a hijack attempt? Credit card I registered it with, the original purchase confirmation email (I save everything digital), what do you need?

Sorry, sir but that isn’t going to be possible. You agreed to our terms when you purchased the domain and they explicitly state that any changes to the registrant information will lock the domain for 60 days.

You got me there, the fine print I agreed to three years ago when I purchased. If this was really for my protection, important things like this would be reminded when making a change.

I browsed the site looking for this fine print and was not able to find it. Called back to ask for a link and the next rep gave me the same spiel until I read him the ICANN document. Wait… are you saying you only changed the email address? Usually we let that go as an ‘exception’.

Let me check some things. On hold for over thirty minutes because the ‘transfer concierge’ was really busy. The rep did pop back in a few times to apologize and be sure I was still holding. Thanks for speakerphone.

Finally, the hold has supposedly been lifted. I re-initiated the transfer and crossed my fingers.

Popularity: 37%

1/12/2007

ZenCart Manufacturers System Errors

In ZenCart versions immediately prior to 1.3.6 using many of the public side manufacturers functions may produce this error:

Warning: constant(): Couldn't find constant in  .../includes/init_includes/init_add_crumbs.php on line 45

The error is caused by a missing database column that was added in the official 1.3.6 release. If upgrade is not immediately possible the following SQL snippet will correct the problem in most cases:

ALTER TABLE get_terms_to_filter ADD get_term_table varchar(64) NOT NULL;

ALTER TABLE get_terms_to_filter ADD get_term_name_field varchar(64) NOT NULL;

UPDATE get_terms_to_filter SET get_term_table = 'TABLE_MANUFACTURERS', get_term_name_field = 'manufacturers_name' WHERE get_term_name = 'manufacturers_id';

UPDATE get_terms_to_filter SET get_term_table = 'TABLE_MUSIC_GENRE', get_term_name_field = 'music_genre_name' WHERE get_term_name = 'music_genre_id';

UPDATE get_terms_to_filter SET get_term_table = 'TABLE_RECORD_COMPANY', get_term_name_field = 'record_company_name' WHERE get_term_name = 'record_company_id';

If you are using other product types, some additional UPDATE statements will be required for your new product types.

I found this solution after some searching on the ZenCart forums.

Popularity: 27%

1/11/2007

Reductive

adj. characterized by or causing diminution or curtailment;
“their views of life were reductive and depreciabory” - R.H.Rovere

Popularity: 15%

Next Page »


damonparker.org is proudly powered by WordPress
Entries (RSS) and Comments (RSS).

copyright © 2002-2008 damonparker.org. all rights reserved.

Close
E-mail It