Showing posts with label It companies. Show all posts
Showing posts with label It companies. Show all posts

Thursday, 26 June 2014

cdr_mysql.c:203 mysql_log: Cannot connect to database server localhost


When restoring FreePBX from backup, you may find the CDR database is not updated. This is because the cdr_mysql.conf file is not overwritten by the restore, and so the password for the CDR database is incorrect.

You can resolve it like this:

SSH onto the server
nano /etc/freepbx.conf

Find the lines:

$amp_conf['AMPDBUSER']  = 'freepbxuser';
$amp_conf['AMPDBPASS']  = '3098SADFSLa';​​


Copy the password, quit nano

- See more...

Countdown to End-of-Support for Windows XP

Support for Windows XP ends
On April 8th 2014, Microsoft will end support for its decade-old Windows XP. This means, you will no longer receive security updates, fixes or online technical support for PCs still running Windows XP SP3 and Office 2003. The security and privacy implications of this event could have significant impacts on your business, so if you’re running either of these products you should plan to take action soon.
As a precaution, we would recommend all our clients to consider upgrading to the latest supported operating systems such as Windows 7 or Windows 8.1. Customers migrating to these platforms will benefit from enhanced security, broad device choice for a mobile workforce and higher user productivity.
Why upgrade now?
  1. No support: Microsoft support, including online and phone-based technical support, will end. As a result both Jaytag and any other IT support company will not be able to properly support Windows XP.
  2. Security Risks: Critical security updates will stop, making machines much more vulnerable to viruses. Hackers are waiting to take advantage of this insecurity. If your computer gets a virus your machine will not only not perform properly – it may shut down entirely. Moreover, you are at risk for losing files and having your personal and business information stolen. Anti-virus software will also not be able to fully protect you once Windows XP itself is unsupported.
  3. Compliance: Businesses that are governed by regulatory obligations may find that they are no longer able to satisfy compliance requirements e.g. PCI compliance.
- See more...

Has your router been cracked wide open?

linksys router smashed
We have had a number of customers report recently that their internet browsers have been hijacked. Quite simply, this means that when they try to browse to a website, such as google.com they are redirected somewhere else.
These websites that are displayed often ask for Adobe Flash player to be updated, or inform you that a virus scan needs to be completed on the computer.
These sites are not genuine. In fact, the reason that the pages are shown is because the settings on the internet router have been changed by a 3rd party.
More information about this security vulnerability is available here: http://www.isssource.com/routers-hacked-via-email/
This of course is extremely worrying, as it means an outsider has successfully accessed the computer network, and may in future try to infect connected computers with viruses, or otherwise attempt to illegally access data.
- See more...

How Cloud Storage Could Help Your Small Business

Cloud Storage is the term used to describe using an online facility to store your information. These are usually operated by a third party company using data centres and there are a number of different operators providing it such as Dropbox, Skydrive, My Secure Backup, and Google Drive.
Cloud storage is an increasingly popular concept, and many small businesses are embracing it to help them. But how can cloud storage help a small business?
One popular use of cloud storage is to store your important documents such as databases, spread sheets or client projects. By doing this, it doesn’t matter if your computer breaks down, is stolen, or the file is otherwise lost; you will be able to successfully retrieve it from your cloud. You can usually set up an automatic synchronisation, so that when you save a document to a certain folder in your PC, the cloud storage facility you use will pick it up and automatically save it there too. Alternatively if you log onto your cloud storage remotely from a remote device or there web site you can upload/maintain documents and these will automatically synchronise/update on your home computer.
It is also a secure way of storing your information. You can change privacy settings of the documents so that it can only be accessed by yourself, people listed, or people who you pass the link to. This allows you to share it with people if you need it, or stash it away in a private folder if it isn’t something you want to share.
The cost of cloud storage can be considerably lower than other solutions, with many companies offering you a small amount of start-up storage for free, with higher amounts becoming available to you for a small fee, often on a monthly subscription basis.
So lets take a look at the four services I previously mentioned and see what they have to offer:
Dropbox 

Dropbox
Dropbox is a cloud storage facility which comes with an initial 2GB, which can be expanded to fit your requirements.
- See more...

Windows Server updates failing – Error 80072EFD

You may have found that your Windows Server won’t update via Windows Updates Services and the following error message is displayed on screen.

error2 

One issue which causes Windows Updates to fail with error 80072EFD is if the Windows Server is pointing at itself or another Server on the network to find the updates.

To check this click Start > Run > type “regedit”, and accept the UAC prompt to continue.

