Hello again Friends.
I've been planning to try this Vairant News CMS/CMF for a while but had no time to deal with all the dependencies, nulling etc.
Having received another of my favourite "episodes" from Babiato, I found the latest link of the script ready to be tested. Finally, squeezed some time over a ping of beer and sat down to proceed.
Oh, what a surprise, when I uploaded the script to my local environment and I got a silly error about my purchase code error.
I started looking at it and realized that there is absolutely no need to nulling the version but ONLY TO CHANGE 1 CHARACTER in the installer for it to continue.
What I did to allow the installation was to head to the /install/ folder, find the index.php file responsible for the entire process, find the line 24:
Code:
if ($data->code == "error") {
and modify it to:
Code:
if (!$data->code == "error") {
For those of you who are not very much familiar (yet

) with PHP, what that line does is to check if $data->code returns an error and if yes, show the error message. Having added the "!" (exclamation mark sign) in the front actually reverses the logic so the script continues due to the fact that I did not add the correct license number. If I had the script purchased, it would actually have not worked correctly with my official license
I won't allow myself to re-upload modifications as I find it pointless, and I am sure I do not deserve the credits as other good people here do based on the fact that they've shared it for us.
Let's see how it goes from there, but at least I am at the next screen: