About Me

My photo
I worked as freelancer on freelance.com for many years, Then opened my Company. I did software coding with my company. But also did pottery -- I know well business management. Software coding is coming next to it as a plus. It helps but organising is as much important as coding. I have many years of experience in business management of Industrial Construction works. I am quite known as company for CAD drafting and 3d for architectural design. I had quite a lot experience at USA and at Turkey. I am less known, in my pottery love.

Tuesday, January 23, 2024

Laravel- success install - Symfony - installing - or trying to

Laravel

My personal opinion is, there is so much big hustle implementing Laravel that you better give up and use any other thing that could do the job. 

It is one of the hardest software setup I ever experienced, and on my both two attempts I got disappointed. 

It is not as `fairy heaven` as it is said, It is just kind of ms-dos styled ugly framework. I do not understand how people like it. Very very ugly framework.

So compared to it, my Notepad ++ is like a heaven on earth.

Also I will give up soon PHP and get into C++ or C# so why loosing time with this useless ugly framework. I removed it from my computer. Still work with PHP but no Laravel anymore!

Sorry I really did not liked at all Laravel. Notepad ++ is way much better. 

Here Vikas gave the most easiest way possible to install Laravel, personally I think he did a magnificent work. He is the only person who explained this in a clear manner. 



Everything is on the link, ne need to write anything:
SUPER!!!  install with Xampp - succesful!

install composer first

then install laravel

install dockers

if problems after installing dockers:
ctrl x - in win admin powershell
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
in bios sys config-enable virtualization

Symfony- not successfull

Just tried once to install it. gave up, I read that Laravel is better than Symfony. Laravel has an ugly framework, so I can not imagine what is Symfony. Probably worse. Anyway big hustle to install, I removed it for good.
  • Ilk sistem acilisi
    • Folder`a git: c/users/user/myproject
    • sağ klik ile : Git Bash here
    • ? symfony server: start
    • open browser : http://localhost:8000/
  • Sistem kapatma
    • ? Ctrl + C
    • note: the web server works with any other PHP app too!
  • Source: dummies.com 
    • Symfony local server
      • enabling TLS
      • ?symfony server:ca:install
    • Check PHP
      • ?symfony local:php:list
    • Windows setup:proxy
      • settings
      • network & internet
      • proxy
      • automatic proxy setup section
      • use setup script "on"
      • enter script adress
      • save
      • close
      • ?symfony proxy:start
    • Creating new project
      • for traditional web application
        • ?symfony new my_prj_name -- version=4.4 --full
        • installs all the package
      • for bdg a microservice, console app or API
        • ?symfony new my_prj_name -- version=4.4
    • result : failure
  • Symfony Flex 
    • Explanation
      • simplify installation of (or removal) of packages (or bundles)
      • Symfony Flex is a composer plugin that is installed by default
      • it automates the most common tasks
    • Add Flex to an existing project
      • ? composer require symfony/flex
  • Existing project- source : symfony.com/doc/4.4/setup/html
    • clone the prj, download its content
      • ? cd projects
      • ? git clone
    • make composer install the prj dependencies into "my project"
      • ? cd my-project/
      • ? composer install
    • other tasks (maybe!)
      • maybe customize .env file
  • Symfony security - source: symfony.com/doc/current/security/html
    • the name of the security userclass: mymailadress@mailthingabc.com 
    • store user data in db: yes
    • unique display name: mydisplayname
    • this app need to hash check
      • user pass: yes

No comments:

Post a Comment

neo4j-mathematics

 create the nodes: CREATE   ( n : sil   { name : "k1" ,  val :   1250 }),( m : sil2   { name : "k2" ,  val : 1250 }),   ...