Hosted By

Contact Me

Misc Links

OpenNTF BlogSphere LotusGeek CoComment Custom Button

Ads by Google

Welcome to keithstric.com!

I hope you find this site useful in some way or another. I strive to bring you all sorts of geeky information and solutions to your most frustrating of issues with the occasional rant on whatever topic, technical reviews and weblog. You'll also find many products that I've developed and make available for you to use however you like. So, grab a cup of coffee, sit down and visit for a while.

SnTT: Put Google Site Search Results in the Content pane of BlogSphere

12/21/2009 10:06 AM By Keith Strickland
QuickImage

As you are probably aware of, I've been revamping keithstric.com. In that revamp I wanted to add a Google Custom Search (CSE) engine to search only my site. Making the CSE was easy enough with the wizard Google supplies but, I didn't like the way that it either redirected you to a google page or you had to submit the search to another dedicated page on your site. So I set on the quest of getting the results to show up where the content of my website usually shows up. Below I list all the things I tried and then what finally succeeded.

First I tried the default of showing the results on a google hosted page. I just didn't like that at all, I could customize it a little bit but not really.

Next, I tried having the results show up in an article type document, however, the url that gets appended to the search results page starts with "?", seems Domino didn't like this at all and kept dying with an error 500. I tried all sorts of ways to prevent the "?" from being the start of the appended URL to no avail. I did some research on what the subject and it seems when a url contains a "?" Domino expects a domino url extension (i.e. OpenDocument, OpenView or whatever) to come right after the question mark, if it's not what Domino expects, it throws an error 500. To get around it you can create a rewrite rule, but with this blog being hosted by Prominic, I really didn't want to go this route. So, this didn't work...

The last option for displaying the results from a Google Custom Search engine is to display the results as an element. This actually worked with no changes really needing to be made as far as just displaying the results. However, the results just pushed the rest of the blogs content down below the search results. While this worked, I didn't really like it, I think only the search results should show up. But I really liked that the results were "wrapped" within my website. So, how to make it so that when someone performs a search the div which contains the website content is hidden and only the search results are shown? Well, I messed with this for quite a while and never could get it to "really" work. I could hide the div which contained the content but not when the "Search" button was clicked. So I had to post a question over on the Google Custom Search Implementation Forum. The guy that answered didn't leave his actual name, only "omr" is his username and is who really got this to work and who deserves the credit for it.

Now we just need to put this within BlogSphere and we're ready to go. So without further rambling...

  • First, setup your CSE to only search your site. When you do this if you go through all the options in the wizard you should find your "CSE ID" which is a long number which basically identifies your CSE.
  • Once you get your CSE ID we're ready to put everything in BlogSphere.
Click the "Read More" link...


Continue Reading...

Cool Tool...

12/11/2009 2:41 PM By Keith Strickland

While looking to see if I could find some kind of emulator for mobile browsers I came across BrowserShots.org. This is a tool which allows you to select browser versions to test your website with. Once the test is done screen shots of the results are published on a web page that you can look at and then download all the screen shots. It takes a little while to run, but it seems to do what it advertises. Best of all, it's a free service!


keithstric.com BlogSphere Theme available for download

12/10/2009 3:13 PM By Keith Strickland

I went ahead and exported the DXL for my BlogSphere template and skin and made it available in the Downloads section for your enjoyment.


Last Tweak to keithstric.com for today...

12/10/2009 2:53 PM By Keith Strickland

OK, I found one last issue. On the Downloads page/view, the comments link pointed to /d6plinks/ instead of /downloads/. So, I modified the "RenderEngine.Tags" script library, "TAG_BSCommentsURL" function to the following...

Function TAG_BSCommentsURL(blogDoc As NotesDocument,cfgdoc As notesdocument,debuglevel As Integer)
	On Error Goto LogError
	If DebugLevel > 3 Then Call LogEvent("Process Tag: BSCommentsURL",0,Nothing)

	If blogDoc.Form(0) = "content_Download" Then
		TAG_BSCommentsURL = cfgDoc.cfg_Basic_HomeURL(0) + "/downloads/" + blogDoc.PermaLink(0) + "#Comments"
	Else
		TAG_BSCommentsURL = cfgDoc.cfg_Basic_HomeURL(0) + "/d6plinks/" + blogDoc.PermaLink(0) +"#Comments"	
	End If

	Exit Function
logerror:
	Call LogError
	TAG_BSCommentsURL = "TAG ERROR : Check Debug Logs"	

End Function

The change here is that I just check if the form being processed is a download form, if so I use /downloads/ instead of /d6plinks/, and that's it


More Tweaks to keithstric.com

12/10/2009 1:25 PM By Keith Strickland

If you visited the downloads link above since the site change, I guess you noticed that the attachments weren't available unless you visited the Permalink URL for the download. Well, this has now been fixed.

I noticed this issue when looking at the search results on Nathan Freeman's website, that his search results showed the attachments in his download documents that were returned by the search. Got to looking on my site and mine was doing the same thing. However, if you visited the /downloads view, the attachments didn't show up, you only saw the BSAttachments tag. So, I got to digging in the code a little bit to compare the differences between the rendering of all downloads and the search results. There is quite a difference here, but it wasn't too difficult to figure out.

In the "RenderEngine.Blog" script library, "RenderEngineAllDownloads" function, there are a few arrays there that contain the tags and values of each download document. The tags array contains all the tags that the script will look for and the values array contains all the values for said tags. Looking at this the BSAttachments tag wasn't listed in the array. However, comparing to the "RenderEngineSearchResults" function these arrays weren't present at all, but a call to the "RenderEngineProcessTags" function was used instead and this wasn't in the "RenderEngineAllDownloads" function. So, I replaced the line of code in the "RenderEngineAllDownloads" function for "RenderedText" to read:

RenderedText = RenderedText + RenderEngineProcessTags("SingleEntryTags", templateDoc.template_Plink_Download(0))

This seemed to have corrected the issue and now the BSAttachments tag gets processed in the /downloads view.


Performance Tuning keithstric.com...

12/08/2009 5:00 PM By Keith Strickland

Today I worked on tuning the performance of keithstric.com. I don't know if you'll notice a difference when using broad band, but, if you're using dial up, you should notice a significant difference.

Some of the things I changed....

  • Reduced the size of some of the larger images
  • Reduced the number of images being loaded
  • Optimized some of the < head > html and CSS

Like I said, don't know if you'll really notice any difference, but I guess it makes me feel a little better that I at least tried to speed things up a bit


Blog Redesign

11/30/2009 5:42 PM By Keith Strickland

