How do I integrate WordPress blogs with my Grails application?
        Posted  
        
            by Amit Jain
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Amit Jain
        
        
        
        Published on 2009-09-04T04:28:28Z
        Indexed on 
            2010/05/26
            8:41 UTC
        
        
        Read the original article
        Hit count: 301
        
I had my static site with which WordPress blogs were integrated. Now I have made a Grails application with which I want to integrate those WordPress blogs.
I had put the WordPress folder copied from my previous site to the web-app folder of my Grails application. But I am not able to access the WordPress folder, as when I hit URL - http://localhost:8080/myApplicaiton/wordpress/, it shows this error:
Error 500: java.net.SocketTimeoutException: Read timed out
Also, in my urlMappings.groovy one of the mappings I need is
"/$generalPageURL"(controller:'myConroller', action:'myAction')
And if I put in the above mapping, all requests for WordPress goes to myAction of myController. Is there any way out to still reach the WordPress folder defined inside web-app folder with the above mapping?
© Stack Overflow or respective owner