Search found 104 matches

by jasonb
Thu Sep 28, 2006 9:10 am
Forum: Technical Support
Topic: Bypassing Microsoft's new ActiveX behaviour.
Replies: 0
Views: 17233

Bypassing Microsoft's new ActiveX behaviour.

From this Newsgroup post: Are you tired of clicking on activex controls on webpages since MS has lost its battle against Eolas? Then this is for you. The restrictions reside in the file mshtml.dll. So you need an older version of this file without the restrictions. It's located here: http://support....
by jasonb
Wed Apr 05, 2006 8:46 am
Forum: Announcements and Suggestions
Topic: Ask Virgil hacked / change in policy.
Replies: 1
Views: 13065

Three bogus accounts were created in under 8 hours. I'm not going to spend all of my time deleting these things. I've disabled account activation altogether. If you want an account, please just send me a personal email with the username and password you'd like, along with some more descriptive messa...
by jasonb
Tue Apr 04, 2006 10:33 pm
Forum: Announcements and Suggestions
Topic: Ask Virgil hacked / change in policy.
Replies: 1
Views: 13065

Ask Virgil hacked / change in policy.

Right. So - over the past several months, multiple "spam" accounts have been created on this board. Mostly with usernames that never post anything, but which are obviously fake - since they called themselves "free online poker" and "Crackhead". Additionally, some joker ...
by jasonb
Tue Nov 29, 2005 1:57 pm
Forum: Technical Support
Topic: PHP 5.1 breaks SquirrelMail send function.
Replies: 0
Views: 17032

PHP 5.1 breaks SquirrelMail send function.

I recently installed PHP 5.1 to my server. After that, when sending an email via SquirrelMail 1.4.5, I'd get the following: ERROR: Bad or malformed request. Server responded: Missing message to APPEND The email would actually be sent, despite this, but it wouldn't be stored in the Sent folder. Some ...
by jasonb
Mon Nov 28, 2005 11:33 pm
Forum: Technical Support
Topic: Coppermine: Batch upload says you have no files.
Replies: 0
Views: 18402

Coppermine: Batch upload says you have no files.

This only affects Windows hosts. The series of steps comes from discussion of the 1.4 beta. (It still hasn't been fixed in 1.4.2.) In include/functions.inc.php, FIND (around line 2681): $filename = ltrim(strrchr($_SERVER['PHP_SELF'], '/'), '/'); REPLACE WITH: $filename = ltrim(strrchr('/' . $_SERVER...
by jasonb
Tue Nov 08, 2005 9:46 am
Forum: Technical Support
Topic: Removing McAfee causes error from Outlook about missing DLL.
Replies: 0
Views: 18221

Removing McAfee causes error from Outlook about missing DLL.

I recently removed McAfee from my computer at work. (I discovered that it was showing symptoms of a rootkit - per Sysinternals' RootkitRevealer - API information was being hidden / misrepresented. I replaced it with Avast! which doesn't perform any similary questionable activities.) After having don...
by jasonb
Sat Aug 06, 2005 11:33 pm
Forum: Technical Support
Topic: Coppermine: Show only new files in 'Batch upload files'.
Replies: 0
Views: 16974

Coppermine: Show only new files in 'Batch upload files'.

In searchnew.php, look for the first:

Code: Select all

        return <<<EOT
and replace with:

Code: Select all

    if ($checked == 'checked') {
        return <<<EOT
Immediately after, look for:

Code: Select all

EOT;
and replace with:

Code: Select all

EOT;
}
by jasonb
Sun Jul 17, 2005 9:12 am
Forum: Technical Support
Topic: Coppermine: Get rid of Album / Page count for categories.
Replies: 0
Views: 17189

Coppermine: Get rid of Album / Page count for categories.

To get rid of the Album / Page count footer at the bottom of each category, edit include/themes.inc.php , line 1137, and replace: $template_tab_display = array('left_text' => 'td width="100%%" align="left" valign="middle" class="tableh1_compact" style="wh...
by jasonb
Sun Jul 17, 2005 8:47 am
Forum: Technical Support
Topic: Coppermine: Get rid of Category / Files information.
Replies: 0
Views: 17044

Coppermine: Get rid of Category / Files information.

I've always just found this annoying, so here's how to get rid of it in Coppermine 1.4.2. At line 220 of include/themes.inc.php , replace: <td class="tableh1" width="80%" align="left"><b>{CATEGORY}</b></td> <td class="tableh1" width="10%" align="...
by jasonb
Mon Jul 11, 2005 9:56 pm
Forum: Technical Support
Topic: Coppermine: Category -> album if there is only one.
Replies: 1
Views: 35040

If running Coppermine 1.4.1 beta, the code to alter begins at line 189, and "db_query($sql)" should be replaced with "cpg_db_query($sql)": $link = "<a href=\"index.php?cat={$subcat['cid']}\">{$subcat['name']}</a>"; with: if ($album_count==1) { $sql = "SEL...
by jasonb
Sun Apr 10, 2005 8:08 am
Forum: Technical Support
Topic: Make control panel Services use Standard tab by default.
Replies: 0
Views: 17636

Make control panel Services use Standard tab by default.

I've been annoyed by this for a while and finally found the solution after a bit of Googling. (I swear that I'd looked for this earlier but was unable to find any information on it at the time.) In any case, you can modify the defaults of any snapin by working with the .msc file for it in a certain ...
by jasonb
Mon Feb 14, 2005 5:29 pm
Forum: Technical Support
Topic: Using GNU port of DD in Windows.
Replies: 0
Views: 17214

Using GNU port of DD in Windows.

In Linux, you'd write an image file to a floppy using the following syntax: dd if=floppyimage of=/dev/fd0 With the GNU port of Linux under Windows, the first thing I tried was: dd if=floppyimage of=a: That didn't work. So, how do you refer to the floppy drive in Windows? It took me a bit to figure i...
by jasonb
Sun Feb 13, 2005 10:16 am
Forum: Technical Support
Topic: CD-ROM drives missing from Explorer.
Replies: 0
Views: 17241

CD-ROM drives missing from Explorer.

This just happened to me. I don't know if it's related to a recent series of Microsoft Windows updates I applied or not. 1. I verified that the drives were being seen by the Bios, so it wasn't a hardware issue. 2. Devices Manager had exclamation points on the drive entries and said that the hardware...
by jasonb
Sat Nov 20, 2004 12:32 pm
Forum: Technical Support
Topic: Coppermine: Category -> album if there is only one.
Replies: 1
Views: 35040

Coppermine: Category -> album if there is only one.

Here's how to reconfigure Coppermine so that if there's only a single album in a category, when you click on the category link it will take you directly to it - rather than requiring you to click on the category and then also on the album: Find the file index.php in your coppermine folder. then repl...
by jasonb
Tue Oct 19, 2004 10:34 am
Forum: Technical Support
Topic: Warning when using encrypted PM mod.
Replies: 0
Views: 17741

Warning when using encrypted PM mod.

Some time ago, I wrote a mod for phpBB that lets you encrypt and decrypt private messages (it's currently in use here on Ask Virgil) - you can get it here . A couple of days ago, somebody wrote to me to say that they liked using it - except for the phpBB warning messages that are thrown up on the sc...