xenophobia Posted October 9, 2007 Share Posted October 9, 2007 Take a look at this page: http://www.yellowpages.com.my/search_white.jsp?op=white When i trying something like this: $url = "http://www.yellowpages.com.my/search_white.jsp?op=white"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($ch); curl_close($ch); echo $data; I get this: Error 500--Internal Server Error java.lang.NullPointerException at jsp_servlet.__search_cat.isMobile(__search_cat.java:494) at jsp_servlet.__search_cat._jspService(__search_cat.java:921) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:219) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1834) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207) at weblogic.work.ExecuteThread.run(ExecuteThread.java:179) Any idea? Cookie? Errr.. Or something else. Help will be much appreciated! Link to comment https://forums.phpfreaks.com/topic/72417-solved-curl-help-with-this-page/ Share on other sites More sharing options...
btherl Posted October 9, 2007 Share Posted October 9, 2007 Try adding this: curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla'); Link to comment https://forums.phpfreaks.com/topic/72417-solved-curl-help-with-this-page/#findComment-365215 Share on other sites More sharing options...
xenophobia Posted October 9, 2007 Author Share Posted October 9, 2007 Wow ur great!!!! Thanks a lot! Link to comment https://forums.phpfreaks.com/topic/72417-solved-curl-help-with-this-page/#findComment-365333 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.