OK, so I stated earlier that the new look wouldn't be active for a couple of days... I lied

But things progressed a bit quicker than I anticipated so it's live today. All the bug fixes mentioned earlier are now in place. As for the bug with Static Pages not displaying properly, well it seems it was a "Page Template" issue and not a code issue

One thing to note about the new layout, if you're using 800x600, it's gonna be all screwed up. According to Google Analytics no one is reading this site with 800x600, so hopefully it won't be a big deal.
{EDIT Image moved to "Read More". Click Read More to see image }

Another thing, I got rid of the Snap Shots functionality, it was starting to annoy me. I also cleaned up the side bar items as they were rather cluttered and weren't really very useful. So, I hope you like the new design and I'll resist the urge to keep tweaking it and wind up breaking something.


Continue Reading...

Blogsphere bugs...

11/30/2009 9:35 AM By Keith Strickland

I've been using the Blogsphere template since it first came out and haven't looked back. BlogSphere and the OpenNTF mail template are the templates that really opened the world's eyes to OpenNTF and the benefits of an OpenSource community for the Lotus faithful. However, since version 3.x of blogsphere there have been a couple of bugs that really bugged me. These bugs didn't really hurt the overall feel of Blogsphere but are really just little annoyances. Now what brought these bugs to my attention is that I'm currently redoing the look and layout of keithstric.com. This current look has been here for a couple of years now and I'm tired of images getting cut off because of the layout being too narrow. Also, because of the set width of the layout, on my big iMac screen I've got an awful lot of wasted realestate. What really inspired this was the new look of Chris Toohey's site. I think the layout and overall look of his site is great. Good work Chris! I hope you don't mind if I steal borrow some of your layout ideas?

The first one is the Download permalink on search results. Seems the TAG_BSPlinkURL function in the RenderEngine.Tags script library had a typo on line #13: "TAG_BSPlinkURL = cfgDoc.cfg_Basic_HomeURL(0) + "/download/" + blogDoc.PermaLink(0)" should read "TAG_BSPlinkURL = cfgDoc.cfg_Basic_HomeURL(0) + "/downloads/" + blogDoc.PermaLink(0)". While this really isn't that big of a deal, it was frustrating at times when looking for something.

Another bug, but not really a bug, but just had to do with the page template. In the search results, it didn't show the content of the post, just a Blogsphere tag, which to the average user doesn't really mean that much. But that tag doesn't exist, hence it only showing that tag and not the content of the found entry. The tag that was being used is "<$BSEntryBody$>". I changed that to use the "<$BSEntryHTML$>" tag instead.

Next up, and this one I can't seem to get to work at all, is the display of all the static pages. Just like with downloads, you should be able to display an excerpt of each static page in a blog like layout. This was returning an error for the comments rss which is something I'll get to in a minute. But, I never could get the static pages to display like I want, but that's certainly something on the agenda before the new layout goes live.

Last one, in the RenderEngineCommentsEntries function of the RenderEngine.RSS script library, line #9: "numofentries = configDoc.cfg_rss_RSSFeedEntries(0) * 5". The field cfg_rss_RSSFeedEntries doesn't exist, so this was causing an error to be returned. For some reason this error occured when you tried to navigate to the view containing the Static Pages. I just changed this to read: "numofentries = 50". Now, I know I shouldn't hard code this, I should just add a field to the configuration document for this, but I guess I'm just lazy and don't want to change too much in the template in order to make upgrading to the next version easier.

Please don't take these bugs as me bashing Blogsphere, I think it's a great product and I look forward to continuing to use it in the future. I just thought folks that are using blogsphere may be experiencing some of these same issues and would like to fix them. But while you can't see these fixes at this moment on keithstric.com, they will be implemented when the new layout goes live in a few days (I'm not very fast with tweaking CSS).


Blogsphere, lists and images... Oh my!

04/27/2009 2:05 PM By Keith Strickland

The other day I was noticing that when I included a list in my blog posts that the bullet image wasn't showing up. So, I started digging through the code a little bit. The first stop was the "View Source" in FireFox. Looking here, the HTML is correct and should show the bullets. This led me to the CSS in the BlogSphere Site Skin document for my website and find the tag for lists, this is all correct also, at least it appears to be correct and that it should work. So now I'm a little stumped, I try and view the little blue dot image that is supposed to be displayed as the list item bullet via the browser, it didn't display properly or at all really. Now I had to go look at the images tab in the BlogSphere Site Skin document, yup the file is there and I could preview it with the built in image preview software of both Windows and Mac. So, just out of curiosity I detached the file, opened it with The Gimp, saved it and re-attached it in the Site Skin. Voila', the bullets now show up.

Now what caused this is beyond me, but if you're experiencing the same type of issue you may want to go about the same process.


Post Title - Blogsphere Bug resolved

04/02/2008 7:16 PM By Keith Strickland

OK, I posted a discussion post over on OpenNTF in the BlogSphere project about the Post title not showing up in Google Analytics. This happened after I upgraded to the 3.0.1 B8a version of BlogSphere and I moved my Google Analytics code over to the Configuration document. Well last night I got to thinking about where in the header the title tag showed up. So I got to looking and the title tag was at the very bottom of the head tag (hope that makes sense). I modified the RenderEngine.Blog lotusscript library, RenderEngineBlogHTMLHeader function. I moved this code up above all the script tags:

If permaLinkDoc Is Nothing Then
    RenderedText = RenderedText + ""+configDoc.cfg_basic_BlogName(0)+"" + Chr(13)
Else
    RenderedText = RenderedText + ""+configDoc.cfg_basic_BlogName(0)+" :: "+PermalinkDoc.EntryTitle(0) + PermalinkDoc.AlbumName(0) + PermalinkDoc.PhotoTitle(0) +"" + Chr(13)
End If

This seems to have corrected the problem and all the visits from today are now showing the post title.


News, Rambling and updates

02/13/2008 8:21 AM By Keith Strickland

I know I haven't written in a while, it's been hectic here. But I do have some news about Lotus Symphony . I picked up the latest copy of CPU Magazine and in the Bleeding Edge Software review section there was Lotus Symphony. I thought that was pretty cool

On to something else... In my previous post I talked about a bug with BlogSphere v3.0.1 B8a in the downloads section that attachments weren't showing up. Well it turns out that my page template was missing the crucial tag to include the attachments Thanks to Kevin Pettitt who pointed me in the right direction as I had been digging through the code. I also updated the Class-ExcelData.lss file that I attached to my previous post in the downloads section with the newer version.

