Page 1 of 1

[SOLVED/FIXED] ACP Bug IntegraMOD News Bug

PostPosted: Sat Apr 29, 2006 11:36 am
Author: Bush
When going into the ACP, the main index page on the right side which shows version information..

Well the integramod section is broken

Code: Select all
198 Not FoundThe requested URL /home/updateNews/news.txt was not found on this server.  Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.    --------------------------------------------------------------------------------  Apache/1.3.34 Server at [url=http]http://www.integramod.com[/url] Port 800


Where can we fix this to use IM2.com?

Re: ACP Bug

PostPosted: Sat Apr 29, 2006 1:56 pm
Author: Helter
The fix is done. It will be posted soon <img>

PostPosted: Sat Apr 29, 2006 3:34 pm
Author: Bush
Thanks Helter ^_^

Re: ACP Bug

PostPosted: Sat Apr 29, 2006 4:03 pm
Author: Bush
Here is a working fix:

OPEN root/admin/index.php

FIND
Code: Select all
    if ($fsock = @fsockopen('www.integramod.com', 80, $errno, $errstr))     {         @fputs($fsock, "GET /home/updateNews/news.txt HTTP/1.1rn");         @fputs($fsock, "HOST]http://www.integramod.com[/url]rn");


REPLACE WITH..

Code: Select all
      if ($fsock = @fsockopen('www.integrmod.com', 80, $errno, $errstr))     {         @fputs($fsock, "GET /forum/updateNews/news.txt HTTP/1.1rn");         @fputs($fsock, "HOST]http://www.integrmod.com[/url]rn");


Sorry if this isn't the official post <img>