stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


DCF probe includes look at Regier's computer







DCF probe includes look at Regier's
computer

DCF probe includes look at Regier's
computer
07/09/2004 05:10 PM

AP via Florida Times-Union Jul 9 2004 9:47PM GMT




This is a GrokNews Entry: (what is grok?)





Similar Items

DCF probe includes look at Regier's computer

Grok Headline matches for DCF probe includes look at Regier's computer

US to probe taking of computer files


US to probe taking of computer files 04/27/2004 01:55 AM
Boston Globe Apr 27 2004 6:42AM GMT

MS to probe human-computer interface


MS to probe human-computer interface 04/21/2004 03:38 PM
Research team mobilised

Computer deal probe called for


Computer deal probe called for 07/31/2004 01:56 PM
Bangkok Post Jul 31 2004 6:32PM GMT

Computer Associates fires 9 after
internal probe


Computer Associates fires 9 after
internal probe
04/19/2004 05:49 PM
AFP via Yahoo! Apr 19 2004 9:39PM GMT

Computer Associates Offers to Settle
Probe


Computer Associates Offers to Settle
Probe
05/25/2004 07:10 PM
AP via Baltimore Sun May 25 2004 10:42PM GMT

FBI finishes probe into missing lab
computer disks


FBI finishes probe into missing lab
computer disks
01/06/2005 02:43 PM
AP via San Francisco Chronicle Jan 6 2005 6:46PM GMT

Computer Associates Probe Sparks Firings


Computer Associates Probe Sparks Firings 04/19/2004 12:35 PM
Miami Herald Apr 19 2004 5:09PM GMT

Computer Associates CEO resigns amid
probe


Computer Associates CEO resigns amid
probe
04/21/2004 11:44 AM
USA Today Apr 21 2004 3:32PM GMT

Corruption concerns raised in computer
probe


Corruption concerns raised in computer
probe
04/24/2004 06:44 PM
CNEWS Apr 24 2004 10:41PM GMT

Computer Associates fires nine amid
accounting probe


Computer Associates fires nine amid
accounting probe
04/19/2004 01:53 PM
Computer Associates International Inc. (CA) fired nine employees in its legal and finance departments on Monday in connection with its internal investigation of accounting violations that have already led to criminal charges against several former executives.

FBI Copies Computer Hard Drive in Israel
Probe


FBI Copies Computer Hard Drive in Israel
Probe
09/02/2004 11:48 AM
AP via ABCNEWS.com Sep 2 2004 3:52PM GMT

Hatch vs. . . . Conservatives?: Computer
Probe Inflames Activists


Hatch vs. . . . Conservatives?: Computer
Probe Inflames Activists
02/12/2004 11:18 AM
Washington Post Feb 12 2004 3:31PM GMT

Beleaguered Computer Associates fires
nine employees during probe


Beleaguered Computer Associates fires
nine employees during probe
04/19/2004 04:27 PM
Canadian Press via Canada.com Apr 19 2004 8:07PM GMT

Brussels seeks computer firms help in
Microsoft probe


Brussels seeks computer firms help in
Microsoft probe
11/02/2003 07:35 PM
Daily Times Nov 2 2003 6:25PM ET

Four more suspended at Los Alamos lab in
probe of missing computer disks


Four more suspended at Los Alamos lab in
probe of missing computer disks
08/04/2004 08:48 PM
San Francisco Chronicle Aug 5 2004 0:47AM GMT

State drops charges against ex-Davis
aide in computer probe


State drops charges against ex-Davis
aide in computer probe
05/19/2004 03:16 AM
San Francisco Chronicle May 19 2004 7:20AM GMT

Four more on paid leave at Los Alamos
lab in probe of missing computer disks


Four more on paid leave at Los Alamos
lab in probe of missing computer disks
08/04/2004 09:56 PM
San Francisco Chronicle Aug 5 2004 1:44AM GMT

German police raid homes in Sasser
computer worm probe


German police raid homes in Sasser
computer worm probe
05/12/2004 11:16 PM

German police raid homes in Sasser
computer worm probe (AFP)


