Page MenuHomePhorge

20130507.releephrqmailkeypop.php
No OneTemporary

Size
598 B
Referenced Files
None
Subscribers
None

20130507.releephrqmailkeypop.php

<?php
echo pht('Populating Releeph requests with mail keys...')."\n";
$table = new ReleephRequest();
$table->openTransaction();
// From ponder-mailkey-populate.php...
foreach (new LiskMigrationIterator($table) as $rq) {
$id = $rq->getID();
echo "RQ{$id}: ";
if (!$rq->getMailKey()) {
queryfx(
$rq->establishConnection('w'),
'UPDATE %T SET mailKey = %s WHERE id = %d',
$rq->getTableName(),
Filesystem::readRandomCharacters(20),
$id);
echo pht('Generated Key')."\n";
} else {
echo "-\n";
}
}
$table->saveTransaction();
echo pht('Done.')."\n";

File Metadata

Mime Type
text/x-php
Expires
Thu, Jul 17, 6:20 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
372982
Default Alt Text
20130507.releephrqmailkeypop.php (598 B)

Event Timeline