In other personal news, I finally came up with a UI that I was talking about in this post. I ended up dropping the horizontal navigation as the customer didn't care for the initial mock up of this, which I guess as far as notes applications go is pretty new (I may be wrong). But they did like the ideas of bringing contextual data into a form (layers) so you don't have to navigate away from what you're working on to see a pertinent piece of information (Embedded Frameset). I would like to thank everyone that replied to my plea for help in that post.

So, until next time....


Upgraded to BlogSphere 3.0.1 B8a

01/19/2008 3:13 PM By Keith Strickland

I upgraded keithstric.com to BlogSphere 3.0.1 B8a this afternoon. I made a few tweaks to the template and found a couple of bugs. In the SideBlockLinks function in the RenderEngine.SideBlocks LotusScript Library the line:
If LinksDoc.Link_Windows(0) = "Yes" Then

Should Read:
If LinksDoc.Link_Window(0) = "Yes" Then

So that's fixed here on keithstric.com. I also modified a couple of other things. I modified the SideBlockDBColumn function in the RenderEngine.SideBlocks LotusScript library to put a "< UL >" tag before the rendering of the DBColumn output. Also, in the TAG_BSEntryTechnorati function in the RenderEngine.Tags LotusScript Library I changed that to open the category link at the bottom of a post in a new window. I also modified the Lookups\Hot Text view to change the URL for Hot Text to open in a new window. That's all the changes I had to make to this version of BlogSphere.

Another bug I found though was in the SideBlock for Static Pages. It will show the category that the page is in, but it doesn't show the pages. If you click on the category you get the BlogSphere navigation structure, but no list of Static Pages. Hopefully this will be addressed at some point in time. All in all I think this is a good release so far, but time will tell for sure.


Google Custom Search

10/13/2007 10:02 AM By Keith Strickland

I've added a Google Custom Search Engine over on the left. It includes most of the Lotus Notes Community bloggers and the ND 4, 5, 6, 7 & 8 forums and Technorati SnTT listings. There's been a lot of times I've been looking for something I know I saw on a blog and couldn't find it, so this should make it easier to find whatever blog item you're looking for. Hopefully we'll find this useful.

Keith

Enhancements to keithstric.com

08/26/2007 2:53 PM By Keith Strickland

I've made a few enhancements to keithstric.com and the BlogSphere template. Let's start with commentor's web sites. I noticed that if someone didn't put the http:// in front of their URL and just put www.somesite.com that the link actually went back to my site with the www.somesite.com at the end of the url. So, you would click on the website link for that author and it would return a 404 error. So, I updated the TAG_BSCommentAuthorLink function in the RenderEngine.Tags lotusscript library to check if http:// was in the url, if it wasn't then I add it. That seems to work alright and I didn't even have to refresh the already posted comments, bonus!

Also, I added Snap.com snap-shots. This is a tool that enhances external links with visual previews of the target site. Sometimes a snap-shot will bring you the information you're looking for without leaving this site and causing you to loose your place where you were reading, or it allows you to look ahead to determine if you want to visit the link or not. Pretty cool .

The last addition is a "Subscribe to keithstric.com" block over on the left. This provides you a one click method of adding my RSS feed to many different readers along with their pretty icon. I found this information and buttons at RSS Icon Gallery.

I think the next big project for my website will be to start moving all the images that are stored locally in quick images and the one photo gallery I'm using is to move those images to Flickr. I think this would be a good idea as I only get 1GB of space on the Prominic servers and if I don't have to store the images locally then why should I. The problem is I don't know if that will be completely possible, it'll certainly take some research, tests and trials.

So hopefully everyone will like the new additions and they'll add value to keithstric.com.


Comments Fixed

08/16/2007 12:10 PM By Keith Strickland

The comments have been fixed . I apologize for the inconvenience to everyone. Also, thanks to everyone that sent me an email telling me about the comments being broken along with their comments, I will post them here in a little while.

Keith

EDIT:All comments posted...


Static Pages now online

04/13/2007 7:16 PM By Keith Strickland

OK, I've got my static pages online now, well, kinda. Not all of them are here yet but I'm getting there. I had to add a view because I couldn't find to use and tweak the RenderEngine.SideBlocks lotusscript library to get the side block to display properly. Overall, not too much effort, I just have to remember to mark the design elements that I change so they don't get updated when I upgrade the blog and hopefully it won't break too much.

I'll continue to move content over to the new blog and hopefully it won't take too long. As for my next project here, I'm going to try and get the static pages to display like the full archives when you visit the /htdocs url.

Keith

keithstric.com moved

04/07/2007 11:30 AM By Keith Strickland

After 5 years of hosting my own website I've finally broken down and moved it to a hosting provider which is Prominic. They've done an outstanding job of hosting the User Administration Utility website for a while now and figured that now is the time to move. I moved the website because I'm just tired of fighting off all the hackers and people trying to relay through my server and the jerks who are just a plain nuisance and try to break in just to see if they can. So, I hope this will be a good relationship between myself and Prominic which I'm sure it will be.

As for the move, I'm sure that some of the links are broken, especially the ones back to keithstric.com. Also, all my articles aren't currently in the BlogSphere V3 template just yet but I am working on it. The agent I used to import my posts I think I'll submit to Declan to see if it can be added into the template. I would like to get someone to look over the code for the agent as it was my 2nd try at manipulating XML.

So I guess we'll see how well this works and if all goes well I'll keep it here. The biggest problem is me getting bored with the website and wanting to change it. Bruce Elgort brought this to my attention at LotusPhere this year, so I'll make a bigger effort to keep things looking the same.

Keith

Firefox pulls ahead

03/23/2007 12:01 AM By Keith Strickland

Check out my Google Analytics browser stats. Over 50% is now firefox. Cool!

Google Analyser

Google AnalyticsFirefox

,


Spammers…. grrrr

11/22/2006 3:58 PM By Keith Strickland

OK, this is kind-of stupid. I saw this in this site’s spam control system called Akismet Spam. This spam solution seems to work pretty well and catches 99% of the comment spam here. But this one was kind-of stupid. Advertising a spam solution via spam… some people I tell ya.

Stupid spam


Let the games begin…

11/22/2006 1:53 AM By Keith Strickland

Well, it’s started. We’ve officially started cooking for Thanksgiving Dinner on Thursday. We’ve started baking pies and making a dish for my wife to take to work tomorrow. Man, all this food in the house with nothing to eat tonight

Keith


Categories Listing and URL Rewrite

11/18/2006 4:11 PM By Keith Strickland

