Warning: opendir(/home/bdoldco1/itsupport.com.bd/wp-content/mu-plugins): Failed to open directory: Permission denied in /home/bdoldco1/itsupport.com.bd/wp-includes/load.php on line 981
Arif – Followers Answers – Page 2 – IT Support BD

Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Facebook
Continue with Google
or use

Browse


Have an account? Sign In Now

Sign In

Login to our ITSupportBD questions & Answers Engine to ask questions answer people’s questions & connect with other IT people.

Sign Up Here
Continue with Facebook
Continue with Google
or use


Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.


Have an account? Sign In Now

You must login to ask a question.

Continue with Facebook
Continue with Google
or use


Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Continue with Facebook
Continue with Google
or use


Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

IT Support BD Logo IT Support BD Logo
Sign InSign Up

IT Support BD

IT Support BD Navigation

  • Home
  • Blog
  • Download
  • Support Hour Booking
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Terms and Conditions
  • Privacy Policy
  • Cookie Policy

Arif

IT Moderator
Ask Arif
724 Visits
4 Followers
35 Questions
Home/ Arif/Followers Answers
  • About
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked Questions
  • Followed
  • Favorites
  • Groups
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked Questions
  • Followed
  • Favorites
  • Groups
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  1. Asked: February 14, 2023In: Web & Host

    Which is the first website of Bangladesh?

    Support
    Support IT Senior Coordinator
    Added an answer on February 14, 2023 at 10:17 pm

    The first website of Bangladesh is the website of the Bangladesh Computer Council (bcc.org.bd), which was launched in 1996.

    The first website of Bangladesh is the website of the Bangladesh Computer Council (bcc.org.bd), which was launched in 1996.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: January 3, 2022In: Server

    How to Create Own Personal Cloud Storage?

    Support
    Best Answer
    Support IT Senior Coordinator
    Added an answer on January 3, 2022 at 10:41 pm
    Permanently Activate windows and Microsoft office

    Create your own cloud server for Free. In this video, I want to show you, How to Create Your Own Personal Cloud Storage like Google Drive or Onedrive. I will show you How to create your Cloud server for free. You can easily create your Cloud Storage Server Free. This Cloud server creation is easy. JRead more

    Create your own cloud server for Free.

    In this video, I want to show you, How to Create Your Own Personal Cloud Storage like Google Drive or Onedrive.

    I will show you How to create your Cloud server for free.

    You can easily create your Cloud Storage Server Free.

    This Cloud server creation is easy. Just follow a few simple three steps.

    Step 1: Install operating system

    Ubuntu 22.04, Ubuntu 20.04, or Ubuntu 18.04 and Update your System.

     

    Step 2: Install some Extensions and create a database.

    you will need to install the Apache webserver, PHP, Maria D B, and other required PHP extensions in your server. Create a database and user for Next Cloud.

    Step 3: You can download it from Next cloud’s official website.

    Before we start, There I am using the Azure portal to install the Ubuntu 22.04 operating system. You can use physical machines if you want or use your Old PC as a cloud Server.

     

     

    First, you’ll need to connect to your server as a root user, either directly from the console or remotely using SSH.

    Step 1. Server Update.

    First, You will need to log in to your Ubuntu server as the root user and Update your System with the following command:

    apt-get upgrade -y
    apt-get update -y

    Step 2. Install Apache and PHP.

     

    Install Apache and PHP with the following command:

    apt-get install php7.4 libapache2-mod-php7.4 php7.4-xml php7.4-cli php7.4-cgi php7.4-mysql php7.4-mbstring php7.4-gd php7.4-curl php7.4-zip php-imagick php7.4-json php7.4-intl -y

    Step 3. Install the MariaDB server
    NextCloud can use MySQL, MariaDB, Postgre SQL, or SQ Lite database to store its data. In this guide, we will use the MariaDB database server.

    You need to install the MariaDB server and other packages with the following command:

    apt-get install mariadb-server mariadb-client unzip wget -y

    Run the MariaDB installation the following command:

    mysql_secure_installation

    Below are all Answer to the questions and set the MariaDB root password for installation:

    Enter current password for root (enter for none):
     Set root password? [Y/n] Y
     New password:
     Re-enter new password:
     Remove anonymous users? [Y/n] Y
     Disallow root login remotely? [Y/n] Y
     Remove test database and access to it? [Y/n] Y
     Reload privilege tables now? [Y/n] Y

    Step 5. Log in to the MariaDB and create a database.

    Log in to the MariaDB with the following command:

    mysql -u root -p

    Create a database and user for NextCloud with the following command:

    MariaDB [(none)]> CREATE DATABASE nextcloud;

    Create a database user and assign the required privileges as provided in the following command:

     

    MariaDB [(none)]> GRANT ALL PRIVILEGES ON nextcloud.* TO ‘nextcloud’@’localhost’ IDENTIFIED BY ‘your-password’;

    Exit from the MariaDB console with the following command:

    MariaDB [(none)]> FLUSH PRIVILEGES;
    MariaDB [(none)]> EXIT;

    Step 6. Download and install the Nextcloud.

    Download Nextcloud with the following command:

    wget https://download.nextcloud.com/server/releases/nextcloud-23.0. 0.zip

    Unzip the downloaded nextcloud file to the Apache root directory:

    unzip nextcloud-23.0.0.zip -d /var/www/html/

    Ownership change of the nextcloud directory to www-data:

    chown -R www-data:www-data /var/www/html/nextcloud

    Step 6. Nextcloud Configuration.

    Configure Apache for Nextcloud conf file with the following command:

    nano /etc/apache2/sites-available/nextcloud.conf

    Now add the lines shown below. For the ServerName attribute, provide the of your server or IP address if you don’t have a domain name pointing to your IP Address.

    <VirtualHost *:80>
    DocumentRoot "/var/www/html/nextcloud"
    ServerName cloud.bdold.com
    ErrorLog ${APACHE_LOG_DIR}/nextcloud.error
    CustomLog ${APACHE_LOG_DIR}/nextcloud.access combined
    <Directory /var/www/html/nextcloud/>
    Require all granted
    Options FollowSymlinks MultiViews
    AllowOverride All
    <IfModule mod_dav.c>
    Dav off
    </IfModule>
    SetEnv HOME /var/www/html/nextcloud
    SetEnv HTTP_HOME /var/www/html/nextcloud
    Satisfy Any
    </Directory>
    </VirtualHost>

    Run and enable the configuration Apache host file with the following command:

     

    a2ensite nextcloud.conf

     

    Enable Apache modules with the following command:

    a2enmod rewrite headers env dir mime setenvif ssl

    Reload the Apache for the changes to take effect.

    systemctl restart apache2

    The domain point to the next cloud server:

    Domain Login in your C Panel or domain Manager.

    Find domain DNS Zone Manager or Domains section on your C Panel home page and click Zone editor. Add my next cloud server IP in the A record and save this A record.

    Now the domain point to the next cloud server.

    Open your web browser and browse your IP or Domain.

    http://Server IP/ Or http://your domain.com/

    You will be required to provide your login and database details as demonstrated in the field.

    You can now upload your files and collaborate with your team members on NextCloud.

    Also, you can use this server in your mobile and computer-like OneDrive, Dropbox, or Google Drive.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: December 20, 2021In: Computer

    সিস্টেম রিপেয়ার ডিস্ক কি এবং এর কাজ কি?

    Support
    Best Answer
    Support IT Senior Coordinator
    Added an answer on December 20, 2021 at 12:21 am
    This answer was edited.

    আমাদের সমাধান: উইন্ডোজের যেকোনো সমস্যায় পড়লে আপনার অবশ্যই প্রয়োজন হবে সিস্টেম সেটআপ ডিস্ক। কিন্তু ধরুন আপনার কাছে উইন্ডোজ-এর সিডি/ডিভিডি নেই, কম্পিউটারও চালু হচ্ছে না সময় বুঝে। কি করবেন তখন আপনি? এমন পরিস্থিতিতে আপনাকে সাহায্য করতে পারে সিস্টেম রিপেয়ার ডিস্ক। এর মাধ্যমে আপনার উইন্ডোজ চালু না হলে সেটRead more

    আমাদের সমাধান: উইন্ডোজের যেকোনো সমস্যায় পড়লে আপনার অবশ্যই প্রয়োজন হবে সিস্টেম সেটআপ ডিস্ক। কিন্তু ধরুন আপনার কাছে উইন্ডোজ-এর সিডি/ডিভিডি নেই, কম্পিউটারও চালু হচ্ছে না সময় বুঝে। কি করবেন তখন আপনি? এমন পরিস্থিতিতে আপনাকে সাহায্য করতে পারে সিস্টেম রিপেয়ার ডিস্ক। এর মাধ্যমে আপনার উইন্ডোজ চালু না হলে সেটিকে আপনি ঠিক করতে পারবেন।
    স্টার্ট মেনুতে system repair disc লিখে এন্টার দিন। ক্রিয়েট এ সিস্টেম রিপেয়ার ডিস্ক ওপেন হবে।
    আপনার সিডি/ডিভিডি রাইটারে ব্ল্যাংক ডিস্ক ঢুকিয়ে ক্রিয়েট ডিস্কে ক্লিক করুন।
    এই ডিস্ক মাত্র ১৪২ মেগাবাইট জায়গা নিবে,তাই চাইলে সিডিতেও রাইট করে নিতে পারেন আপনি।
    এবারে সিস্টেমের যেকোনো সমস্যায় কম্পিউটার বুট না হলে এই ডিস্ক থেকে বুট করান।
    পরের মেনু থেকে আপনার অপারেটিং সিস্টেম সিলেক্ট করে নেক্সটে যান।
    এরপরেই আপনি রিকভারির অপশনগুলা দেখতে পাবেন। এবারে প্রয়োজনীয় অপশন ব্যবহার করে উইন্ডোজ রিপেয়ার করলে আশা করি আবারো আপনার কম্পিউটার চালু হবে।যদি কোনো কারণে পরবর্তী সময়ে ওএস বুটিংয়ে সমস্যা হয় তাহলে তা সমাধানের লক্ষ্যে Start>Maintenance>Create a System Repair Disc-এ ক্লিক করুন এবং উইন্ডোজকে একটি বুটেবল ইমারজেন্সি ডিস্ক তৈরি করার সুযোগ দিন। যদি আপনার অপারেটিং সিস্টেমে এ ধরনের খারাপ কিছু ঘটে থাকে তাহলে পিসিকে সচল করার এটিই একমাত্র উপায় হতে পারে।

    See less
      • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: December 20, 2021In: Web & Host

    ট্রি বা হায়ারারকিক্যাল স্ট্রাকচার কী?

    Support
    Support IT Senior Coordinator
    Added an answer on December 20, 2021 at 12:15 am

    যখন কোন ওয়েবসাইটের কাঠামোতে সমস্ত ডকুমেন্টের পূর্নাঙ্গ চিত্র সংক্ষিপ্ত আকারে থাকে সেই স্ট্রাকচার বা কাঠামোকে ট্রি বা হায়ারারকিক্যাল স্ট্রাকচার বলে।

    যখন কোন ওয়েবসাইটের কাঠামোতে সমস্ত ডকুমেন্টের পূর্নাঙ্গ চিত্র সংক্ষিপ্ত আকারে থাকে সেই স্ট্রাকচার বা কাঠামোকে ট্রি বা হায়ারারকিক্যাল স্ট্রাকচার বলে।

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: December 5, 2021In: Server

    নেটওয়ার্ক সংযুক্ত স্টোরেজ (NAS) কি?

    Support
    Best Answer
    Support IT Senior Coordinator
    Added an answer on December 5, 2021 at 10:25 pm
    This answer was edited.

    NAS এর পরিপূর্ণ নাম হচ্ছে নেটওয়ার্ক অ্যাট্যাচড স্টোরেজ (Network Attached Storage)। আজকের দিনে আমাদের অত্যন্ত বেশি কম্পিউটার ডাটা অ্যাক্সেস করার প্রয়োজন পড়ে এবং সেগুলোকে বিভিন্ন ডিভাইজ থেকে অ্যাক্সেস করা দরকারি হয়। যেমন ধরুন আপনার মোবাইল ফোনে থাকে ফটোস, কম্পিউটারে থাকে প্রয়োজনীয় ফাইল বা মুভি, আপনার আRead more

    NAS এর পরিপূর্ণ নাম হচ্ছে নেটওয়ার্ক অ্যাট্যাচড স্টোরেজ (Network Attached Storage)।

    আজকের দিনে আমাদের অত্যন্ত বেশি কম্পিউটার ডাটা অ্যাক্সেস করার প্রয়োজন পড়ে এবং সেগুলোকে বিভিন্ন ডিভাইজ থেকে অ্যাক্সেস করা দরকারি হয়। যেমন ধরুন আপনার মোবাইল ফোনে থাকে ফটোস, কম্পিউটারে থাকে প্রয়োজনীয় ফাইল বা মুভি, আপনার আইপডে থাকে মিউজিক ফাইল, বা আপনার অফিসের কম্পিউটারে থাকে কাজের ফাইল। এখন এই সকল ডাটা গুলোকে একত্রে বিভিন্ন সময়ে বিভিন্ন ডিভাইজ থেকে অ্যাক্সেস করার প্রয়োজন পড়তে পারে আর এই কাজের জন্য সর্বউত্তম উপায় হচ্ছে একটি নেটওয়ার্ক অ্যাট্যাচড স্টোরেজ সার্ভার তৈরি করা।‌ সাধারনত ন্যাস কম্পিউটার সিস্টেমে একসাথে একটি বা একাধিক ড্রাইভ লাগানো থাকতে পারে এবং সার্ভারটিকে কাজ করানোর জন্য অপারেটিং সিস্টেমের প্রয়োজন পড়ে সাথে সার্ভারটিকে ইন্টারনেট থেকে অ্যাক্সেস করার জন্য ইথারনেট ক্যাবল লাগানো থাকে। এখন আপনি একটি ন্যাস কম্পিউটার সিস্টেমে সাধারন ডেক্সটপ ড্রাইভ ব্যবহার করতে পারবেন না, কারণ এটি আপনাকে এতো ব্যান্ডউইথ এবং সাথে কম্পন থেকে নিরাপত্তা প্রদান করতে পারবে না।

    ন্যাস ড্রাইভ মূলত তাদের জন্য যারা ন্যাস সার্ভার তৈরি করতে চান কিন্তু ব্যান্ডউইথ বেশি ব্যবহৃত করার জন্য ডেক্সটপ ড্রাইভ দিয়ে কাজ হচ্ছে না এবং বেশি টাকা খরচ করতে না পাড়ায় এন্টারপ্রাইজ ড্রাইভ কিনতে পারছেন না। তবে কিছু ব্যাপার আপনার মাথায় রাখা উচিৎ—ন্যাস ড্রাইভ কিন্তু সাধারন হার্ডড্রাইভ থেকে খুব একটা বেশি উন্নত হয়না। প্রস্তুতকারী কোম্পানিগন সাধারন ডেক্সটপ হার্ডড্রাইভে সামান্য কিছু উন্নতিকরণ করে অনেকটা মার্কেটিং টার্ম ব্যবহার করে এর নাম রেখে দেন ন্যাস ড্রাইভ। তবে সবসময় আবার এমনটা নয়, যেমন ন্যাস ড্রাইভ গুলোকে বিশেষভাবে কম্পন সুরক্ষা দিতে ডিজাইন করা হয়। তবে ন্যাস ড্রাইভ এই নাম দেখেই কিনতে ঝাঁপিয়ে পড়া উচিৎ হবে না, পাশাপাশি আপনাকে স্পেসিফিকেশনের দিকে লক্ষ্য রাখতে হবে।
    যেমন আগেই বলেছি আপনার ন্যাস ড্রাইভে অবশ্যই কম্পন থেকে ক্ষতি প্রতিরধক ব্যবস্থা থাকতে হবে। তাছাড়া ন্যাস ড্রাইভ এরর রিকভার করতে ডেক্সটপ ড্রাইভের তুলনায় অনেক কম সময় ব্যয় করে। কারণ সার্ভার পরিবেশে একত্রে অনেক গুলো ড্রাইভ লাগানো থাকে এবং সবসময়ই সকল ডাটার ব্যাকআপ থাকে তাই কোন ড্রাইভে ডাটা এরর ঘটলে সেটি ব্যাকআপ থেকে রিকভার করার জন্য সুযোগ পেয়ে যায়।

    আপনার ড্রাইভটি যদি এরর ফিক্স করতে অনেক সময় লাগিয়ে দেয় তবে কম্পিউটারের ড্রাইভ ম্যানেজমেন্ট সিস্টেম মনে করে আপনার ড্রাইভটি মৃত হয়ে গেছে ফলে এটি সকল ডাটা রিবিল্ড করার চেষ্টা করে। তাই ন্যাস সার্ভারে এমন ড্রাইভের প্রয়োজন যা খুবই দ্রুত এরর ফিক্স করার ক্ষমতা রাখে। ন্যাস সার্ভারে ন্যাস ড্রাইভ ব্যবহার করা উপযুক্ত পছন্দ তবে অবশ্যই স্পেসিফিকেশনের দিকে দেখা অনেক প্রয়োজনীয়—কেনোনা আপনি যদি এমন কোন ড্রাইভ কেনেন যেটি অনেক সস্তা তবে অবশ্যই সেটি খুব বেশি ভালো হবে না।

    এখন প্রশ্ন হচ্ছে, ন্যাস ড্রাইভের কি স্পেসিফিকেশন গুলোর দিকে খেয়াল রাখতে হবে? ঠিক আছে, প্রথমত দেখতে পারেন এমটিবিএফ/মিন টাইম বিটুইন ফেইলিওর (MTBF)/(Mean Time Between Failures) এর দিকে—এমটিবিএফ এর মাধ্যমে আপনি মুটামুটিভাবে ধারণা লাগাতে পারবেন যে আপনার ড্রাইভটি ঠিক কতটা লাস্টিং করতে পারে। তবে ড্রাইভটি একেবারে কতটা লাস্টিং করবে এর ধারণা পাওয়া যাবে না কিন্তু এটি প্রায় কতটা লাস্টিং করতে পারে তার ধারণা পাওয়া সম্ভব।

    মনেকরুন আপনার ন্যাস ড্রাইভটির এমটিবিএফ ১ মিলিয়ন ঘণ্টা তবে এটি অবশ্যই একটি ৫০০ হাজার ঘণ্টা এমটিবিএফ ড্রাইভের তুলনায় বেশি লাস্টিং করবে।
    আরেকটি স্পেসিফিকেশনের দিকে লক্ষ্য রাখা প্রয়োজনীয় যা হচ্ছে, ইউআরই/আনরিকোভারেবল রীড এরর রেট(URE/Unrecoverable Read Error Rate)। এটি মূলত একটি রেটিং সিস্টেম, সাধারন ডেক্সটপ হার্ডড্রাইভের ইউআরই রেটিং হচ্ছে ১০^১৪। এখানে উল্লেখ্য যে, এই রেটিং যতোবেশি হবে ততো দ্রুত হার্ডডাইভ এরর ফিক্স করার ক্ষমতা রাখবে। ন্যাস ড্রাইভের রেটিং হচ্ছে ১০^১৫, যেটা ডেক্সটপ ড্রাইভ থেকে ভালো।

    এন্টারপ্রাইজ ড্রাইভের রেটিং অনেক সময় ১০^১৬ ও হয়ে থাকে যেটা অত্যন্ত ভালো ব্যাপার। সুতরাং ন্যাস ড্রাইভ কেনার আগে অবশ্যই মাথায় রাখবেন এর ইউআরই রেট যেন সর্বনিম্ন ১০^১৫ হয়, যদি সেটি ১০^১৪ রেটিং এর হয়, তবে অবশ্যই আপনি একটি সস্তা ড্রাইভ কিনেছেন। এনএএস ড্রাইভ মূলত সাধারন ডেক্সটপ ড্রাইভ থেকে অনেক বেশি দামী হয়ে থাকে তবে এটি এনএএস পরিবেশের জন্য সত্যিই অনেক গুরুত্বপূর্ণ। সুতরাং আপনার যদি কোন এনএএস সিস্টেম থাকে এবং সেগুলোকে নেটওয়ার্কের মাধ্যমে অ্যাক্সেস করেন তবে অবশ্যই এনএএস ড্রাইভ উপযুক্ত হবে।

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: November 26, 2021In: Web & Host

    How to create a free web server with CPanel?

    Support
    Support IT Senior Coordinator
    Added an answer on November 26, 2021 at 10:57 am
    This answer was edited.

    Install the Vesta CPanel on Ubuntu Server [embedyt] https://www.youtube.com/watch?v=m8Y2Wb_aMUM[/embedyt]   First, You log in to your ubuntu server on the root user Then Started your server update It is recommended to update your server with the latest version. You can do it with the followingRead more

    Install the Vesta CPanel on Ubuntu Server

     

    First, You log in to your ubuntu server on the root user
    Then Started your server update
    It is recommended to update your server with the latest version. You can do it with the following command in your Ubuntu terminal:

    apt-get update -y &
    apt-get upgrade -y

    The server is updated, restart it to apply all the configuration changes.

    Download VestaCP:

    First, you will need to download VestaCP easy installation script from their official websites. You can download it with the following command:
    sudo wget https://vestacp.com/pub/vst-install.sh

    Once downloaded, change the permission with the following command:

    chmod 755 vst-install.sh
    Next, start the installation by running the following command:
    sudo bash vst-install.sh
    Or
    sudo bash vst-install.sh --force

    _| _| _|_|_|_| _|_|_| _|_|_|_|_| _|_|
    _| _| _| _| _| _| _|
    _| _| _|_|_| _|_| _| _|_|_|_|
    _| _| _| _| _| _| _|
    _| _|_|_|_| _|_|_| _| _| _|

    Vesta Control Panel

    The following software will be installed on your system:
    – Nginx Web Server
    – Apache Web Server (as backend)
    – Bind DNS Server
    – Exim Mail Server
    – Dovecot POP3/IMAP Server
    – MySQL Database Server
    – Vsftpd FTP Server
    – Softaculous Plugin
    – Iptables Firewall + Fail2Ban

    Would you like to continue [y/n]: y

    press y to continue to install:

    Please enter an admin email address like this: admin@itsupport.com.com
    Please enter FQDN hostname your domain like: [test.itsupport.com.bd]:
    Installation backup directory if you like: /root/vst_install_backups/1564552012
    It could take up to 15 minutes. You should see a message indicating the install was successful and give you your admin password. save the password and login https://(your IP):8083

    Here is the easy trick to use the vestaCP control panel file manager.
    Install Free File Manager VestaCP
    vesta file manager
    vesta web file Manager plugin
    How to Install Vesta Cp file Manager Free

    Step 1: Login Using ssh with root user

    Step 2: Open the vesta.conf file
    Using this command
    sudo nano /usr/local/vesta/conf/vesta.conf
    Press insert key and edit this file

    step 3: Add FILEMANAGER_KEY='ILOVEREO' line

    Step 4: Press Ctrl+X and save y

    Step 5: login the vestacp control panel and check.

    You can enjoy the file manager of the vesta control panel for free
    **** Note if vesta automatically remove this code after 24h you can save again *****

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: November 23, 2021In: Programs

    What is PHP ?

    Support
    Support IT Senior Coordinator
    Added an answer on November 23, 2021 at 4:45 am

    PHP is a programming language. PHP Created by Danish-Canadian programmer Rasmus Lerdorf in 1994, PHPwas never actually intended to be a new programming language. Instead, it was created to be a set of tools to help Rasmus maintain his Personal Home Page (PHP). Today, PHP (Hypertext Pre-Processor) isRead more

    PHP is a programming language.
    PHP Created by Danish-Canadian programmer Rasmus Lerdorf in 1994, PHPwas never actually intended to be a new programming language. Instead, it was created to be a set of tools to help Rasmus maintain his Personal Home Page (PHP). Today, PHP (Hypertext Pre-Processor) is a scripting language, running on the server, which can be used to create web pages written in HTML. PHP tends to be a popular languages since its easy-to use by new programmers, but also offers tons of advanced features for more experienced programmers.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: November 23, 2021In: Web & Host

    How to Remove the “Powered By WordPress” Link ?

    Support
    Best Answer
    Support IT Senior Coordinator
    Added an answer on November 23, 2021 at 4:43 am

    Avoid the CSS Method Now some WordPress tutorial sites may show you a CSS method that uses display: none to hide the footer credit links.   However doing so will put your site’s SEO at risk. Google does not like hiding links with display:none because that’s a technique that spammers use to hideRead more

    Avoid the CSS Method
    Now some WordPress tutorial sites may show you a CSS method that uses display: none to hide the footer credit links.

     

    However doing so will put your site’s SEO at risk. Google does not like hiding links with display:none because that’s a technique that spammers use to hide the links from users while still showing it to Google (in hopes of higher rankings).

    Your site might get flagged, and it will cause you to lose your search engine rankings.

    So whatever you do, do not use the CSS method like this:

    #site-info {display:none}
    While it looks simple, it’s not good for SEO.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: November 23, 2021In: Programs

    What is the C# ?

    Support
    Support IT Senior Coordinator
    Added an answer on November 23, 2021 at 4:40 am

    C # is programming language.Dating from 2000, C# (pronounced C-sharp) is a relatively new programming language designed by Microsoft for a wide range of enterprise applications that run on the .NET Framework. An evolution of C and  C++, the C# language is simple, modern, type safe and object orienteRead more

    C # is programming language.Dating from 2000, C# (pronounced C-sharp) is a relatively new programming language designed by Microsoft for a wide range of enterprise applications that run on the .NET Framework. An evolution of C and  C++, the C# language is simple, modern, type safe and object oriented.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: November 23, 2021In: Programs

    What is the JavaScript ?

    Support
    Best Answer
    Support IT Senior Coordinator
    Added an answer on November 23, 2021 at 4:37 am

    JavaScript is a programming languages Script. JavaScript – not to be confused with Java or mean stack development – is another one of the world’s most popular and powerful programming languages, and is used to spice up web pages by making them interactive. For example, JavaScript can be used to addRead more

    JavaScript is a programming languages Script.
    JavaScript – not to be confused with Java or mean stack development – is another one of the world’s most popular and powerful programming languages, and is used to spice up web pages by making them interactive. For example, JavaScript can be used to add effects to web pages, display pop-up messages or to create games with basic functionality. It’s also worth noting that JavaScript is the scripting language of the World Wide Web and is built right into all major web browsers including Internet Explorer, FireFox and Safari. Almost every website incorporates some element of JavaScript to add to the user experience, adding to the demand for JavaScript developers. In recent years JavaScript has also gained use as the foundation of Node.js, a server technology that among other things enables real-time communication.  

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 2 3

