Today, as of this afternoon, part of Apple's iCloud service is down. I noticed it just as I was attempting to sign in using the iCloud web application. I immediately got a nasty server error:
A quick look at the System Status page revealed issues with sign in:
To enable text wrapping inside a <pre> tag, enable this in CSS:
pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ }
The (rather verbose) logs for the Windows SBS 2008 and 2011 POP3 Connector are located in the folder:
C:\Program Files\Windows Small Business Server\Logs\pop3connector
UPDATE: this article has been merged into Configure DNS for Office 365 using DirectAdmin → Configure Lync Online.
If your to-do bar shows up empty, or only displays a Loading... message, try to start Outlook with the parameter via Start → Run:
outlook.exe /resettodobar
To get a list of running SQL queries, log into the PostgreSQL CLI:
psql -U username database
Replace username and database with the proper values. Then run this query:
SELECT procpid,datname,usename,client_addr,waiting,query_start,current_query FROM pg_stat_activity;
Inside the list is also the procpid, which you will need to kill a running query. To kill, run this query, substituting with the proper procpid:
SELECT pg_cancel_backend(procpid);
You can script password changes in linux by using passwd without any additional effort. The syntax for this is:
echo "your-password" | passwd --stdin user
To change a user's (login's) password via Transact-SQL, use this:
ALTER LOGIN User WITH PASSWORD = 'new-password' OLD_PASSWORD = 'old-password'; GO
A complete list of firmware updates of all Intel-based Macs can be found here, together with download links:
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |