I only extracted the install.php file, not the rest. So I replaced all of them this time and installed the mod again. Still nothing showing up... I'm about to give up on phpBB altogether since it gives me so many problems.Your MOD has been installed! Here you can view some of the results from the installation. Please note any errors, and seek support at phpBB.com
AutoMOD is sending a compressed file to your computer. Because of the AutoMOD configuration, files cannot be written to your site automatically. You will need to extract the file and upload the files to your server manually, using an FTP client or similar method. If you did not receive this file automatically, click here.
In mcp_post.php I commented out:andrewilley wrote:I'm going to try commenting out the DST adjustment line that others have had luck with. Let me know if I can help with any debugging info.
Code: Select all
$hour = $hour - ($user->timezone + $user->dst);
Code: Select all
$hour = 12
$user->timezone = 0
$user->dst = 3600
Code: Select all
$hour = $hour - (($user->timezone + $user->dst)/3600);