Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mwiby's avatar
Level 2

Need help with deployment to server, Vue/Laravel/Voyager

Host : https://domainname.shop/faq?section=17 This provides my domain and hosting, I have activated MySQL and recived the user and password

My app uses: Vue,Voyager,Laravel How can I get this up and running? I can't see how this would work with only the use of FileZilla

The host is noting: Administration with phpMyAdmin (NOT recommended)

0 likes
1 reply
mohrad's avatar

i couldn't found any indication they allow use of composer, but you may need to fully deploy your assets for production locally, then upload the entire folder via ftp.

then if you have ssh access which is available from medium package and above, you will need to login to ssh via ssh client, ex. putty and run artisan commands to run migration.

and as i can see they use apache as web server so you gonna need to update the .htaccess with this

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/ [L]
</IfModule>

*note: there's $1 after public public/$1 but the markdown preview won't display it :D

this will redirect the requests to laravel public folder.

1 like

Please or to participate in this conversation.