Posts

STRAPI

Image
  Strapi helps us to provide pre-made cms backend. In strapi everything is about content type.   Topic: Weird Things About STRAPI Topic: Document Save States When we want to store a post into strapi, that time it gives us 2 options: “publish”, “save”. When we create content as publish/save it creates 2 different records. First 2 are for “save” and the rest 2 are for “publish”. Good thing is when creating a new publish/save it delta the OLD one ID and create a NEW one. Topic: Content Type change in strapi We can add multiple fields into strapi content type. For changing the Column Type we need go in inside /src/your-content-type/schema.json /* OLD ONE */ "attributes": {     "title": {       "type": "string"     },     "description": {       "type": "text",   "length": 80     }, /* NEW ONE */ "description": {    ...

LAMP stack install linux

 step 1: sudo apt install apache2  step 2:  sudo apt install mysql-server -y sudo mysql > CREATE USER 'new_user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'new_user'@'localhost'; FLUSH PRIVILEGES; STEP 3:  sudo apt install php php-mysql php-gd libapache2-mod-php  STEP 4:  sudo apt install nano phpmyadmin Step 4.1: configure phpmyadmin after installation  sudo nano /etc/apache2/apache2.conf Include /etc/phpmyadmin/apache.conf sudo service apache2 restart STEP 5: set the var/www/html access sudo chown -R $USER:$USER /var/www/html sudo chmod -R 777 /var/www/html sudo usermod -aG www-data $USER sudo systemctl restart apache2 ==================================================== for wordpress directory permission:  define('FS_METHOD','direct'); 

MCSL 216 MCA NEW Practical ~ common questions suggestions

Topic: JS VALIDATION   Q1. Design a form for booking room through a Hotel website. The form should have relevant fields (make suitable assumptions). Further, the form should have Submit and Reset button. Now, perform following: Marks: 20   Solution: <html>     <title>hotel form booking</title>     <body>         <br>         <h2>Hotel Form</h2>         <br>           <form id="booking_form">             <label for="p_name">Person Name</label> <br>             <input type="text" id="p_name" name="p_name">          ...

jitsi

Image
  Chat history ChatGPT ChatGPT Explore GPTs Today Self-hosted Video Conferencing Previous 7 Days PHP Performance Optimization WordPress Blog Pagination Settings Page Validation Upgrade plan More access to the best models ChatGPT Share You said: i want to make a self hosted video conferencing app with jitsi and php ChatGPT said: ChatGPT Memory updated Building a self-hosted video conferencing app with Jitsi and PHP is a great idea! Here's a high-level roadmap to guide you: 1.  Set Up Jitsi Meet Install Jitsi Meet : Deploy the Jitsi Meet server on a VPS or dedicated server. Recommended OS: Ubuntu 20.04 or later. Follow the  Jitsi  Installation  Guide . Configure SSL : Use Let's Encrypt for HTTPS to secure your application. Test Jitsi : Ensure the default installation is working, allowing users to create and join meetings. 2.  Integrate Jitsi with PHP Jitsi API : Use the Jitsi Meet API (e.g.,  lib-jitsi-meet  or the iFrame API) for embedding Jitsi in...