Information Systems Analyst

Hosting Details Updated

Posted on 13. Oct, 2011 ·Comments Off

Read more here. I have renewed my developer subscription with woothemes so I can include any of their themes in my development work. They are an incredibly good company and their themes are top notch. I now can offer a choice of over 100 themes with my hosting/development package. I'll set everything up and you just fill in the content.

Categories: Hosting ·

Free Website+Email Offer

Posted on 11. Oct, 2011 ·Comments Off

I'm offering my web development service for free. I'll set a website up for you that you can manage yourself using WordPress and a nice template of your choice (I have a few dozen included commercial templates).

You pay for hosting @ $20/month (email included) through my service and your domain name through godaddy which is usually $10/year and I'll help you with the rest. This is a $300-$500 value. I've developed a good system for setting up sites inexpensively and I can offer email support after the initial site set up. I come highly recommended. This is a really good deal if you need a simple informational website but don't have a lot of money to get it started.

Inquire here: http://mattjsherman.com/contact/

More Info here.

Categories: Hosting ·

New Forum

Posted on 17. Sep, 2011 ·Comments Off

Please use the new forum for all bp blog related issues. You can use this link to search through cached pages of the old forum.

Categories: News ·

BP Blog 10

Posted on 12. Jun, 2010 ·Comments Off

To update:

  1. Backup everything first!
  2. Upload the following:
    1. All of the files in the root folder (there were no database changes, just mostly admin page changes)
    2. ckeditor folder
    3. ckfinder folder
    4. Symbol-*.png in the images folder
    5. js folder
    6. css folder
    7. You may need to overwrite the Connections/blog.asp file (there were minimal changes) and change the connection string to your current one)
  3. After you confirm that everything works then you can delete the fckeditor folder

Changelog:
v10.0 [2010-07-10]
+ Editor changed to ckeditor
+ Layout tab - thanks Phillipe!
+ Entries search by title or content - thanks Phillipe!
+ Additional admin styles - copy Symbol-*.png files into images folder
+ Enhanced admin form validation
* Enhanced the crop sentence routine
* Adding one new line of encoding to rss.asp
* Fixed CSS problem with andrea theme
* Removed version numbers from public pages
# Manually add pagination using the layout tab

If you get the error "unable to find image manipulation component" when attempting to insert/link an image or file then make sure your UserFiles folder has read/write enabled.

Categories: Bp Blog ·

YUI Compressor Shell Extension for Windows

Posted on 16. Jul, 2009 ·Comments Off

This is a registry/bat extension that allows you to right-click a folder in Windows explorer (tested on XP) and it will delete all of the *-min.js and *-min.css files and then recreate them using YUI Compressor. After installing, right-click a folder and choose "Compress JS/CSS Files".

Don't use this on a folder that has a bunch of already -min(ified) js and css files and you don't also have the uncompressed files. This will first delete the -min file if it exists and then recreate it using the filename without the -min. I wrote this as a useful function for something I do over and over. I always use the uncompressed files for development but reference the -min files in production. This will recreate them for you easily.

To install just copy all of the files to C:\winnt\ and run yuicompressor.reg. If you want to put the files anywhere else then you'll have to change the paths in both the bat and reg files. My suggestion is just to create this folder if it doesn't exist and keep it simple.

If you want to upgrade the YUI Compressor binary just download it and remove the version number from the filename so that it's simply "yuicompressor.jar" and dump it in c:\winnt and you're ready to go.

Download yuicompressor.zip

Here's the code for the bat file:

cd "%1"
for /f %%a in ('dir /b *-min.js') do call:ProcessDel: %%a
for /f %%a in ('dir /b *-min.css') do call:ProcessDel: %%a
for /f %%a in ('dir /b *.js') do call:ProcessCompress: %%a
for /f %%a in ('dir /b *.css') do call:ProcessCompress: %%a
 
:ProcessDel
 
IF NOT [%1]==[] call:DeleteMinFiles: %1
 
GOTO:EOF
 
:ProcessCompress
 
IF NOT [%1]==[] call:CompressFiles: %1
 
GOTO:EOF
 
:DeleteMinFiles
 
IF EXIST "%CD%\%1" del "%CD%\%1"
 
GOTO:EOF
 
:CompressFiles
 
java -jar c:\winnt\yuicompressor.jar %1 -o %~n1-min%~x1
 
GOTO:EOF
Categories: Programming ·