Replies: 1 comment 3 replies
-
You should be able to see the actual error in the browser's console. Once you have that, there are common issues explained here https://shlink.io/documentation/troubleshooting/ |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
shlink-web-client version
shlink-web-client_4.1.0_dist
How do you use shlink-web-client
Self-hosted
Summary
I have finally got the backend working but now want the webclient to work
I used the following
download shlinkio web client
sudo wget https://github.com/shlinkio/shlink-web-client/releases/download/v4.1.0/shlink-web-client_4.1.0_dist.zip
extract the zip archive
sudo unzip shlink-web-client_4.1.0_dist.zip
move the extracted files to the web root
sudo mv ./shlink-web-client*/* /var/www/html
sudo nano /etc/apache2/sites-available/shlinkio.conf
Added the shlinko.conf
Alias /shlinkio "/var/www/shlinkio/public/"
<Directory /var/www/shlinkio/public>
Options FollowSymlinks Includes ExecCGI
AllowOverride All
Require all granted
Order allow,deny
allow from all
enable the shlinkio site
sudo a2ensite shlinkio
restart apache2 service for the changes to take effect
sudo systemctl restart apache2
generate an API key
sudo -u www-data php /var/www/shlinkio/bin/cli api-key:generate
I then get
Oops! Could not connect to this Shlink server.
Make sure you have internet connection, and the server is properly configured and on-line.
Can i ask what I have done wrong here
thanks
Beta Was this translation helpful? Give feedback.
All reactions