[IPB 3.1.4] Sitemap + Capcha

Status
Not open for further replies.

AJ Blacklisted

Active Member
1,211
2011
140
10
Hello Guys...
I am facing some problems with my IP board.
http://devilarts.info/
v: 3.1.4
<Recently changed forum path from devilarts.info/warez to devilarts.info>

Problems List ....
1.Sitemap generation Failing.

[SLIDE]http://i.imgur.com/mxa9p.png[/SLIDE]

When i tried that Fix link it takes to me system sheduler

[SLIDE]http://i.imgur.com/fyv4a.png[/SLIDE]

I unlocked the task "Sitemap generator" and run it there. it shows me as "task run successfully" but again in IP SEO same error


[SLIDE]http://i.imgur.com/mxa9p.png[/SLIDE]

here is my sitemap url : http://devilarts.info/sitemap.xml

2. Site not cached by Google

my site is not cached by google, i dont know more about it; when u search "devilarts.info" in google, u can find that. may be its due to ^above^ sitemap problem

3. reCapcha
Need a capcha mod, which must be filled befor posting a thread..

thank you.
AJ/...
 
14 comments
Unlock the task & dont run it manually.
Let us know whats the outcome after that.

About google thing, it will eventually show up, you cant do nothing about that.

And I dont think there is any reCaptcha mode like that, good luck finding one. :P
 
Woooohhhh
SALZU.png
 
The Sitemap is automatically generating now. But the problem is the location of diff xml files in http://devilarts.info/sitemap.xml

The location showned(generated in every min) are
1.http://devilarts.info/index.php?app=ipseo&module=sitemap&sitemap=sitemap_topics.xml.gz
2.http://devilarts.info/index.php?app=ipseo&module=sitemap&sitemap=sitemap_forums.xml.gz
3.http://devilarts.info/index.php?app=ipseo&module=sitemap&sitemap=sitemap_core.xml.gz

But the above locations are not available..
I recently found the above 3 xml in cahe folder. I downloaded and submitted the url to google webmaster, they accepted it,
Whats the problem :(
 
I think your forum source not work with "DOC_IPS_ROOT_PATH"

Try to open /admin/applications_addon/ips/ipseo/modules_public/sitemap/sitemap.php (backup this file)

Replace all with this code:

Code:
<?php

class public_ipseo_sitemap_sitemap extends ipsCommand
{
    public function doExecute( ipsRegistry $registry )
    {
        // Requesting a sitemap?
        if(!array_key_exists('sitemap', $this->request))
        {
            $this->registry->output->showError( 'error_generic', 10850, null, null, 404 );
            return false;
        }
        
        // Got a valid name?
        if(!preg_match('/sitemap\_([a-zA-Z0-9\_]+)\.xml(\.gz)?/', $this->request['sitemap']))
        {
            $this->registry->output->showError( 'error_generic', 10850, null, null, 404 );
            return false;
        }
        
        header('Content-Type: ' . (strpos($this->request['sitemap'], '.gz') ? 'application/x-gzip' : 'application/xml'));
        header('Content-Disposition: attachment; filename=' . $this->request['sitemap']);
        
        print file_get_contents('./cache/' . $this->request['sitemap']);
    }
}
 
Please send me your old sitemap.php file in (/home/devilarts/domains/devilarts.info/public_html/admin/applications_addon/ips/ipseo/modules_public/sitemap/)

I will change it and resend for you :)
 
Status
Not open for further replies.
Back
Top