Sidebar

Ask A Question

Stats

  • Questions 162
  • Answers 164
  • Best Answers 79
  • Users 17k
  • Popular
  • Answers
  • Jaylon S

    When I turn my Pc in a Server with Ehcp ...

    • 5 Answers
  • Abak

    ক্রিপ্টোকারেন্সি কি?

    • 4 Answers
  • admin

    নেটওয়ার্ক সংযুক্ত স্টোরেজ (NAS) কি?

    • 3 Answers
  • admin
    admin added an answer If you're running OpenWRT on a router with limited internal… April 13, 2025 at 10:05 am
  • Support
    Support added an answer 10 Best Methods on How to Use IDM for Torrent… November 14, 2024 at 1:27 pm
  • admin
    admin added an answer When choosing a printer for book printing in Dubai, consider… October 30, 2024 at 3:31 pm

Top Members

admin

admin

  • 14 Questions
  • 1k Points
IT Partner
Arif

Arif

  • 35 Questions
  • 790 Points
IT Moderator
Support

Support

  • 29 Questions
  • 477 Points
IT Senior Coordinator

Trending Tags

bd movie 365 computer custom pvc patches custom rom hosting mobile nas network online movies online pvc patches uk os pvc patches question server sim storage website windows 11 wordpress xrp price prediction

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • Shop

Footer

IT Support BD

We hope you enjoy our blog as much as We enjoy offering them to you. If you have any questions or comments, please don't hesitate to contact us.

About Us

  • Meet The Team
  • Blog
  • About Us
  • Contact Us

Legal Stuff

  • Terms and Conditions
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2018-2025 IT Support BD. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.