Quote:
Originally Posted by oberheimhaven
Warning: dir(images/verification/) [function.dir]: failed to open dir: No such file or directory in /register.php(202) : eval()'d code on line 6
Fatal error: Call to a member function on a non-object in /home/.hiam/niceman/musiciansquarters.com/forums/register.php(202) : eval()'d code on line 7
ANY SUGGESTIONS
|
This should solve it - your forums directory is in a subdirectory from the domain (which mine isn't) - if you go to the AdminCP -> Plugins & Products -> Plugin Manager -> Extra user verification and click Edit.
In there you will see this code:
Code:
$d = dir('images/verification/');
This is from the forum root - so you will need to add your /forums directory, so it should look like this:
Code:
$d = dir('forums/images/verification/');
That should hopefully solve the issue - this is a general rule - if your forum is in a subdirectory, this would need to be changed.
Let me know if this works.
Jason