I recently had to take my categories list over on the left away. Well, when I brought my website back up I had to install the base version of Xoops and then, install all the modules and import the data into the various tables in the database. Well, I guess something went wrong during the import and using the URL Rewrite for them broke the links. So, I removed them. Well yesterday I just got the idea of opening the category up in edit mode and then saving it. Well, this worked! I now have the category listing back over on the left.

I know, not really a big deal, but since I’ve been back messing with the website that was a source of real frustration for me. Just glad it was simple to fix, but then again it usually is, it’s just finding the time to fix it.

Keith


keithstric.com is back up!

08/02/2006 6:49 PM By Keith Strickland

OK, after a few months of the website being down I’ve finally got it back up and running. I lost everything I had posted for this year unfortunately. I’m sure I’ve lost quite a bit of my readership which is a bummer, but I’m sure some of you will come back (hopefully). But, I will get back to posting and putting together some useful content and even participate in the Show-n-tell Thursdays. So until next time…

Keith


Spam Karma 2

10/24/2005 2:59 PM By Keith Strickland

A while back I posted about wanting to put a Captcha for posting comments. Lorelle commented that I should try Spam Karma 2 (SK2) to control comment spam. I installed SK2 and it’s been running for awhile now. I was looking over my SK2 logs and I found only 1 thing that was marked as a false positive and a couple hundred things marked correctly as spam. I must say that this plugin for WordPress is awesome!! I pretty much forgot about installing it and then today while just messing around I saw the little tab it puts in the WordPress Options menu. I went looking and was amazed at how much it blocked (all spam except for 1 track back) and what it let through (all legit). This is just great technology and should be ported to work on other CMS packages which allow commenting, as in my experience, the “comment spam preventers” that come with the package usually aren’t worth anything. They may stop some spam but not nearly as much or as well as SK2.

If you’re running a WordPress blog, check out that plugin, I think it’s a must have. If you’re not using WordPress, contact the author and see if he/she can port it to your particular choice of CMS app as I think this technology would make a nice dent in the number of people who participate in comment spam if only it were available for everyone who runs a blog or interactive website.

Keith


Captcha for Comments…

09/13/2005 9:12 PM By Keith Strickland

OK, I’ve been trying to include a captcha on the comments page. I haven’t been very successful, I’m thinking it’s because I’m running WordPress as a module of XOOPS. I’m not sure yet, but I think I’m learning a bit more about how this works within XOOPS.

When you have to change a file in the theme, say comments.php. You need to modify the comments.php inside the templates directory, this is the equivalent of the comments.php file within whatever WordPress theme you may be running. You have to do it this way because the WordPress theme really has no functionality within XOOPS because the look and layout are controlled by XOOPS. But I’m not sure exactly how this all comes about or how it should be modified (via the template editor inside XOOPS or via a file edit of the template file directly).

I’ve incorporated some of the other comment spam preventative measures which are included with WordPress. We’ll have to wait and see if they work or not, hopefully they will. But good news for readers who want to post a comment here, you will no longer have to wait for your comments to be moderated, unless your comments meet the conditions defined in the comment spam configuration, in that case you will have to wait for the comment to be moderated/approved.

So, hopefully this will pay off a little bit.

Keith


More XOOPS and WordPress

08/27/2005 7:32 PM By Keith Strickland

OK, I’ve updated my XOOPS installation to XOOPS 2.2.2 and WordPress to version 1.5.2. So, all in all I like the combination. This new version of WordPress fixes some of the things I complained about earlier. It was a little more difficult to figure out how to make it look like I wanted, but I think I’ve got it pretty close. I’ll have to keep playing around with the css to get it to look better.

But all in all, I think I like the new versions better.

Keith


XOOPS, WordPress and Articles, Oh my!

08/26/2005 2:06 PM By Keith Strickland

OK, this is in reference to the post I made a couple of weeks ago about looking for another CMS system or Blog system. Well, I discovered that XOOPS has a WordPress module which is based off of WordPress 1.0.2 and WordPress ME 1.0.3. I think that’s cool. WordPress is a much more robust blogging platform than the weBLog module is. Also, it allows people to put their site and e-mail info in the comment without having to register. This is a bonus most certainly.

The only things I’ve found that I don’t like is that I can’t figure out how to make an extended text post. I know you’ve seen them, with the “read more” link. This makes it where you don’t have a big long article on the home page. Also, the post section don’t have a preview. Other than that, it looks pretty good.

Normally a portal/cms system is one or the other, a “portal” or a blog. Blogs generally don’t have any support for a link database or downloads database, forums, etc. Portals generally don’t have some of the features of a blog, as in anonymous posters being able to fill in their information, ping-backs, track backs and archives. In my mind, this WordPress module makes it possible to have the best of both worlds. You get all the features of a “portal” and a blog.

So, to the author of the WordPress module for XOOPS. Kudos and and thanks for a great product.

I’ve also stopped using the Sections module for XOOPS and started using an Articles module. This seems to group and display things a little better than the Sections module and doesn’t have erroneus fields and such. Hopefully this will be better. Also, hopefully I’ve found something that will keep my interest for awhile.

Keith


Outages Update…

08/18/2005 12:38 PM By Keith Strickland

I posted this entry about internet outages at the house and stated that this would be a good reason to upgrade to a faster service.

Well, after some research I found out that the 4 MBps DSL isn’t available in my area, I also found out that internet service from Comcast isn’t available. So, I guess I’m stuck at 1.5 MBps. That still doesn’t mean I can’t upgrade my router tho

Keith


Experiencing Outages here at the house…

08/16/2005 10:28 PM By Keith Strickland

I’ve been experiencing some Internet outages here at the house of late. I can’t figure out why actually. We’ve been having storms so I imagine that brown-outs is what’s causing it but what I don’t understand is why my router don’t handle it. I think it should, or better yet, I think it shouldn’t be affected as it’s on a UPS.

So, I guess I need to do some research and see what I can find and figure out why this is happening all of a sudden. This might be a good reason to upgrade to a faster connection and a newer router

Keith


Downloads

05/13/2005 8:00 PM By Keith Strickland

Seems all the downloads here were broken. Well it seems I forgot to update the URL from when I was testing and moving data. This has now been corrected.

Keith


Observations on referrers

05/09/2005 6:48 PM By Keith Strickland

Since I’ve switched to Xoops I’ve noticed some patterns here. Looking through my referrers I’ve noticed that the porn sites aren’t nearly as prevalent any more. Could it be that because I no longer just post comments no matter who sent them? Or maybe it’s because there is no Referrers list? Well, whatever the reason, I like it. I haven’t had to go into the DB and delete comment spam or referrer spam. Also, no comments have been posted with links to porn sites. That’s great. While running phpNuke it seemed like there were sometimes 20 or so a day. That really sucked. Also, the number 1 referrer to this site was some porno site . That sucked even more.

