I have a locally installed instance of WebPagetest. I installed it on a Windows 7 32-bit machine. Here is how installed the WebPagetest 2.14 software:
- Downloaded the zip file for WebPageTest and unzipped it to create the following directories:
a. agent
b. mobile
c. www
- Installed Xamp on my PC and configured apache directory to point to :
C:\wpt-www\
- Put all the contents of directory ‘www’ from step 1 above into the directory, 'C:\wpt-www'.
- Created another directory 'C:\wpt-agent' and put the contents of directory ‘agent’ from step 1 into it.
- Installed various packages as per instructions and configured site for test locations and browsers.
However when I run apache and then point my browser to localhost, I don’t get the Test Locations or Browser selections (appear blank). I know that my configuration is not correct. I have attached a partial screenshot of what I see as output when I point my browser to ‘localhost/install’. I have put in a “print_r” instruction in file index.php to give the output of the $locations array on stdout.
I will appreciate any help in configuring my private instance. I have copied the contents of two files below:
locations.ini:
[locations]
1=Local
default=Local
;
; These are the top-level locations that are listed in the location dropdown
; Each one points to one or more browser configurations
;
[Local]
1=Local-URLBlast
2=Local-WPTDriver
label=“Local”
;
; These are the browser-specific configurations that match the configurations
; defined in the top-level locations. Each one of these MUST match the location
; name configured on the test agent (urlblast.ini or wptdriver.ini)
;
[Local-URLBlast]
browser=IE 10
latency=0
label=“Local - IE 10”
;browserExe=pagetest.exe
;key=TestKey123
;
; For a wptdriver configuration (chrome, firefox), the browser labels here
; MUST match the labels used in wptdriver.ini
;
[Local-WPTDriver]
browser=Chrome,Firefox
label=“Local”
wptdriver.ini:
[WebPagetest]
url=http://wpt-www/
location=Local-WPTDriver
browser=chrome
;key=TestKey123
;Automatically install and update support software (Flash, Silverlight, etc)
software=http://wpt-www/installers/software.dat
[chrome]
exe=“C:\Program Files\Google\Chrome\Application\chrome.exe”
options=‘–load-extension=“%WPTDIR%\extension” --user-data-dir=“%PROFILE%” --no-proxy-server’
installer=http://wpt-www/installers/browsers/chrome.dat
[Firefox]
exe=“C:\Program Files\Mozilla Firefox\firefox.exe”
options=‘-profile “%PROFILE%” -no-remote’
installer=http://wpt-www/installers/browsers/firefox.dat
template=firefox
[Safari]
exe=“C:\Program Files\Safari\Safari.exe”
[IE]
exe=“C:\Program Files\Internet Explorer\iexplore.exe”
urlBlast.ini:
[hr]
urlBlast.ini:http://www.webpagetest.org/forums/images/smilies/smile.gif
[Configuration]
Startup Delay=30
Log File=c:\wpt-agent\agent\urlblast
Timeout=120
use current account=1
; Where to get work from
Url Files Url=http://wpt-www/work/
Location=Local-URLBlast
;Location Key=TestKey123