regedit 

Now navigate to HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate.

- See more...

Wednesday, 25 June 2014

Windows XP Recovery Console – KB310994 download

To manually install the Windows Recovery Console, you have to have the necessary updates. It seems Microsoft have removed the link to the recovery console that used to be linked to from here.

This makes running tools like ComboFix for example, quite difficult.

I’ve sourced the files (at least for SP2 and up) they are mirrored here:

windowsxp-kb310994-sp2-home-bootdisk-enu.exe – For Windows XP Home SP2 and newer.
windowsxp-kb310994-sp2-pro-bootdisk-enu.exe – For Windows XP Professional SP2 and newer.
To install for combofix use, you can download the file to your PC and drag and drop onto the combofix.exe file, as detailed here.

- See more...

Monday, 19 May 2014

Send test email via telnet

It’s often useful to test an email server manually – to ensure the port is open and redirected properly, and also that the server is delivering messages to the mailbox correctly.
Here is how to send an email manually with telnet:

Open a command prompt on the PC you will send the test email from telnet server.server.com 25​

HELO jaytag.co.uk (response will be 250 OK)

MAIL FROM:dmcmillan@jaytag.co.uk (response should be 250 OK – mail from dmcmillan@jaytag.co.uk)

RCPT TO:james@stephenrjames.com (response should be 250 OK – Recipient james@stephenrjames.com)

DATA (response should be 354 Send data. End with CRLF.CRLF) - See more...

How to reset a network card in Windows

Open Control Panel
Click Hardware and Sound
Click Device Manager
In Network Adapters, find the LAN card you want to reset – this is often something like:
Realtek PCIe GBE Family Controller
Broadcom NetXtreme 57xx Gigabit Controller
Intel PRO/1000MT Network Adapter
Right click on the adapter and click Uninstall
You will be warned that this will remove the device from the system – ensure that ‘Delete the driver software’ is *not* ticked if this is shown Note: Clicking OK will disconnect your remote access session if you are connected! - See more...

Convert plain numbers to MAC addresses with Excel

We use the following formula if you need a – between the octets:
 =MID(c2,1,2)&"-"&MID(c2,3,2)&"-"&MID(c2,5,2)&"-"& MID(c2,7,2)&"-"&MID(c2,9,2)&"-"&MID(c2,11,2)

We use the following formula if you need a :
between the octets:
=MID(c2,1,2)&":"&MID(c2,3,2)&":"&MID(c2,5,2)&":"& MID(c2,7,2)&":"&MID(c2,9,2)&":"&MID(c2,11,2) - See more...

Tuesday, 13 May 2014

Office365 – Distribution list blank return path

When you are using Office365, you may find that external email addresses in a distrbution list do not recieve mails sent to the distribution list email address.

Many spam filters will block emails with a blank or empty return path, but Office365 sets this blank as default, to prevent email bounce loops.
This is normal behaviour – a large distribution list shouldn’t distribute a bounce/DSN report to the entire membership.
For a single membership list for use with Zendesk, Help Scout or other similar mailbox monitoring applications, it may be necessary. - See more...

Monday, 14 April 2014

Windows XP Recovery Console – KB310994 download

Windows XP Recovery Console – KB310994 download

To manually install the Windows Recovery Console, you have to have the necessary updates. It seems Microsoft have removed the link to the recovery console that used to be linked to from here.

This makes running tools like ComboFix for example, quite difficult.
I’ve sourced the files (at least for SP2 and up) they are mirrored here: windowsxp-kb310994-sp2-home-bootdisk-enu.exe – For Windows XP Home SP2 and newer. windowsxp-kb310994-sp2-pro-bootdisk-enu.exe – For Windows XP Professional SP2 and newer. - See more...

Conficker Virus – Think you have it?

Conficker Virus – Think you have it?

biohazard

The Conficker virus has to be one of the most difficult to get rid of. But how can you quickly diagnose if you have it? There are some well known signs: Windows Update and Automatic Updates are blocked System Restore has been turned off You cannot access anti-virus websites (such as Symantec, McAfee, AVG etc.) There is now also an even quicker way: Click Here Think you might be infected? - See more...

OSX Citrix Client Installation – Auto open ICA files from Safari

 

We have come across an issue recently with the new version of the Citrix online plugin (now called Citrix Reciever). Installation of the Citrix Reciever software from the OSX App store is not sufficient to allow the downloaded ICA file to auto open. The result is, you install Citrix Reciever and login to the Citrix site only for the ICA file to download, but not open. This makes it look like Citrix isn’t working properly.

