I am running limesurvey 200 121002 on XAMPP. When I try to open
your.domain.com/limesurvey/admin
the page is blank. I read the section about this in the
FAQs and have tried to manually update the code in config-defaults.php (the files named config.php as mentioned in the FAQ did not contain $rooturl or $rootdir).
The original file was
$config['rootdir'] = getcwd(); //dirname(__FILE__); //
I first took out the // changing it to
$config = getcwd(); dirname(__FILE__);
That didn't work, so I tried
$config = getcwd(); /home/admin/public_html/limesurvey;
Because "admin" is my limesurvey username. That didn't work. So I tried using my computer's ID and the path to the limesurvey
$config = getcwd(); /home/this_mac/xampp/htdocs/limesurvey;
But that's not working either. My XAMPP access log shows a 200 status with every request, so I think the problem must be somewhere in LS. My operating system is OSX, in case that helps.
Any help would be much appreciated--as you can probably guess, I'm a newbie. Thank you in advance.