German police raid homes in Sasser
computer worm probe (AFP)
05/12/2004 09:51 AM
AFP - German police have raided the homes of five people who had been in contact with a teenager arrested last week on suspicion of creating the Sasser computer worm, a spokesman said.

Corruption concerns raised as probe into
Toronto computer deal nears end


Corruption concerns raised as probe into
Toronto computer deal nears end
04/24/2004 02:32 PM
Canadian Press via Canada.com Apr 24 2004 5:45PM GMT

Computer Associates' top exec Kumar
resigns amid accounting probe


Computer Associates' top exec Kumar
resigns amid accounting probe
04/21/2004 06:30 PM
National Post Apr 21 2004 8:54PM GMT

Japan begins probe into computer chip
imports from South Korea's Hynix


Japan begins probe into computer chip
imports from South Korea's Hynix
08/03/2004 09:15 AM
National Post Aug 3 2004 1:06PM GMT

New Gameboy includes Bluetooth


New Gameboy includes Bluetooth 05/11/2004 03:04 PM
PMN Publications May 11 2004 5:28PM GMT

Mac OS X Patch Includes IDN Browser Fix


Mac OS X Patch Includes IDN Browser Fix 03/22/2005 09:55 PM
Apple releases a security update to correct "highly critical" vulnerabilities in its flagship operating system, some affecting Web browsers.

Using PHP Includes for MT Search Results


Using PHP Includes for MT Search Results 07/04/2004 03:28 PM

A lot of people want to roll their own search with Movable Type. Us, for instance — Gadgetopia has a two-tiered search system based on whether the search term appears in the title, keywords, or body of the entry (see this post for more information).

Our search is done in with SQL and PHP, abandoning the MT search system completely. The probem with this method is rendering the search results. If you don't use MT, then you lose two things:

(1) Auto-creation of the permalink. The URL isn't stored anywhere in the database, so you have to recreate it. If your URLs are just based on the entry ID, then it's not hard. However, look at our URLs — they're a conglomoration of the date and the entry title. We'd have to create a PHP function to recreate this scheme — and if we ever changed the URL structure from within MT, we'd have to change the PHP function separately.

(2) Text filters. If you're just converting line breaks, the text filter is not so hard to re-produce. However, if you're using Textile or some other plug-in to filter your text, you're going to have to reproduce that in PHP as well so the previews render correctly.

You can avoid all this, however, by simply using PHP includes and an extra Individual Entry Archive. The result is an elegant solution that blends PHP and MT to eliminate the tedium of recreating MT functionality in PHP.

To do this, create a new Individual Entry Archive in MT called "search_fragment." This template should contain the just HTML to present a single search result. Like this:


<tr class="title">
  <td class="title">
    <a href="<MTEntryPermalink>"><MTEntryTitle></a>
  </td>
  <td class="date">
    <MTEntryDate format="%m/%d/%Y">
  </td>
</tr>
<tr class="excerpt">
  <td colspan="2">
    <MTEntryExcerpt>
  </td>
</td>

Configure this template to generate a file in a "search_fragments" directory named for the entry ID only. You don't even have to add an extention, though you can if you like (if so, you'll need the change the PHP code listed below). So the entry in the archiving configuration would be something like:

search_fragments/<MTEntryID>

Now when an entry rebuilds, it will create two files: (1) its normal archive file, and (2) a search result fragment file called "1", "2", "348", etc. in the search_fragments directory. Notice that since we're using standard MT templates to create the fragment, the permalink will be created by MT, and the excerpt text will be formatted according to the text filter the entry is using.

Now, when you use your SQL to get your search results, just SELECT the entry ID, then spin through those and use PHP to include the matching search fragment file. Like this:


<table>
  <?php
    while ($r = mysql_fetch_assoc($keywordResults)) {
      @include "search_fragments/" . $r['entry_id'];
    }
  ?>
</table>

This will dump the contents of each search fragment file in the table. Since each file contained two rows, the resulting table will be valid HTML. Notice we're surpressing any errors on the inclusion line just in case a file is missing for some reason.

We've be using this system here for months, and it works great.

Click here to comment on this entry


warbl0ggers' world includes only
themselves


warbl0ggers' world includes only
themselves
12/02/2003 01:53 AM
Commonwealth of Blogosphere States .. way too much free time .. Weird Weblog Map .. Politburo's map .. seaside port .. inside jokes .. neighbors .. map

acepilots.com/images/comblog.html
track this site | 11 links


One Way To Use Server Side Includes


One Way To Use Server Side Includes 10/26/2002 12:48 PM
Stickysauce Oct 26 2002 10:22AM ET

My Canada includes AccordionGuy


My Canada includes AccordionGuy 05/26/2004 09:11 AM

Joey "AccordionGuy" DeVilla, a Filipino-born Canadian, has written a spirited editorial in response to a jackass racist blogger who asserts that the Canadians who died in the Boer War (!) and elsewhere certainly didn't intend for Toronto to be annexed by the "Third World," and says that the non-whites of Canada are less Canadian, with "no knowledge or affection for the old Canada, in either their hearts or minds."

Joey's response: "Fuck you, eh." And the banner, above. Link

SCO Includes OS Products In OpenServer 6


SCO Includes OS Products In OpenServer 6 06/24/2005 06:17 PM

Red Hat Linux 7 includes MySQL


Red Hat Linux 7 includes MySQL 06/12/2002 06:22 AM
"MySQL is already the most used database in the Linux world, and we expect the Red Hat Linux 7 release to strengthen our position even more", says Michael "Monty" Widenius, CTO of MySQL AB.

Postcard from the Future (and It
Includes RSS)


Postcard from the Future (and It
Includes RSS)
06/30/2004 01:15 AM

A Brief Message about Why My TiVo and Treo, Rule 

"This is the confirmation email I received from TiVo after I:

  • Heard that Michael Moore was going to be on 60 Minutes
  • Was miles from home and wished I could somehow schedule my TiVo to record this show
  • Turned to my trusty Treo 600, and pointed the browser to Tivo Central Online to sign-in and schedule this recording
  • Return home to find 60 Minutes recorded perfectly per my request.

I know I live in the future a bit, being an early adopter and all, but the future is grand - and highly recommended." [shellen dot com, via buzz machine]

I'm going to start using that last line everywhere! I'll have to try to use my Treo 600 to access MyReplayTV to see if I can schedule a recording on one of my ReplayTVs!

Tangent: check out this great quote from Jeff Jarvis:

"Feeding me -- sending me any kind of content anytime anywhere on any device -- is the promise of this medium in an ever-connected world and RSS will be at the core of that. This is just the beginning."

Sounds familiar, doesn't it?  ;-)

Interestingly, I was interviewed by a reporter this morning for a Redeye article about RSS. Let's hope this is the first sign of a clue over at the Tribune Company!


XP SP2 seminar includes disabling MSJVM


XP SP2 seminar includes disabling MSJVM 07/22/2004 04:37 PM
Following on that Microsoft XP SP2 partner seminar I just pointed to. One element of the two-day program is titled, "Disabling the MSJVM." As far as I know, the Microsoft Java Virtual Machine has never been a great source of...

Dangers of register_globals and remote
includes


Dangers of register_globals and remote
includes
07/10/2004 06:14 AM

Simple Solution for Php Includes -
IFrames


Simple Solution for Php Includes -
IFrames
07/08/2004 11:45 PM
WebDevInfo Jul 9 2004 3:49AM GMT

The Hard Stuff Now Includes Wine


The Hard Stuff Now Includes Wine 04/12/2005 08:31 PM
Among California producers and those who follow wine closely, high-alcohol wines have provoked sharp debate.

graph-includes 0.3 (Default branch)


graph-includes 0.3 (Default branch) 04/14/2005 07:39 PM
Graph-includes creates a graph of dependencies between source files and/or groups of source files, with an emphasis on getting readable and usable graphs even for large projects. Usability of the dependency graphs are currently improved by customizable grouping of several source files into a single node, and transitive reduction of the graph.
Changes:
A bug causing some dependencies to be ignored has been fixed. A command line option to produce printable graphs has been added, as well as more documentation.

graph-includes 0.1 (Default branch)


