If you get a popup saying Someone is currently logged into the APC Management Web Server. Please try again later when trying to connect to the APC Symmetra or one of the APC PDUs, simply go back to the web URL, and append /logoff.htm to the end. This will log the console out so that you can log in.
Sep 27 2019
Someone is currently logged into the APC Management Web Server
Sep 06 2019
Outlook Teams Add-in Replaces Skype Meeting Add-In
The problem is: once Teams is installed, the Teams Outlook add-in takes precedence over the Skype for Business add-in – the SFB add-in actually gets disabled.
If you enable the add-in from within Outlook > Options > Add-ins > COM Add-ins, it will revert back to “unloaded” when you next log on. Maybe this Microsoft’s way of forcing everyone to Teams…
To fix this, you need to hack the registry to force Outlook to show both Teams and SFB. Continue reading
Sep 05 2019
How to increase the max upload size in WordPress
By default, maximum upload size in WordPress ranges from 2MB to 150MB depending on the settings of your web hosting provider is giving by default.
To check what is the current max upload size limit in your WordPress site then navigate to WP Admin → Media → Add New. You will see the current max upload size on the bottom as shown in the screenshot.
If the current max upload size limit meets your demand then you can leave it as it is. However, if it doesn’t then don’t fret, there are many ways you can increase the max upload size in WordPress. Continue reading
Sep 03 2019
Get Scheduled Skype for Business Meetings from SQL
The following SQL query will get scheduled conferences from the Skype for Business RTC database. From a Skype for Business Standard Edition server its in the RTCLOCAL instance, otherwise you’ll find it in the backend SQL server. To run the query you will need to open SQL Server Management Console, connect to the database, then open a new Query. Copy the following code snippet and run. Continue reading
Aug 28 2019
How to get Polycom Lync Edition phone logs
For troubleshooting purposes you might need to get logs from Polycom Lync edition phone like
Polycom CX models: 300, 600, 3000
or
Polycom VVX phone models: 310, 410, 500, 600
Here is how to retrieve logs from Polycom phones: Continue reading
Aug 23 2019
How to Generate a Certificate from Windows Server CA
The process of submitting and generating a new certificate is a two steps process listed below:
- Request – This is the process where we create a certificate request and save it as a.CER file, In many cases your application or you will create it from IIS or the certificates MMC.
- Issuing \ Generating certificate – this process follows step one, Submitting the requested file to our Certificate Authority and copying the new certificate
Aug 01 2019
MSSQL Server Error 67 and 17 SQL Server does not exist or access denied
We are running Windows SQL Server 2016 Enterprise on Windows Server 2016. The server has an instance with databases in Always On High Availability group. People connect to the instance mostly from MS Access and MS Excel applications and from time to time they experience the following error:
—————————
Microsoft SQL Server Login
—————————
Connection failed:
SQLState: ‘01000’
SQL Server Error: 67
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionOpen (Connect()).
Connection failed:
SQLState: ‘08001’
SQL Server Error: 17
[Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.
Continue reading
Jun 27 2019
10 Practical Sar Usage Examples
There are two ways to invoke sar.
- sar followed by an option (without specifying a saXX data file). This will look for the current day’s saXX data file and report the performance data that was recorded until that point for the current day.
- sar followed by an option, and additionally specifying a saXX data file using -f option. This will report the performance data for that particular day. i.e XX is the day of the month.
In all the examples below, we are going to explain how to view certain performance data for the current day. To look for a specific day, add “-f /var/log/sa/saXX” at the end of the sar command. Continue reading