In C++ "virtual" means that what is done will depend at runtime on the effective class of an object and will not depend only on the type of the variable.
A "virtual" constructor is something that doesn't really make sense because you don't have an object yet (you want to build one) so you have no class to depend on for the decision.
Sometimes with "virtual constructor" what is intended in C++ is a pattern in which you are able to build an object without knowing the exact class... for example:
class Document {
public:
static Document *create(...);
private:
Document(...);
};
...
// Just use Document::create instead of new Document
std::unique_ptr<Document> p = Document::create(...);
In this case the users of the class are not able to call the constructor (it's private), but they can only call a static method that is public and that will return a pointer to an instance. The construction itself will be handled by this function and the returned object will not be a necessarily a Document instance, but an instance of some class derived from Document that you don't know and that is not publicly exposed.
This allows for example to decide at runtime the exact class depending on the environment or on the parameters specified in the call to create.
This is called "virtual constructor" because the constructor being called will be decided at runtime. It's not however the same thing as a virtual method call in C++ because virtual dispatching in C++ depends only on the class of the instance (but as said before this makes no sense for a constructor because the object doesn't exist yet, so you cannot decide depending on its real class).