Posts

Showing posts with the label error

"OK Google" not working on LG G2 Android 4.4 with keyword detection able and enabled

Image
I have no idea if it has been disabled by purpose or if it was simply buggy, but the fact is that, on my LG G2 phone, the " OK Google " keyword wasn't recognized from the Google Now app or even when I was clicking in the search box. The corresponding message didn't appear in the search box neither the microphone icon, even if the option was able and enabled in the parameters of Google Search . mic icon legend from the google help center As this option was working fine on my colleagues' LG G2 phones, I began to dig into the phone and the only difference I had noticed is that the firmware of my phone was a Taiwanese's one when my colleagues' one were European. So I've downloaded a KDZ of the latest European version for the LG G2 16GB here (when I wrote these lines it was D80220D ) and I've followed these instructions to install it on my phone. Now the Google Now keyword is correctly recognized when I'm in the Google Now app or in...

Resolve the error "Service Temporarily Unavailable" on Belgacom e-services My Bill & Usage

If you get the error message "Service Temporarily Unavailable" when you connect to the e-services administration, you can simply change the email address used as your login and that should do the trick.

Error message when completing a certificate request on IIS 7.5

Image
If you tried to complete (means the request has been submitted from the same server) a certificate request on IIS 7.5 and got the following message : Cannot find the certificate request associated with this certificate file. A certificate request must be completed on the computer where it was created. You can simply try to click on Cancel and refresh the window. This is mostly a bug of IIS and the certificate could be installed anyway. If not, try the following method : Import the certificate using mmc.exe and the Certificate addin in Personnal Certificates' store:    When the certificate is imported, find and copy the serial of this certificate: Remove the unnecessary spaces of the serial number and run the following command : certutil –repairstore my   <serial number> The certificate should now be imported and visible in the IIS interface #1 #2

OVH error : 520 Website not authorized on CDN

Image
If you have an external DNS entry configured to point to an OVH website, you could get this error : 520 Website not authorized on CDN Simply add your external url to the Multiple Domain option: This actualy tells to apache to bind this url to your website.

Progress database odbc error : Broker rejects connection

I was trying to link a Progress database to an SQL Express server few days ago. The connection has first worked fine, but at one moment, I was not able to run any queries and finally got this error message : DataDirect ODBC Progress OpenEdge Wire Protocol driver Broker rejects connection In my case, this error was caused by too many active connections from the user I used to connect from ODBC. But all the applications were closed. So I've used the utility proshut to list all connected users and to kill the unreleased connections: list connected users : [path to proshut] proshut.bat [path to your db] .db -C list kill a specific user :  [path to proshut] proshut.bat [path to your db] .db -C disconnect [user number] #1 #2

Sharepoint 2013 Prerequisite Install - AppFabric Error

If you get an error when installing the AppFabric prerequisite with the prerequisiteinstaller.exe provided on the Sharepoint 2013 DVD, check your PSModulePath environment variable. There could be a trailing double-quote : > C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules;c:\Program Files\AppFabric 1.1 for Windows Server\PowershellModules "  Delete it and re-run the installer. #1

Alfresco on Windows Server 2008 R2 causing error 'no buffer space available'

On a Windows Server 2008 R2 x64 SP1 with Alfresco installed we were getting the following errors in a loop : "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full" "no buffer space available" "No buffer space available (maximum connections reached?)"  Simply installing this hotfix should do the trick #1

Unable to create new logical volume with no extents

If you try to make a snapshot and that you get the following error message : Unable to create new logical volume with no extents Simply list the active logical volumes using this command : lvdisplay  If you see in the list a logical volume that corresponds to your snapshot, you can simply delete it with the following command : lvremove /dev/YOUR_PATH/YOUR_LV_NAME

Workaround for not visible Windows updates

If you are facing problem with available updates for Windows but not visible in the updates selection panel of the Windows Update window, here is a workaround : Simply launch the task manager and kill explorer.exe , then run it again with File menu > New Task (Run...) > explorer Your updates should now be visible. #1

Logitech Lcore.exe Microsoft Visual c++ Runtime Library Exception

If you suddenly get this error, simply check the file  settings.json in the hidden folder C:\Users\yourname]\AppData\Local\Logitech\Logitech Gaming Software\ . On my PC the file's size was 1GB ! I've simply deleted the file and the application went back to normal.

VirtualBox not allowing to delete a snapshot

Today I got an error while trying to delete a VirtualBox snapshot : "Failed to delete the snapshot XXXX of the virtual machine YYYY" (english) "Échec de la suppression de l'instantané XXXX de la machine virtuelle YYYY" (french) Hard disk 'XXXX.vdi' has more than one child hard disk (2). In the snapshot manager, there were only two snapshots linked to my virtual machine. I could delete the newest one, but I was not able to delete the oldest one/root snapshot. To resolve this issue, I went to the "File > Virtual Media Manager" menu, then the [Hard Disks] tab and I've expanded the tree under my virtual machine. I've deleted one snapshot that was not linked to any virtual machine, or snapshot. After what I was able to delete my oldest/root snapshot.

Bash script launched by cron on OpenBSD not working

In the pink world of Ubuntu from where I come, things are easy, and PATH variable is fully set in each context. But in the dark world of OpenBSD, things aren't always obvious ;) If you decide to write a bash script intended to be used as a cron task, DO NOT forget to fully qualify path of non standard commands : e.g. zip or smbclient should be written as /usr/local/bin/zip and /usr/local/bin/smbclient . Hope it could save time for others...

nmap not working after upgrading package with ipkg

Recently my 'nmap' failed to work after updating DSM to 3.2 or upgrading some packages from ipkg : "nmap: error while loading shared libraries: liblua.so: cannot open shared object file : No such file or directory" I fixed the issue by installing the 'lua' package: > ipkg install lua #1

Show errors in prestashop

From the installation directory of prestashop, edit the file config/config.inc.php and modify the following line : @ini_set('display_errors', 'on');

fix uptime and ls commands after coreutils install on synology DS211+ nas

After installing coreutils with ipkg , lots of system commands will be used from /opt/bin instead of /bin . Most are working fine but some should be reverted. For example uptime seems completly broken and ls doesn't use color anymore. I've fixed this issue with the following commands: ln -sf /bin/ls /opt/bin/ls ln -sf /usr/bin/uptime /opt/bin/uptime

TXT_DB error number 2 failed to update database

As I m completly unaware of the openssl use, I only write here some observations I made : If after the command : openssl ca -out cert.pem -infiles req.pem you got the following error message : failed to update database TXT_DB error number 2 This is probably because you have generated your own signing certificate with the same Common Name (CN) information that the CA certificate that you've generated before. Simply input a different Common Name each time you are asked should do the trick. Credit : 1