diff --git a/html/build.sh b/html/build.sh
index 85030dd..425a5d2 100755
--- a/html/build.sh
+++ b/html/build.sh
@@ -14,7 +14,7 @@ cp -r the-abstraction-engine/dist ../dist/public_html/the-abstraction-engine
mkdir -p ../dist/fruitvote
cd fruitvote
go build -o ../../dist/fruitvote/fruitvote
-cp start.sh ../dist/fruitvote/start.sh
+cp start.sh ../../dist/fruitvote/start.sh
cd ..
echo "finished building HTML"
diff --git a/html/public/fruitvote/GoPage.php b/html/public/fruitvote/GoPage.php
index c3a7d34..b6e205a 100644
--- a/html/public/fruitvote/GoPage.php
+++ b/html/public/fruitvote/GoPage.php
@@ -4,7 +4,7 @@ class GoPage {
private $socket;
private $template;
- public function __construct($page, $socket = "/home/lizzy/fruitvote/http.sock", $start_cmd="/home/simponic/fruitvote/start.sh", $template="../template.html") {
+ public function __construct($page, $socket = "/home/simponic/fruitvote/http.sock", $start_cmd="/home/simponic/fruitvote/start.sh", $template = "../template.html") {
$this->page = $page;
$this->socket = $socket;
$this->template = $template;