So, I must say that I like Xoops. I just wish it had a better blogging module.

Keith


keithstric.com Moved to XOOPS!

05/03/2005 6:25 PM By Keith Strickland

Well I’ve been in the process of moving keithstric.com to the XOOPS CMS system. So far I like most of the options for XOOPS. I do like the fact that anonymous can post but it requires the Administrator to approve the post before it shows up on the site. As a matter of fact it was this issue that prompted the move. You can see this post which explains it a little more.

It also seems more secure than phpNuke which is certainly a bonus. To secure phpNuke you had to install some additional security patches, some which required manual tweaking of some of the files which when you did an upgrade those files got changed opening the security risk back up. Not to mention XOOPS seems to be a little more robust than phpNuke and there is just as large of a community for XOOPS as there is for phpNuke.

Now, some of my readers (ahem, Matthew) will say I did this just so that I would have something to tinker with… Well, it’s kinda true , but I also did this for security and piece of mind.

If you were a member and had a login ID and Password under phpNuke here at keithstric.com that ID and Password should still be here and be the same. If you have any issues logging in please let me know.
Of course, if you’re a registered user any posts you create are immediately posted and don’t have to go through an approval process by the administrator.

So, I hope you enjoy the new look and feel of keithstric.com. As always I appreciate any feedback you provide.

Keith


Anonymous Comments turned off

04/23/2005 9:07 AM By Keith Strickland

Anonymous comment posting has been turned off. I apologize to all my readers who do post legitimate comments anonymously. I have tried incorporating some security to the comments, but, I couldn’t get it to work properly. So, I’ve turned it off.

I am in the process of looking for another portal system that affords me a lot of the same functionality as phpNuke. Once I figure out what I want to use, you’ll see it here :)

Keith


Referer Spam

04/01/2005 8:19 AM By Keith Strickland

I tell ya, these guys who do referer spam are JERKS!!!. I keep deleting them from the list and so they come back and put even more there. How childish. So, in order to stop the spam influx I’ve removed the referer block. Maybe one day I’ll put it back, but I’m tired of removing the porn links there. I tell ya, no matter what you have or what you do somebody always wants to mess it up.

For you referer spammers, you’re childish and your site probably won’t do very well if that’s the only means you have to produce traffic. Not to mention, links on sites that have nothing to do with the content on your site, gain you nothing. So, grow up then go out and get your traffic the old fashioned way, EARN IT!

Keith


New Review

03/16/2005 9:36 AM By Keith Strickland

I’ve posted a new review about Microsoft Windows AntiSpyware (Beta). Go check it out!

Keith


Last Year’s Web Stats

01/06/2005 8:30 AM By Keith Strickland

I know I haven’t written much of late but the New Year has started off pretty hectic. I hope you had a very Merry Christmas and Happy Holidays and also a Happy New Year. I sure did, I didn’t do much for the New Year so that was nice.

But I thought I’d post what stats I have for last year’s web access. Pretty impressive if I must say so, especially for a personal website. Now I’m sure it’s no where near Voker’s visits but not too shabby I don’t guess. But here goes:

  • Visits - 25,569
  • Page Views - 150,609
  • Hits - 544,276
  • Bandwidth - 6.09 GB
  • Most visits from External Site - www.xmailserver.org with 706 Page views

And that about does it. I’ll try and be a little more diligent about posting here in the near future. So until then….

Keith


New Encyclopedia

11/09/2004 8:59 AM By Keith Strickland

I’ve put together an encyclopedia of Reef Terms for all you non-reefers out there. This should be a decent reference when I talk about reef stuff.

Keith


Gallery 1.4.4-pl2 Installed

10/30/2004 3:57 PM By Keith Strickland

I’ve upgraded Gallery to version 1.4.4-pl2. This is the latest stable version of Gallery. It has a lot of new features for the configuration and is able to be embedded into more portal/CMS packages. The configuration page is much better, it’s now a tabbed interface and is split into related items. So, much better than before.

As for new features, it now has a polling engine included and more control over how your Gallery looks and behaves. The appearance of my Gallery hasn’t changed that much. I made it where Albums now have a dotted border and photographs have no border. That should help navigation a little. I also followed some of the security advice so it should be a little more secure. Even though no one ever broke into it, that doesn’t mean that they can’t. Might as well make it as secure as possible.

So, all in all I think Gallery is turning into a better product, just need to setup a place to look at Gallery 2 now. :)

Keith


New News feed

10/21/2004 9:16 AM By Keith Strickland

I’ve added a new News feed from http://edgeos.com. This is a website which reports vulnerabilities or security threats. You can find that down on the right side menu at the bottom.

I’ve also put together a new How-To called LotusScript Classes for the Administrator. It’s not a big robust document or anything just a collection of the AdminP classes and NotesDBDirectory. So, check that out.

Keith


New Theme and Survey

09/24/2004 10:16 PM By Keith Strickland

Well I built a new theme for keithstric.com. It’s pretty clean. I also made a new logo, man is it time consuming to make graphics. But I did learn alot. So, gimme a vote over there on the right and let me know which theme you like best.

Keith


Tropical Storm Ivan II

09/17/2004 10:07 AM By Keith Strickland

OK, here is today’s image of Tropical Storm Ivan. We’re about where the red dot is. I haven’t been out and about very much but the most damage I’ve seen is a lot of limbs on the ground and in the road. The creek down the road is WELL out of it’s banks and the lake is also up quite a bit. It’s still raining but there isn’t any wind. So, we survived the storm pretty well with only some internet outages and phone outages which are still continuing to some extent.

Keith

Picture from www.weather.com


Tropical Storm Ivan

09/16/2004 2:45 PM By Keith Strickland

We’re about where the red dot is on the picture to the left and we’re currently experiencing high winds and a LOT of rain from Tropical Storm Ivan. I heard about 20 minutes ago that it was downgraded from a hurricane to a tropical storm. As far as damage from the storm, I haven’t seen any, but all this is really just starting for us. As the rain continues and weakens the soil which is holding up the trees I’m sure there will be issues with the roads come tomorrow. The kids have been let out of school so they’re at home.

Guess we’ll just have to wait and see what happens. So, if you have trouble getting to keithstric.com please try back later as it’s probably a power outage.

Keith

Picture from www.weather.com


keithstric.com Hacked!!!!

09/10/2004 8:33 PM By Keith Strickland

Well today some JERK hacked my website. So, if you were trying to get to keithstric.com and was greated by a time out that is why, was trying to get everything back up and running and take away access and the defacement which occured.

