404 when using pretty permalinks on new WordPress site on LEMP/nginx
Add this piece of code to nginx.conf server {[…]if (!-e $request_filename) {rewrite ^.*$ /index.php last;}[…]}
Iordanis Kazanas – Virtual Systems Administrator
Add this piece of code to nginx.conf server {[…]if (!-e $request_filename) {rewrite ^.*$ /index.php last;}[…]}
# Scrolling buff altscreen on caption always “%{= kG}%-Lw%{= kY} %n %t %{= kG}%+Lw%{= kc}” # Putty fix # term xterm termcapinfo xterm ti@:te@ defscrollback 100000 # Fancy vbell on vbell_msg “Wee~” hardstatus on hardstatus string ‘%{= kc}%H (%l) %-21=%{= .m}%D %d.%M.%Y %0c’ # Bind F11 and F12 (NOT F1 and F2) to previous and … Read more
Disable IPv6 in kernel module (requires reboot) 1. Edit /etc/default/grub and add ipv6.disable=1 in line GRUB_CMDLINE_LINUX, e.g.: # cat /etc/default/grub GRUB_TIMEOUT=5 GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT=”console” GRUB_CMDLINE_LINUX=”ipv6.disable=1 crashkernel=auto rhgb quiet” GRUB_DISABLE_RECOVERY=”true” 2. Regenerate a GRUB configuration file and overwrite existing one: # grub2-mkconfig -o /boot/grub2/grub.cfg 3. Restart system and verify no line “inet6” in “ip addr show” … Read more
github.com: MrOtherGuy/firefox-csshacks github.com: Aris-t2/CustomCSSforFx C:\Users\$user\AppData\Roaming\Comodo\IceDragon\Profiles\ $profile_name .default\chrome\userChrome.css C:\Users\$user\AppData\Roaming\Mozilla\Firefox\Profiles\$profile_name.default\chrome\ userChrome.css Sample userChrome.css for Firefox on Linux: sample userChrome.css for Firefox on Windows:
Make sure it is “wp-content/uploads” and not “/wp-content/uploads”
http://yourblog.com/wp-admin/options.php
Both Teredo and ISATAP are mechanisms for IPv6 connectivity on IPv4-only networks. Since Windows 7 comes with IPv6 enabled, I wouldn’t be surprised if they were always on, just didn’t appear in ipconfig for some strange reason. (On one of my test VMs, the ISATAP adapter shows up, but not Teredo. Also strange.) ISATAP is … Read more
The reason this occurs is because bash actually expands the asterisk to every matching file, producing a very long command line. Try this: find . -name “*.pdf” -print0 | xargs -0 rm Warning: this is a recursive search and will find (and delete) files in subdirectories as well. Tack on -f to the rm command … Read more
Get-MailboxExportRequest to see all the requests Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest to remove the completed. Get-MailboxExportRequest | Remove-MailboxExportRequest to remove all of them http://www.falconitservices.com/support/KB/Lists/Posts/Post.aspx?ID=115 $mailboxes = get-mailbox foreach ($mailbox in $mailboxes) { new-mailboxexportrequest -mailbox $mailbox -FilePath \\server\share\$mailbox.pst }
Understanding Litigation Hold http://technet.microsoft.com/en-us/library/ee861123.aspx When a reasonable expectation of litigation exists, organizations are required to preserve electronically stored information (including e-mail) that’s relevant to the case. This expectation can occur before the specifics of the case are known, and preservation is often broad. Organizations may preserve all e-mail related to a specific topic, or all … Read more