graph-includes 0.1 (Default branch) 03/28/2005 11:48 PM
Graph-includes creates a graph of dependencies between source files and/or groups of source files, with an emphasis on getting readable and usable graphs even for large projects. Usability of the dependency graphs are currently improved by customizable grouping of several source files into a single node, and transitive reduction of the graph.

graph-includes 0.4 (Default branch)


graph-includes 0.4 (Default branch) 04/17/2005 07:33 PM
Graph-includes creates a graph of dependencies between source files and/or groups of source files, with an emphasis on getting readable and usable graphs even for large projects. Usability of the dependency graphs are currently improved by customizable grouping of several source files into a single node, and transitive reduction of the graph.
Changes:
The processing of #include statements has been made similar to the standard C preprocessor behaviour.

graph-includes 0.2 (Default branch)


graph-includes 0.2 (Default branch) 03/31/2005 07:54 PM
Graph-includes creates a graph of dependencies between source files and/or groups of source files, with an emphasis on getting readable and usable graphs even for large projects. Usability of the dependency graphs are currently improved by customizable grouping of several source files into a single node, and transitive reduction of the graph.
Changes:
New features including stripping a common prefix from all filenames, the ability to specify excuses for abusive dependencies, and automatic generation of default level 2 groups in the default project class. Bugfixes for --output, --focus, and --showdropped, which were all completely broken in 0.1.
Grok Description matches for DCF probe includes look at Regier's computer
GrokA matches for DCF probe includes look at Regier's computer

DCF probe includes look at Regier's computer

The following phrases have been identified by the grok system as matching this entry:

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Mozilla Patches
Vulnerability

dRSSReader
Manual Express
Downloads are now
live

Terrarium 1.2
Released

Parenting
too much coffee man
Senator Ditka?
Bubbles
Where is
Robot-Valley?

CNN.com - California
education chief
calls preschooler
'stupid dirty girl'
- Jul 9, 2004

That Wired magazine
has some more about
it

Alien in 30 seconds,
with bunnies

"Jerky jokester
Whoopi in dirty diss
at Dubya."

Brief: Sprint signs
5-year, $400M
outsourcing deal
with IBM

Mandrakesoft wins
French government
server deal

Convention security
to test new DHS
operations center

Apple's 'Tiger'
Server software set
to roar

SAP expects Q2
revenue to rise 15%

National Weather
Service names new
CIO

Low-fare airline
flies from Windows
Server to Linux

Q&A: Sun's John
Loiacono on
open-source Solaris

Microsoft looks to
improve Office
search tools

decent critique of
my SEO contest win

Pentagon to Begin
Guantanamo Hearings
in Weeks (Reuters)

Rudy Tomjanovich
Agrees to Coach
Lakers (AP)

'Frugal Gourmet'
Chef Jeff Smith Dies
(AP)

Senate Opens Debate
on Gay Marriage Ban
(AP)

Gmail Alternative?
Interface Blends
Screen And Video

Plant That Smells
Like Corpse Blooms
(AP)

Cheney's F-word
quote lives on
(Reuters)

Middle of the
Peleton

Implementation of
HTML Extensions
Proposal

Domino's IPO: Not As
Tasty As It Smells
(BusinessWeek
Online)

Sluggish Software
Sales Show Malaise
(AP)

ICANN Panel Pans
VeriSign Search
Service
(washingtonpost.com)

Microsoft Worker
Charged with Taking
AltaVista Data
(Reuters)

FCC Boss Launches
Blog Aimed at
High-Tech Industry
(Reuters)

Browsing the Web?
Not Anymore

An Open Letter to
Apple

Mysterious message
linked to Google

How to get your RSS
feed listed in the
Yahoo! search engine

Linux services on
the double

3Com shares fall
amid resignation,
downgrades

Shark Tank: Kids,
don't try this on
people at home!

Not What We Had in
Mind

Re: Norton AntiVirus
Denial Of Service
Vulnerability [Part:
!!!]

Re: Microsoft Word
Email Object Data
Vulnerability

Microsoft Advances
Search to the
Desktop

gospy-applet 0.4.0
what is grok?