So, if you see anything that is out of the norm (vandalism, inappropriate language, something that was here but now isn’t) please let me know via Feedback and I will take care of it. Everything has been backed up so any damage should be minimal.

Keith


Broken Downloads

08/18/2004 12:50 PM By Keith Strickland

A user pointed out to me today that I had some broken downloads. I assume it was files that he was trying to download. These have since been fixed. When I moved the website from Domino it broke some of the directory structure I guess, so I had to do some sql statements to straighten everything out.

So, all the downloads should now be working and I would like to thank “zot” for pointing this out to me.

Keith


New Survey

07/31/2004 11:05 AM By Keith Strickland

I’ve posted a new survey here on keithstric.com. I’m trying to find out what people are looking for here on keithstric.com so that I can keep providing that information. So, please participate, you can find the survey over there on the right.

Thanks,

Keith


Domino HTTP

07/14/2004 7:14 PM By Keith Strickland

I’ve turned off Domino HTTP here on the ole’ website. I kinda have mixed feelings about it. I am a Domino professional so I feel I should use the product. Running this website I’ve learned more about Domino in the past 2 years than I have at work. The main reason for shutting down Domino is the fact that it’s a resource hog which I stated in this post. But since I’ve been trying to improve response times, the user experience and server performance from a website perspective I think that this move makes sense.

If you are looking for the Domino Gallery to see it in action just let me know, I’ll make it available for you. I’m in the process of getting more screen shots of the app so that you can see it.
As for phpNuke. I really like it after messing around with it. I only had to mess around with it a little to get the look I wanted and get everything configured.

I guess the biggest change which prompted me to redo everything (i.e. reinstall the db and files) was with the Google Tap AddOn which makes phpNuke render spider friendly URLs. It kept breaking Sommaire Paramétrable (Customize Menu). But I got it all working now.

Another big part of this migration was setting up all the rewrite rules trying to catch the most common URLs from the search engines. Apache has a very powerful rewrite engine (mod_rewrite) which makes it pretty easy to catch and re-route incoming requests using regular expressions. Figuring out the regular expression was the hardest part :)

Also today I was trying to figure out how my search engine rankings are doing since keithstric.com was down for a little more than a month. Some of the URLs are still out there from my default ISP web space which contained all of the how-to documents while my server was down. I’ve also fallen down in the rankings where if you searched for something I have a how-to created I was on the 1st page I’m now down on the 2nd, 3rd or 4th page. So being down did hurt my search engine rankings :(

So, enough of my babbling. I hope you find everything you’re looking for here, if not send me some Feedback. So, till next time….

Keith


phpNuke Reviewed

07/11/2004 5:21 PM By Keith Strickland

OK, I’ve taken a look at phpNuke. This seems to be a very robust powerful portal system. So far I really like it, even more than Serendipity (You can see the Serendipity Review here). So, here’s what I’ve found so far that I really like:

  • Everything is already here. I don’t have to try and patch the pieces together. Downloads, Links, Reviews, Surveys, FAQ and Static Pages. It’s all already included in the package.
  • Gallery is easily embeddable into phpNuke. As a matter of fact it’s a supported configuration
  • phpBB2 is easily embeddable into phpNuke. - 07/14/04 - Correction, Included with phpNuke :)
  • User administration is all built in
  • Logging into phpNuke logs you into Gallery
  • Very Large community of people using phpNuke
  • Many plugins/addons available to do most anything you would want to do
  • Able to use RSS Feeds as blocks (The menus on the left and right)
  • Highly customizable

What I’ve found that I don’t like:

  • Steep learning curve
  • Not very intutive
  • Hard to customize text, graphics, etc
  • Having issues saving stories
  • What the heck is the Encyclopedia and Ephemerids for?

So, all in all I think this is a good product, it will just take some getting used to.

Keith


Serendipity Blog Software

07/06/2004 1:30 PM By Keith Strickland

OK. I’ve been thinking about moving my blog off of Domino. Domino is quite the resource hog if I must say so. HTTP promptly takes up all the memory it can and won’t release it. However I do like many of the features of Domino and the ease (relative to experience) of getting things to work.

So, I think I’m going to give Serendipity (aka S9Y) PHP blog software a try. I’m not too keen on the name, kinda girlie . But from what I’ve seen so far I like it. Here are the pluses so far:

  • It’s very easy to setup a standalone blog, the layout is very clean and highly customizable.
  • It’s plugin menu is similar to blogsphere’s blocks and the Authoring Suite is pretty robust.
  • Best thing tho is that you can post blogs from anywhere you have a browser handy and the post will look the same as the others .
  • Another plus I noticed really quick was that is supports smilies and you don’t have to code a <img> tag to get a smiley in your post.
  • I also like the fact that you can preview your posts before you publish them. I’m very bad about just starting to type and then proof read my post after it’s already published. I then have to go back and correct the mistakes.
  • It does have it’s own forum which isn’t very active but has quite a bit of useful information there about getting your particular problem solved. The user I was working with (Garvin Hicking) answered my posts promptly and curtiously even tho I was asking alot of simple (to him I imagine) questions and I was probably getting on his nerves. Kudos to him for not telling me to go jump.
  • Import feature using RSS is really cool. I imported 90% of my Domino blog this way

So far here’s what I’ve found that I don’t like:

  • Seems the documentation isn’t very useful unless you REALLY KNOW the product . The documentation will get you through installing it but in order to embed it into something else, integrate your S9Y menus into static pages or other applications you will need help.
  • It’s difficult to figure out how to get the navigation structure from S9Y into another application, like Gallery. I keep getting PHP errors. If I get it to work I’ll be sure and include a How-To about it
  • No built in support for static pages
  • Girlie name

I really haven’t messed with the Image portion of the software yet, I’ve just been using an <img> tag to point to the images. So I really can’t comment about that portion of the software yet. But, so far I think this is a very powerful, robust and stable product that I look forward to using. I’ll keep everyone updated on what I think about it, the idiosyncrisities of it, etc. So, until another time…

Keith


New Bulletin board and Public Photo gallery

07/02/2004 4:08 PM By Keith Strickland

OK, I’ve put up a new bulletin board and a new public photo gallery. This is in the hopes that I’ll start attracting some of the Reefers out there that need a place on the web to post pictures of their Reef Tanks and then want to talk about them. The only issue I have right now with these two new items is that you have to register at each. I’ll have to figure out a way to intermingle the registration process for both of them. But I don’t think it should be too difficult.

