MyBB Community Forums

Full Version: Help please.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it a new domain? It says that the domain doesn't exist, at least the forums subdomain doesn't exist. If it's a new subdomain then I'll have to wait for the DNS to propogate Smile
Perhaps you should look at the following line -
Warning: gmdate(): Windows does not support dates prior to midnight (00:00:00), January 1, 1970 in D:\WWWsites\thebeatmegaclub.com.au\subdomains\forums\httpdocs\[b]member.php on line 1283[/b]
Why?
Quote:Warning: gmdate(): Windows does not support dates prior to midnight (00:00:00), January 1, 1970 in D:\WWWsites\thebeatmegaclub.com.au\subdomains\forums\httpdocs\member.php on line 1283
Do you have any modifications installed or have made any changes to member.php?

Anyhow, if you open up member.php and find this:

mktime(0, 0, 0, $membday[1], $membday[0], 0);

Replace it with:
mktime(0, 0, 0, $membday[1], $membday[0], gmdate("Y"));

Let me know if the error goes away then.

Quote:Warning: chdir(): No such file or directory (errno 2) in D:\WWWsites\thebeatmegaclub.com.au\subdomains\forums\httpdocs\admin\global.php on line 13
Can you open up admin/global.php and find:

chdir('../');

Replace it with:

chdir('..');

Let me know if it works then, and if so, i'll get these bugs fixed - if not, we'll go from there.

Chris