i want to detect nvault is open because i have one nvault file and 10 plugin that using same file. When a plugin closes the nvault file, other plugin gives error like "[nVault] Invalid vault id: 3".
I tried
PHP Code:
if(nvault_open("vault"))
nvault_close(guvVault);
and
PHP Code:
if ( guvVault != INVALID_HANDLE )
nvault_close(guvVault);
but didn't work, i need help.