Sep 10MacBook Pro Screen freezes after update to Ventura 13.5.2We all want to use the latest version of the software, well some lessons are learned the hard way. Sometimes in the MacWorld, you might have issues with software that you are using that is not compatible with the latest updates. …MacBook2 min readMacBook2 min read
Apr 28Install Drupal 10 and generate dummy content in 10 minYou need to have - xampp - composer — 2.5.4 1. Install Drupal https://www.drupal.org/docs/develop/using-composer/manage-dependencies composer create-project drupal/recommended-project drupal 2. Create a database in phpmyadmin drupal -> utf8mb4_general_ci Create a database named — drupal Create a new use named — drupal_user 3. Alter vhosts file <VirtualHost *:80> DocumentRoot "C:/xampp/htdocs/drupal/web" ServerName my-drupal.com <Directory "C:/xampp/htdocs/drupal/web"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all Require all granted </Directory> </VirtualHost>1 min read1 min read
Feb 4Solve the puzzle: MacOS Ventura with DocksalIf you have recently updated to macOS Ventura and you are running projects using Docksal you might face some issues.Ventura1 min readVentura1 min read
Dec 19, 2022Integrate template in Laravel 9.xIf you need to see a tutorial about the older version you could find it here. #STEP1: Find a template Zombiz - Free Template Review and Demo 'Zombiz' is a free Landing Page template suited for a digital agency. The portfolio items don't offer AJAX loading or…onepagelove.com There are plenty of websites on the internet that offer free one-page HTML templates. We have chosen one which we are planning to use for our tutorial.Template To Laravel94 min readTemplate To Laravel94 min read
Dec 11, 2022Laravel 9.x + Backpack + Article with image (file upload)In order to proceed you should have: - Laravel installed + Backpack admin (teaching purposes) - Tags CRUD created - Article CRUD created Note: There is an older version of this tutorial before Backpack was split on FREE vs PRO field types. #STEP 1: Create migration to add an image to an article php artisan make:migration add_image_to_articles_table --table=articles The new file…Laravel94 min readLaravel94 min read
Dec 5, 2022Laravel 9.x + Backpack — Article with tagsIn order to proceed you should have: - Laravel installed + Backpack admin (latest version free edition) - Tags CRUD created #Step 1. Define what the article consists of title — text content — longText (body of the article) tags (many available) — select multiple options This means that one article could have multiple tags and one tag…Many To Many Crud4 min readMany To Many Crud4 min read
Nov 27, 2022Laravel 9.x + Backpack — CRUD for tagsIn order to proceed you should have: - Laravel installed + Backpack admin (teaching purposes) - virtual host ready for you - xampp setup or other web server - composer installed - you have follow this tutorial (you have tags table created and migration has run) # STEP 1. Create…Laravel92 min readLaravel92 min read
Nov 27, 2022Laravel 9.* create tags table using MigrationsIn order to proceed you should have: - Laravel installed + Backpack admin (teaching purposes) - virtual host ready for you - xampp setup or other web server - composer installed # STEP 1. create migration Note: In the older version there was a way to provide the schema as…Migrations3 min readMigrations3 min read
Oct 8, 2022Migrate Wordpress to Virtual host (Windows + XAMPP)If you have tried to install Wordpress using XAMPP and just pasted the wordpress folder in your /htdocs folder I have bad news for you. If you start using virtual hosts you will have to choose between two options.WordPress3 min readWordPress3 min read
Dec 24, 2021YouТube dislike count fetched from APIWell, it was recently when YouTube decided to remove their dislike count from the website. Many people were curious because of this change and wanted to find a way how we could check the actual dislike count of a video. Fellow colleague Daniel Angelov gave the idea to build a…PHP3 min readPHP3 min read