Trying to get tastyigniter installed and I am running into issues. Following the standalone install setup guide, I figured out the the default hostname and port for the database wasnt automatic (you have to manually say localhost and port 3306).
Got that working, and also figured out that the example apache2 config is incomplete. I ended up needing to use:
<VirtualHost *:80>
ServerAdmin email@email.com
DocumentRoot /var/www/order.example/tastyigniter/public
ServerName order.example.com
ServerAlias order.example.com
<Directory /var/www/order.example/tastyigniter/public>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/order.example/tastyigniter/public>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php [PT,L]
</Directory>
RewriteCond %{SERVER_NAME} =order.example.com
</VirtualHost>
Note that I had to add /public to everything… none of the guides online seemed to indicate that would be needed, but without it you need to do order.example.com/public/admin - which didn’t seem right.
Now I have the /admin page open and it is giving me the proper setup guide, but no matter how quick I am it always says “Session expired, please refresh the page and try again”
I even tried just hitting next right after loading the page, and no luck, it still says the session expired.