Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

web-hosting

Uploading Laravel Project onto Web Server

March 11, 2023 by Tarik

No, but you have a couple of options: The easiest is to upload all the files you have into that directory you’re in (i.e. the cPanel user home directory), and put the contents of public into public_html. That way your directory structure will be something like this (slightly messy but it works): / .composer/ .cpanel/ … Read more

Categories laravel Tags laravel, upload, web-hosting, webserver Leave a comment

Heroku: web dyno vs. worker dyno? How many/what ratio do I need?

January 30, 2023 by Tarik

Your best indication if you need more dynos (aka processes on Cedar) is your heroku logs. Make sure you upgrade to expanded logging (it’s free) so that you can tail your log. You are looking for the heroku.router entries and the value you are most interested is the queue value – if this is constantly … Read more

Categories heroku Tags heroku, web-hosting Leave a comment

Viewing my IIS hosted site on other machines on my network

January 1, 2023 by Tarik

As others said your Firewall needs to be configured to accept incoming calls on TCP Port 80. in win 7+ (easy wizardry way) go to windows firewall with advance security Inbound Rules -> Action -> New Rule select Predefined radio button and then select the last item – World Wide Web Services(HTTP) click next and … Read more

Categories networking Tags firewall, iis-7.5, networking, web-hosting Leave a comment

Hosting and setting up own shiny apps without shiny server

December 26, 2022 by Tarik

If your PC and your coworkers PCs belong to the same LAN, this is pretty easy to achieve. Just run your app through: runApp(host = “0.0.0.0”, port = 5050) The value set through the host argument says to accept any connection (not just from localhost). The port argument can assume any value that you want … Read more

Categories r Tags r, shiny, shiny-server, web-hosting Leave a comment

How to host a Node.Js application in shared hosting [closed]

December 19, 2022 by Tarik

You can run node.js server on a typical shared hosting with Linux, Apache and PHP (LAMP). I have successfully installed it, even with NPM, Express and Grunt working fine. Follow the steps: 1) Create a new PHP file on the server with the following code and run it: <?php //Download and extract the latest node … Read more

Categories node.js Tags node.js, web-hosting Leave a comment

Unable to negotiate with XX.XXX.XX.XX: no matching host key type found. Their offer: ssh-dss

December 4, 2022 by Tarik

The recent openssh version deprecated DSA keys by default. You should suggest to your GIT provider to add some reasonable host key. Relying only on DSA is not a good idea. As a workaround, you need to tell your ssh client that you want to accept DSA host keys, as described in the official documentation … Read more

Categories ssh Tags ssh, web-hosting Leave a comment
Newer posts
← Previous Page1 Page2

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa