Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. lkdev
    3. Topics
    • Profile
    • Following 5
    • Followers 2
    • Topics 8
    • Posts 78
    • Best 16
    • Controversial 0
    • Groups 6

    Topics created by lkdev

    • lkdev

      Flutter folder permission error
      Flutter • fluuter android studio dir permissions • • lkdev

      5
      0
      Votes
      5
      Posts
      1650
      Views

      iamprogrammerlk

      unfortunately no. I don't have a MAC.

    • lkdev

      Serverless with JAMstack
      Programming • api jamstack javascript markup serverless • • lkdev

      1
      1
      Votes
      1
      Posts
      388
      Views

      No one has replied

    • lkdev

      How to install npm package from bitbucket private repository
      Programming • npm bitbucket git • • lkdev

      2
      0
      Votes
      2
      Posts
      346
      Views

      root

      Declare dependencies in your nodejs app package.json:

      "dependencies": { "modulename":"git+https://[email protected]/lanakdevelopers/modulename.git", "ejs": "1.0.0" }

      Then follow below steps

      Turn on git cache, keep password in the cache for a certain period of time git config --global credential.helper cache git config --global credential.helper 'cache --timeout=3600' Access your private repository once, type your bitbucket password when prompted git ls-remote https://[email protected]/lankadevelopers/modulename.git

      Now you can install packages using npm install

    • lkdev

      Great Emulator for Native / Hybrid Mobile App Developers
      Mobile Application Development • android ios scrcpy emulator • • lkdev

      3
      1
      Votes
      3
      Posts
      428
      Views

      imadusanka

      Thanks bro

    • lkdev

      How to add custom registration fields to Woocommerce checkout ?
      Back-End Development • woocommerce wordpress php • • lkdev

      3
      2
      Votes
      3
      Posts
      841
      Views

      lkdev

      @Pasindu_7

      how to add manual ?

    • lkdev

      How to secure my Woocommerce site in Nginx server ?
      Information Security • wordpress nginx php mysql security • • lkdev

      4
      1
      Votes
      4
      Posts
      1110
      Views

      lkdev

      Thnaks yo very much @root , this is awesome

    • lkdev

      Most Important Terminal Commands For Developers
      General Discussion • terminal commands linux mac windows • • lkdev

      4
      4
      Votes
      4
      Posts
      1183
      Views

      GeethOnion

      Awesome post😍❤️

    • lkdev

      Nginx: connect() failed (111: Connection refused) while connecting to upstream
      Linux • nginx php server ubuntu • • lkdev

      7
      0
      Votes
      7
      Posts
      6042
      Views

      crxssrazr93

      @lkdev said in Nginx: connect() failed (111: Connection refused) while connecting to upstream:

      @crxssrazr93 said in Nginx: connect() failed (111: Connection refused) while connecting to upstream:

      @lkdev

      Make sure php-fpm is already running on the background...

      Then, change your listen 80; to listen 127.0.0.1; .

      @ciaompe said in Nginx: connect() failed (111: Connection refused) while connecting to upstream:

      Simply, open the following path to your php5-fpm (if you php 7 then open php 7 fpm)

      Php 5

      sudo nano /etc/php5/fpm/pool.d/www.conf

      Php 7

      sudo nano /etc/php/7.2/fpm/pool.d/www.conf

      Then find this line and uncomment it:

      listen.allowed_clients = 127.0.0.1

      Also comment below line

      Php 5

      ;listen = /var/run/php5-fpm.sock

      Php 7

      ;listen = /run/php/php7.2-fpm.sock

      and add

      listen = 9000 after you make the modifications, all you need to restart or reload both Nginx and Php fpm

      Php 5

      sudo service php5-fpm restart

      Php 7

      sudo service php7.2-fpm restart

      Nginx

      sudo service nginx restart

      Guys this works. thanks aganin and lankadevelopers thank you very much

      Anytime mate xD

    • 1 / 1