![]() |
Link to showslow result not correct - Printable Version +- WebPagetest Forums (https://www.webpagetest.org/forums) +-- Forum: WebPagetest (/forumdisplay.php?fid=7) +--- Forum: Bugs/Issues (/forumdisplay.php?fid=10) +--- Thread: Link to showslow result not correct (/showthread.php?tid=1225) |
Link to showslow result not correct - mverkerk - 08-01-2011 08:24 AM On the webpagetest test result screen, there is a link called "See in ShowSlow" which points to: http://hostname/showslow/beacon/yslow/details/?url=http%3A%2F%2Fwhatever.com%2F#webpagetest this URL should not point to "../showslow/beacon/yslow/details/?..." but to "../showslow/details?..." (also notice removal of the forward slash in front of the question mark) To correct this, add a parameter to settings.ini (I called it "showslowbase") and put in the path to the showslow base location. For example: ;showslow beacon showslow=http://g1lwltreport.dc1.corp.gd:8080/showslow/beacon/yslow ;showslow base showslowbase=http://g1lwltreport.dc1.corp.gd:8080/showslow Then, in result.inc, change line 102: from: echo '<br><a href="'.$settings['showslow'].'/details/?url='.urlencode(FixUrlSlash($url)).'#webpagetest' . '">See in ShowSlow</a>'; to: echo '<br><a href="'.$settings['showslowbase'].'/details?url='.urlencode(FixUrlSlash($url)).'#webpagetest' . '">See in ShowSlow</a>'; RE: Link to showslow result not correct - pmeenan - 08-02-2011 09:51 AM Sorry, moved because WPT Monitor is actually a different project. You may need an updated show slow install. You don't point it to the yslow beacon - the latest versions of show slow have native support for a custom beacon from WebPagetest. You should just use the show slow base for the show slow definition and the relative url's will be figured out automatically. Thanks, -Pat RE: Link to showslow result not correct - mverkerk - 08-04-2011 07:17 AM Hey Pat, Let me thanks you first of all for all your great work! I love WPT, especially in combination with ShowSlow! I guess it was just confusion on my part then. I must have gotten used to pointing things at the yslow beacon such that anytime i see the word beacon, i point it at yslow ... ;-) however ... after i changed settings.ini to point at showslow base, i started getting 500 errors in response to the POST to the webpagetest beacon. This looks a lot like the issue described here: http://groups.google.com/group/showslow/browse_thread/thread/89664684eaa2b89f) ... if you have any insight into this issue, let me know ... i will post this to the showslow group too. RE: Link to showslow result not correct - pmeenan - 08-04-2011 10:42 AM Just as a sanity check, are you running a 1.1+ build of show slow? Earlier builds didn't have support for it. RE: Link to showslow result not correct - mverkerk - 08-04-2011 10:52 AM yep, 1.1.2 to be exact ... (08-04-2011 10:42 AM)pmeenan Wrote: Just as a sanity check, are you running a 1.1+ build of show slow? Earlier builds didn't have support for it. |