What php structure is good for shared hosting?

I am trying to use the PHP framework, but I have no confidence in working with composers and terminal teams. I would like to download the framework and download it on my shared hosting and start developing my application. Any suggestion?

Thanks.

+4
source share
3 answers

CodeIgniter https://codeigniter.com - powerful PHP infrastructure with a very small size

1. Install the package.

2. Download the CodeIgniter folders and files to your server. Usually the index.php file is in your root.

3. application/config/config.php URL. , .

4. , application/config/database.php .

, CodeIgniter, . , index.php $system_path $application_folder , .

, -, . .htaccess, , - .htaccess.

, , .

index.php $system_path, $application_folder $view_folder, , . "/WWW/MyUser/.

, , PHP . CodeIgniter , ENVIRONMENT, .

!

MVC, . .

+5

( ?), Laravel. , . - , .

, -. .

"" , public_html .

. .htaccess:

Options +FollowSymLinks

cPanel, cron, .

+4

, Symfony2, Laravel, Codeigniter CakePHP .. , , Laravel. Laravel , laracasts.com( PHP, Laravel JS).

If you have experience with the framework, I suggest you try Symfony2. This is one of the best PHP frameworks. Symfony is also becoming the industry standard. There are many great projects that are built on top of Symfony components, including:

  • Drupal
  • Laravel (yes, laravel uses some Symfony components)
  • Joomla
  • Magento
  • Code etc.

Many high-profile companies are looking for Symfony developers. Thus, large companies have many great features if you are a Symfony developer.

+2
source

Source: https://habr.com/ru/post/1628171/


All Articles