VisualFuture VisualFuture Home Page
VisualFuture DaveTech

If technology was easy and always worked right the first time, you wouldn’t be reading this.

December 11th, 2005

How to Enable Your Objinfo.xml File

Enabling your objinfo.xml file is quite easy!
Keep in mind, you will need “full access” to the store manager page: make sure you have both your password, and your security key ready.

Once you’ve logged into your store manager, locate the link named “Search Engines” under the “Promote” block in the lower left hand corner. Go ahead & click on the link once you find it.

Search Engines Link
Near the bottom of the screen are a couple of radio buttons labelled “Disabled” & “Enabled.” Select the “Enabled” button to activate your objinfo.xml file!

That’s it!

December 5th, 2005

How to Modify a WordPress Theme

Found a great set of articles on how to modify a WordPress theme. What I didn’t find was a concise “table-of-contents” set of links to the entire series… So here it is:
Dissection of a WordPress theme: Part 1
Dissection of a WordPress theme: Part 2
Dissection of a WordPress theme: Part 3
Dissection of a WordPress theme: Part 4

Many thanks to John Godley & UrbanGiraffe

December 3rd, 2005

Build a list of Files

Here’s a quick snippet of code to build a list of files from a folder using Perl:

my $ext = '_plog.txt';
opendir (DIR, ".") || die "Can't open directory: $! n";
my @flist = grep (/$ext$/, readdir (DIR));
closedir (DIR);
|