The fix is simple:
  • First, you have to modify what Safari considers as a “safe” file. Ensure that in Safari’s Preference panel that ‘Open “Safe” files’ is checked. 
  • Next, download this zip file: http://www.jaytag.co.uk/wp-content/uploads/2011/08/Auto_Open_ICA.zip Extract the plist (preferences file) from the downloaded zip file 
  • Drag and drop the file to /Library/Preferences. (On OSX Lion, type \library in the ‘Find’ box and double-click into the preferences folder) 
  • Restart Safari
See more...

A simple MySQL Backup Tool

A simple MySQL Backup Tool 

 

If you administer a website (or indeed a number of websites) you may need a tool which will allow you to simply backup a MySQL database on a regular basis. Although there are a number of tools available online, none quite fit our needs. As a result, we’ve quickly written a simple MySQL backup tool in PHP. Features
  • Tested compatible with PHP version 5.2.14 and MySQL 5.0 
  •  Allows for SQL and ZIP export of a single MySQL database 
  • Lists previous backups made This is version 0.1a – it is no doubt buggy. 
We would appreciate any feedback if you do decide to use the tool. The application is fairly self explanatory in its usage. 
Installation 
  • Extract the Zip file 
  • Copy the contents to a directory on your server 
  • Browse to the directory you saved the files to with your browser 
Features to be added in v0.2a (Release date 4th February 2011) Improved documentation Backup multiple databases Additional security (password for created ZIP files, and password for the utility) - See more... 

Briefly unavailable for scheduled maintenance. Check back in a minute

Briefly unavailable for scheduled maintenance. Check back in a minute

 

WordPress Logo

This WordPress error message appears when a plugin update fails half way through. The fix is extremely simple: FTP to your WordPress installation directory Delete the .maintenance file at the root wordpress folder (where wp-config.php lives) Login and retry the plugin operation - See more...

Updating WordPress with 1&1 hosting

Updating WordPress with 1&1 hosting 

Logo for 1&1

WordPress plays nicely with most web hosts, although 1&1 are a little different. If you try to update a freshly installed copy of WordPress on 1&1 hosting without making this change, some functions (mainly the automatic update processes) will not complete successfully. The key is to edit the .htaccess file in the WordPress installation directory: FTP to your WordPress installation directory Download the .htaccess file Edit the file, adding the following line: AddType x-mapp-php5 .php Upload the file to the server, overwriting the old .htaccess file - See more...

Wednesday, 12 March 2014

Blocking browsing to website subdirectories – 1&1

If you are using a webhost like 1&1, you may find that adding additional domains to your hosting package sets the default directory (the ‘home’ directory) as a subdirectory of the main site. Imagine you have two sites: www.abc.com www.newsite.com After adding the newsite.com entry to your list of domains the home directory may be set to www.abc.com/newsite/ – this will allow a user to browse to www.abc.com/newsite and access the new site. Why is this a bad thing? It’s uncertain whether sites like google treat multiple domains pointing to content as a bad thing – there is some information out there, like here, but the situation isn’t 100% clear. The best situation is to have the content isolated properly, so that the new site we have created newsite.com cannot be browsed in this fashion. There are two methods to resolve this issue: Set the home directory of the primary website to a subdirectory
  • Configure abc.com to have a home directory of /http_docs/abc.com (or similar) 
  • Configure newsite.com to have a home directory of /http_docs/newsite.com (or similar)
See more...

Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39)

 

This is a common problem with Windows Vista – most typically, the CD-ROM or DVD drive will fail to function correctly. Here are the steps we take to fix the issue (be cautious – you’ll have to edit the registry of the computer) Click the Start button, and then in the search box, type regedit. Press the Enter key. NOTE: If prompted for an administrator password or a User Account Control prompt is displayed, type the appropriate password or click Continue. In the Registry Editor window, in the left pane, double-click the HKEY_LOCAL_MACHINE folder. - See more...

Wednesday, 19 February 2014

Sporttracks v2 – Map problem fixed

Sporttracks v2 – Map problem fixed 

With Sporttracks v2, there is an issue that the Terraserver map plugin no longer functions correctly. Maps cannot be zoomed, and over time, none of the routemaps appear to display at all. Thankfully, there is a user created plugin called Apply Routes. Apply Routes provides a number of extensions to the SportTracks functionality: 

Windows Virtual PC – IE User

Windows Virtual PC – IE User 

When you start Windows XP from the Windows Virtual PC software, you may be asked for the password to login for the first time.
See more...