actually i made a symfony webapp 3 years ago , i didn't use it, and now i am trying to deploy it on heroku but it says , that i need to use newer version
I am trying to resolve the deprecation before updating the version (5.1 and go progressively to 6) but i do not know how to do
i already made my research on internet but i did not find something that can help
You should migrate to Symfony 5 first tkans to the full doc here and after to Symfony 6 thanks to that !
Both explain how to fix your deprecations and a search for deprecations specific to your favorite search engine will also help!
Related
I'm currently in the process of upgrading a Laravel 5.2 project (yes, I know, I know...) to the latest Laravel version (9 at the time of writing). This project uses Caffeinated/Modules to structure the code - currently on version 3.
On checking the compatibilities using Laravel Shift, it appears there is no version of Caffeinated/Modules compatible with Laravel 9. In addition, on checking the Modules project on GitHub, no updates have been made to it in the past year - which is slightly worrying.
So I'm wondering if this plugin is effectively obsolete? (or soon-to-be?)
Does anyone know if there are any plans to keep it going in the future? Or is it worth ditching it now?
(For background, I tried a single "shift" from 5.2 to 5.3, and so far have been unable to get the Module routes to work. I wonder if the Modules could be the biggest headache in the upgrade process).
Any insider knowledge/advice/experience gratefully received!
I am trying to upgrade my laravel 4.1.30 project to laravel 5. But I searched instructions online many times, even official described not clearly.Please lead me to be able to upgrade step by step.
Yes, you can I'm also in a process of doing upgrade with a project from 4.0 to 5.
Currently I have upgraded from 4.0 to 4.2 and now gonna upgrade it to 5 as well.
What I figured out is that you have to follow all upgrade process step by step as described in the guide.
https://laravel.com/docs/5.3/upgrade
It means, you have to do all small upgrades as well for example, "Upgrading To 4.1.29 From <= 4.1.x" also needs to be done.
I hope it helps.
I have developed a website using cakePHP version 1.3.14. But now I wanted to upgrade the cakephp version for my website because many function has been depreciated. I also follow the tutorial given on http://book.cakephp.org/2.0/en/console-and-shells/upgrade-shell.html
after doing all this when i run the command ./Console/cake upgrade all on my terminal all goes well, but when I am opening my website on browser it gives me server error-500. I have follow other tutorials as well but not able to upgrade my website's cakephp version. can anyone help me out from this situation and help me in upgrading my websites's cakephp version. Any help will be much appriciated.
I hope these link will be helpful for you.
http://mark-story.com/posts/view/upgrading-to-cakephp-3-0
https://groups.google.com/forum/#!topic/cake-php/pucWIOtrckY
It's a good idea to upgrade the cakephp from 1.x to 2.x. below is the official cakephp migration guide link, This link give you all the information which you required in migrations of your code base. Please follow this and let me know your experiance.
http://book.cakephp.org/2.0/en/appendices/2-0-migration-guide.html
Thanks
I am simply trying to install a laravel bundle via the Artisan CLI using the latest Laravel 4 beta from github.
But when I try something like:
php artisan bundle:install bob
I'm confronted with
[InvalidArgumentException]
There are no commands defined in the "bundle" namespace.
I've had a look around online and can't seem to find a solution to this or even anyone else having similar problems for that matter.
Has anyone else experienced this error or any ideas on a solution?
If you're using Laravel 4 (which based on the tags for this question, you are) then bundles are no longer used.
Out with bundles, in with composer
Instead, Laravel 4 makes use of composer packages. It's kind of similar but at the same time very different in how it works. Here isn't the right place to explain all of composer, so check out the links below to find out more:
Getting started with Laravel 4
How to setup Laravel 4
Composer primer
Laravel 4 Generator
Now, since you were asking about bob, the closest equivalent for the bob bundle would probably be Jeffrey Ways generator package, which you can learn more about here: Laravel-4-Generators
I am trying to update my project written in Symfony 2.0 into Symfony 2.2.
Moving source codes into 2.2 project ended with config.yml and security.yml incompatibiliy.
Is there way how to properly migrate Symfony 2.0 project into Symfony 2.2?
It better to wait until Symfony 2.3 before migrating. It will be released somewhere in May. It's the first LTS (Long Time Support) release, meaning that it's maintained for three years. So: You don't have to worry about BC breaks for 3 years!
For the migrating of Symfony 2.0 to 2.3: There is nothing you can do. Read the UPGRADE-*.md files (which are stored in the root of the symfony/symfony package) and fix anything that is in their in your code. Every BC break that's important for normal users will be put in those UPGRADE files.
If you can't solve it after the fixing everything in the UPGRADE files, you should take a look at the CHANGELOG.md files in the root of the package (e.g. the symfony/security package). Try to find something that is changed and cause your code to break.
Finally, if you don't get your script working, there are a lot of active Symfony2 users who are waiting to help you. Take a look at the community page and find your place to ask questions.