• Who is upgrading to Windows 10?

    General Computing windows 10 upgrade
    16
    0 Votes
    16 Posts
    2k Views
    theDaftDevT
    I had to force the install since it was taking forever to begin automatically. I think the whole thing is pretty neat. Would like to try Cortana as well, but the french speech recognition isn’t a thing yet :(
  • NodeBB v0.6.x

    Announcements nodebb upgrade
    2
    0 Votes
    2 Posts
    801 Views
    ScuzzS
    I’ve finally got round to upgraded to the latest version of NodeBB! After spending days messing about trying to get the forums backup and and running i attempted to load our old database and user the latest version of NodeBB. And guess what? it worked! Everything (mostly) is back to how it was before. See you in another 10 years.
  • How to Upgrade Ghost

    General Computing ghost blog upgrade how to
    1
    2 Votes
    1 Posts
    492 Views
    ScuzzS
    Usually the upgrade process for various web based software is very simple. Enter a few commands over SSH, run a script or even upgrade via an admin control panel. Upgrading the Ghost blogging platform is very similar. In this post I will run you through a very quick way of upgrading Ghost to the latest version. How to Upgrade a Ghost Blog Before you upgrade any software it is always recommended to backup all your data. Luckily Ghost has a simple way of backing up. Log into your blog admin control panel and then go to Settings > Labs. Now click the export button. This will download a .JSON file. This file can be used to restore your blog. It is also recommended that you backup your images and theme in your \ghost\content\ directory. This can be done by logging into your server via FTP, SFTP or any other method of accessing your server for file transfers. SSH into your server CD \to\ghost\installation\folder wget http://allaboutghost.com/updateghost chmod +x updateghost ./updateghost The script will run and once it has finished you can now run ghost with your preferred method. At BitBangers we like to run our Ghost blog with Forever. So to get our blog up and running again we need to enter the following command. NODE_ENV=production forever start index.js If the script has run correctly you should have a fully update Ghost instance running. Below is the contents of the updateghost script. #!/bin/bash # Written by Andy Boutte and David Balderston of howtoinstallghost.com, ghostforbeginners.com and allaboutghost.com # updateghost.sh will update your current ghost install to the latest version without you losing any content if [ -f config.js ] then echo `whoami` # Make temporary directory and download latest Ghost. mkdir temp cd temp curl -L -O https://ghost.org/zip/ghost-latest.zip unzip *.zip cd .. # Make database backups. for file in content/data/*.db; do cp "$file" "${file}-backup-`date +%Y%m%d`"; done # Copy the new files over. yes | cp temp/*.md temp/*.js temp/*.json . rm -R core yes | cp -R temp/core . yes | cp -R temp/content/themes/casper content/themes npm install --production # Delete temp folder. rm -R temp echo "You can now start Ghost with npm, forever or whatever else you use." else echo "Please cd to your Ghost directory." fi Thanks to HowToInstallGhost for proving the script and instructions.
  • Server Upgrade

    Announcements server upgrade
    2
    2 Votes
    2 Posts
    815 Views
    ScuzzS
    Server upgrade has been completed. I am just waiting for DNS changes to propagate and then we should be up and running as normal. We are also on the latest version of NodeBB. I have noticed some issues with the forum “Restart” function but other than that everything seems to be working correctly. The migration has taken me just under 2 hours and we have experienced zero down time. Pretty cool eh? It’s time for a cup of Tea and then on to install my Ghost blog. Let me know if you have any issues and i’ll will fix them ASAP.
  • 0 Votes
    1 Posts
    430 Views
    ScuzzS
    Today I was tasked with upgrading some Windows 7 Home Premium PCs to Windows 7 Ultimate. For some reason the installer will not let you upgrade from Home premium to Ultimate and it tries to force you to do a clean install. I managed to find a way around this by editing some registry keys. Open Regedit and navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion And change: EditionID from HomePremium to Enterprise and ProductName from Windows 7 HomePremium to Enterprise Then re run your upgrade and everything should run as you expected! Original Blog Post