nginx: [alert] detected a LuaJIT version which is not OpenResty’s; many optimizations will be disabled and performance will be compromised (see https://github.com/openresty/luajit2 for OpenResty)

When you start your nginx you got the following error : nginx: [alert] detected a LuaJIT version which is not OpenResty's; many optimizations will be disabled and performance will be compromised (see https://github.com/openresty/luajit2 for OpenResty The message is quite explicit, your LUAJIT is not an OpenRestry, or it can be an old OpenResty one. Nginx Compilation Process When you compile your nginx...

août 19th, 2019 by Benoit Bonneville 

Adaptec arcconf « A selected device is not available for use »

Are you trying to create a RAID with arcconf with a command, like this one : arcconf CREATE 1 LOGICALDRIVE MAX 5 0 0 0 1 0 2 The Error If you try to create a new RAID Adaptec with arcconf cli tool, you should encounter the following error : Controllers found: 1 A selected device is not available for use. Command aborted. This error is a bit unclear, so we will try to give you some tips : This message...

mars 3rd, 2019 by Benoit Bonneville 

Cannot use NameSpace\ClassName as ClassName because the name is already in use

Your Error is : Cannot use NameSpace\ClassName as ClassName because the name is already in use Situation Your Code is composed of 3 classes : MyNamespace/Foo.php – Main Class that cause the problem namespace MyNamespace; use OtherNameSpace\ClassName; class Foo {} MyNamespace/ClassName.php – ClassName NOT used but in the same Directory/Namespace as Foo namespace MyNamespace; class ClassName{} OtherNameSpace/ClassName.php...

février 18th, 2019 by Benoit Bonneville