What about the file edits when I don't use a prefix on the master , like
Quote:
Replace with where vb3_ is the prefix to your master site:
$this->db_insert('vb3_', 'usertextfield', $doquery);
|
Since I don't use prefixes for the master, would I change it to :
Code:
$this->db_insert('.', 'usertextfield', $doquery);
???
Also :
Quote:
Go to /include/class_dm_pm.php
Search for : var $table = 'pmtext';
change to : var $table = 'vb3_pmtext';
|
But once again, my master does not have a prefix ... would I have to change it to
Code:
change to : var $table = '._pmtext';