The details for the Bulletin Board is it’s the phpBB product. I know, that’s not a domino product or rather openNTF product. But I do have a few topics in there and if it gets busier I’ll add more, only time will tell.

The details for the Photo Gallery is it’s another php product called Gallery. This is a very good product and very customizable. For an example you can go look at my personal Gallery and see how I made it look like my blog . But I’ve been using this product now for awhile. It’s got a good support system in place consisting of forums and plenty of documentation.

Hope everyone enjoys the new additions to keithstric.com and let me know if you find them useful.

Keith


1 Processor is dead

07/02/2004 4:06 PM By Keith Strickland

Well I found the issue with the OS only seeing 1 processor. It seems that the other processor is dead. So, guess I’ll have to start the RMA process with AMD now. Hopefully it won’t take as long as it did with Gigabyte.

Keith


Traffic????

06/29/2004 8:57 PM By Keith Strickland

Well, since keithstric.com was down for over a month, hopefully my traffic and visitors will figure out I’m back and start heading this way again. Only time will really tell. I haven’t had a chance to search the search engines and see how screwed up all this is. Guess I’ll have to do that another day. But, I’ll keep on trying to post and update what’s been going on for the past month and a half.

Keith


Woo Hooo!!!!

06/29/2004 8:40 PM By Keith Strickland

keithstric.com is back up. I got my motherboard today and I must say that the customer service at Gigabyte needs some improvement. keithstric.com went down on 05/13/04. Mailed the motherboard on 06/10/04. It took from 05/17/04 until 06/09/04 to get an RMA# from Gigabyte in order to return the faulty motherboard. This is kind of ridiculus. But I’m glad to say that the new server is now back up and running with only 1 issue, the OS only sees one CPU. So, now I’ve got to do some troubleshooting to see what’s up with that. I’m just happy to have all my files, pictures, applications, etc back.

Keith


New How-To coming soon

05/03/2004 1:55 PM By Keith Strickland

I am currently working on a new How-To for using lsxldap to do Directory (LDAP) Lookups. So, stay tuned and it should be out in a day or or so…

Keith


GA-7DPXDW lockup = keithstric.com Down

04/20/2004 12:03 PM By Keith Strickland

Well, I think I may have found the issue with the new server just locking up and sitting here doing nothing. Seems that there is an issue with the Gigabyte GA-7DPXDW+ and the onboard LAN adapter. I don’t know exactly what the issue is, but, searching the web for GA-7DPXDW and lockup found a few posts concerning the onboard LAN card. Looked on the Gigabyte Web Site and found a BIOS upgrade for the onboard LAN card locking up the machine. I attempted to install the BIOS upgrade but was promptly told by the upgrade that it can not be run from a DOS Prompt. So, I just disabled the onboard LAN controller and all seems to be well now. But I guess only time will tell. So, if you try to get to keithstric.com and are greeted with an Error 500 then you know what’s up.

Keith


keithstric.com Down today

04/01/2004 11:06 AM By Keith Strickland

My apologies that keithstric.com was down today . Seems the power flashed here a couple times today. I was here for the first one. But, the second one…. Well, it seems I need a bigger UPS as the old UPS isn’t powerful enough to run the new server I guess . But, I’ve started a new article on setting up postfix to be an e-mail gateway with Clam Antivirus and SpamAssasin and forwarding mail to Domino on the same machine. I should have that cranked out in a day or so. So, until then.

Keith


More Blogsphere idiosyncrisities

02/18/2004 11:07 AM By Keith Strickland

OK, seems if you paste images into a Rich Text story or static page as of version 1.2 Beta 1a the images no longer appear. So, I’ve changed all my Rich Text static pages into Plain Text and coded them in HTML to prevent errors showing up in the log when it tried to load those images. It’s really more of a pain than a problem, I guess it’s just part of the ongoing maintenance of this web site. Hopefully I’m done re-writing already existing stuff .

OK, It’s late and I’m going to bed. Later.

Keith


kSpam on keithstric.com

02/16/2004 11:10 AM By Keith Strickland

Version 1.38b of kSpam runs on Linux . I’ve installed it here on keithstric.com with some help from Hans-Georg Franke. So, we’ll just have to wait and see how it does.

As for configuration. When setting up kSpam on your Linux box, in order to enable the bayesian filtering just substitute kspam for nbload.exe in the documentation. When Hans informed me of this it’s like a light bulb went off in my head. Oh I get it!!!

I’ll keep you informed of it’s performance, glitches, etc as time goes on.

Keith


keithstric.com Blog Re-Arranged

02/14/2004 11:12 AM By Keith Strickland

This morning I’ve been working at re-arranging keithstric.com. I’ve removed the calendar that used to be on the right, I’ve also removed the button links that used to be over on the left. I’ve also changed the categories around which I used to use to display certain pages. I’ve changed those to static pages. I guess as a visitor to keithstric.com you probably won’t notice that much of a change, except if you got here via a search engine and you were greeted with an error. The page or category that used to be here is still here somewhere just organized differently so just look around and you should be able to find it. This change isn’t really to help navigation, appearance or functionality but just to keep me sane.

Keith


keithstric.com Photo Gallery Update

01/11/2004 11:12 AM By Keith Strickland

With a little help from Declan Lynch and some fiddling with the PHP files that power Gallery I was able to integrate the menus, header and footer from Blogsphere into my Photo Gallery. I was unable to use the CSS from Blogsphere because it really messed things up in the Photo Gallery so I had to transpose the CSS from Blogsphere into the Gallery CSS files for just the menu, header and footer items. Also while I was in the CSS for Gallery I modified it to match Blogsphere, so now the Photo Gallery looks like it’s running in Blogsphere which is very cool . My biggest gripe with the Gallery CSS is that a lot of the classes are reused throughout the application, so it made it very difficult to get the look I wanted. But, all in all I think it turned out really well and I’m quite pleased with the new look.

I think I’m gonna try and get PHP to work with Domino. At one point I did have this working but couldn’t figure out how to define a start / home page . Now, by default the start / home pages are index.htm, index.html, index.asp, index.php, etc. But I can’t find anywhere in the Domino Server document of where to define this. Seems that Domino only looks for index.htm or index.html (I haven’t messed with the ASP functionality of Domino so it may look for index.asp also). PHP did work if I pointed it directly to the page (index.php or whatever the page was). So maybe that will be my next How-To that way I can move Gallery into Domino and and stop Apache and thus save on some resources for my server. So, until then….

Keith


keithstric.com Blew up!!!

01/09/2004 11:17 AM By Keith Strickland

Well, if you tried to visit keithstric.com yesterday and was getting strange errors it’s because I blew up blogsphere. It was really bad too. Thought I had lost my whole blog and had to rebuild it. The bad thing is I thought that something was wrong when I updated the design to Blogsphere 1.2 beta 1a. The fact was, what was on my home page was the “Home” category and it seems that the Blog By Category views were changed to not include images or the entire entry. So this made me think it was broken. So, after trying to roll back the design I opted instead to use my backup copy after making a backup in a different directory which promptly replicated and started causing Replication save conflicts (aaarrghh). So, I deleted my main copy of Blogsphere and moved the backup to proper location, fixed the Replication Save conflicts and got the comments count to work properly . So now everything is back the way it should be and I also learned a lesson or two. I guess all in all it could have been worse.

Keith


keithstric.com has a New Look

01/04/2004 11:18 AM By Keith Strickland

OK, I started playing with the CSS behind keithstric.com. I think it looks better, a much lighter look. I haven’t updated the photo gallery to match it yet, maybe I can do that this afternoon. But, I was tired of the dark look. As for new technical documents, some of those will be coming soon, I don’t know yet if they’ll be Linux oriented or Domino oriented. I’m leaning towards Domino Admin how-to documents but only time will tell and depending what needs arise. So, until then, enjoy the new look and I’ll be seeing you soon…

Keith
OK, I’ve been using the Mozilla Firebird browser which rendered everything perfectly. Now, when I looked at keithstric.com in an Internet Explorer browser, you couldn’t read any of the text in the menus because it was so small. So, I had to make some tweaks to correct it. Just yet another reason to use Firebird


Gallery 1.4.1

12/09/2003 11:24 AM By Keith Strickland

I’ve upgraded my photo gallery to Gallery 1.4.1. I think it’s got a much cleaner look and is MUCH more customizable. They also included voting that you can incorporate into your gallery for photo ranking. They also added some additional administrative utilities which are kinda cool. Over all, I think it’s much better than the version I was running (dunno what version that was). But, you can check out the Gallery website here. If you run your own box and have PHP enabled, then put together your own Gallery. No compiling necessary, just untar to your html directory, run the config utility and that’s it. Enjoy!

Keith


keithstric.com Links and stuff

09/22/2003 12:30 PM By Keith Strickland

Howdy everyone. I’ve been looking at my referrers lately and have been finding quite a few sites that contain a link to keithstric.com. I just wanted to put out a big THANK YOU FOR YOUR SUPPORT! Here are a couple of the links I found http://mattrobbins.dyndns.org/, http://www.musicline.ch/rayweber/domino.html and http://www.blogsphere.net.

While I haven’t had much to say of late I did read an interesting story today about the creator of Lotus Notes (Ray Ozzie) having had a patent in the patent office that got approved after the patent for Microsoft Internet Expolorer and that some of the technology used for IE came from technology that Ray Ozzie had created. Whether or not Ozzie will post a dispute with the patent office was not said. But if a dispute is entered it could goto court and a settlement of $1.47 per instance of IE installed since 1998 could be awarded. If you would like to read more here is the link http://www.detnews.com/2003/technology/0309/20/technology-276068.htm. So, what kind of impact would this have on Lotus Notes/Domino if any? Anyone? Rants, ideas, etc?

Thanks again to those sites which have posted a link to keithstric.com and I will attempt to keep putting how-to documents together for whatever needs may arise in the future.


keithstric.com Registration

07/06/2003 12:36 PM By Keith Strickland

Everyone, I’ve put a Bulletin Board out there. To use it requires registration. You can be assured that I won’t use your name or e-mail address for anything other than access to the bulletin board. It will not be sold to any spam / headache producing entities. It is for the sole purpose of logging into the bulletin board and an e-mail is sent when someone replies to your post. Send me an e-mail or post a comment (use the comment link above) and let me know how you feel about registration here at keithstric.com. Also, would you participate with the bulletin board if you didn’t have to register? You can get to the bulletin board here


DOH!!!

07/03/2003 12:38 PM By Keith Strickland

After looking at my web site statistics I noticed that I wasn’t getting much traffic, at least ALOT less than normal and I couldn’t figure out why. There were also alot more errors being reported, specifically 404 File Not Found. Then I looked at the Recent Googles over to the right and I clicked on one, found my website in the results and clicked the link provided by google. It went to http://www.keithstric.com/document.php. Well, that file doesn’t exist so I got 404 file not found error. So, I’ve setup a rule to handle these types of requests. Now, I’ve noticed I’m getting ALOT less errors in the log and ALOT more traffic. Cool. Just goes to show, all the preparation in the world there will still be at least 1 DOH!!!

Also, I’ve put together a Linksys Router / Web Server setup How-To. You can find it over to the left in the How-To menu. Enjoy!


Power Failure Today

06/26/2003 12:38 PM By Keith Strickland

Had a power failure today and my web server went down hard. Had to run fsck on all partitions. Also, caused my Notes Client to start acting funny. When I put the cursor in a Rich Text Field the client freezes for about 30 seconds and then all is fine. Dunno, I’ve looked on www.lotus.com/ldd and couldn’t find alot about it. But, at least I got keithstric.com back online. Looks like I may need to break out the UPS downstairs and see if it still works. Already said I have enough computer equipment under my desk


keithstric.com Moved to BlogSphere

06/25/2003 12:40 PM By Keith Strickland

I’ve moved keithstric.com to BlogSphere on a Domino Server. So far so good. The only issues I’ve had so far are with my photo Gallery. I got php running on Domino and it seems to work but the Domino server don’t recognize index.php as a start page. If anyone knows where this gets set (I know I’ve seen it somewhere) let me know. Then maybe I can get Gallery working on Domino. But until then, I’ve got apache running on a different port than Domino, seems to work for now.

Also, I had to get rid of some of the links to add content to the site. I’ll look into adding that kind of functionality back. Also, check out the bulletin board, get us started, ask some questions, post some rants, whatever. Let’s try to get some traffic over there.


New Web Page on 1stric.com

05/14/2003 12:43 PM By Keith Strickland

I’ve added a new web page to 1stric.com. It’s a download page (finally) . There isn’t very much there, but, it’s stuff I can disseminate as I created it. I hope you can use what’s there and enjoy it. There is some Lotus Notes / Domino databases and of course the file to create a mySQL database for the IMAP, XMail and SquirrelMail install instructions.


Subscribe to keithstric.com

OpenNTF

Disclaimer

The opinions and ideas posted on keithstric.com are not necessarily the opinions and ideas of my employer. The solutions, techniques and code provided here are not guaranteed or warranted in any way and are free for you to use at your own risk.