Joomla 1.5 and PHP 5.3 - joomla

I have one website which is using Joomla 1.5 and running in php 5.3 . It was running with PHP 5.2 version, but the hosting company now updated to PHP 5.3 .So Joomla is creating issues with it:
I cannot access the menus and modules from admin side.
I have tried for a migration to Joomla 2.5 But as the site is installed with a number of third party extensions, it is not easy to migrate. So is there any patched or something that will help me to run Joomla 1.5 on PHP 5.3 and do migration on a later date?

Update Joomla to 1.5.26, versions of Joomla older than 1.5.16 are not compatible with PHP 5.3+

Related

Is it possible downgrade from laravel 7 to laravel 5.8?

I need to do the same project but i need to downgrade the version from laravel 7.* to laravel 5.8 because in my project is required php 7.1 ( I know this is not good but my boss want to do for a client )
Thanks
it is easy to do
first backup your laravel 7 project
second fresh install laravel 5.* in your machine.
and then copy your app , resource , routes and packeage.json and then fire command
composer install
if any error than solve one by one

Class not found despite composer dump autoload

Good day,
I am getting a class not found error on our website.
Class 'BootForm' not found
However when I checked the vendor directory, the files are there.
So I ran this command.
php artisan version
The site that uses the same dependency was this version.
Laravel Framework 5.5.23
The site that is not working was this version.
Laravel Framework 5.4.35
And when I check the files, the working site had this file.
bootstrap/cache/packages.php
Does that mean that I have to update the laravel version?
In laravel 5.5, a new feature was add called Package discovery
https://laravel.com/docs/5.5/packages#package-discovery
In laravel 5.4 you have to add your providers array located in the config/app.php file
that''s why you got an error on your 5.4 version and not in the 5.5 one :)

Laravel perfect version for beginners?

As I am new with Laravel and there are already many versions out there I'm confused about which version I should start with? Which will be the perfect version to start?
Versions are: 5.1, 5.2, 5.3, 5.4, 5.4.22 and upcoming 5.5
It will be my pleasure if Laravel experts give me some good advice.
Go with laravel 5.4 and start working with PHP 7. There's no point in learning the older versions at the moment. With 5.5 (LTS) set to release in July, you will be well set with learning 5.4 now.
There are already tons of resources for 5.4 and any and most codes and tutorials that uses 5.3 can be used with 5.4 without any/much change.
A good series to get started.
https://laracasts.com/series/laravel-from-scratch-2017
Go to this URL: https://laracasts.com/series/laravel-from-scratch-2017. It's version 5.4, by far the best resource you'll find for laravel. And it's free.
You can start with Laravel 5.4 because Laravel 5.4 is updated one if learn Laravel 5.3 then you definitely learn 5.4 therefore you start with Laravel 5.4
Thank you

Laravel franzose package with latest version 5.2

I have installed laravel 5.2,
I can't able to use this package for laravel version 5.2
This plugin is easy way to integrate Category management
We can able to create, edit, update and delete a categories by using this package core library files,
Issue i met while installing this package for laravel version 5.2
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Franzose\ClosureTable\ClosureTableServiceProvider' not found
For your reference kindly please check this link:
https://github.com/franzose/ClosureTable

Does Laravel 4.2 and 5.2 supports PHP 7?

I am working on project which was created using Laravel 4.2 and i am curious to know, if Laravel 4.2 and Laravel 5.2 , supports PHP 7 or not ?
Thanks
Update: Starting from 4.2.20 Laravel supports PHP7
#laravelphp tweet:
A special release of Laravel 4.2 has been made (4.2.20) to provide PHP
7 support. Also updates base Symfony components to 2.7.
From one of Laravel issues:
Laravel 5.1 is the first version of Laravel to support PHP 7.
and
Laravel 4.2, and the related symfony version will never get PHP 7 support.
Graham Campbell is the main Laravel contributor after Taylor Otwell, so this info is pretty reliable.
As from today Laravel 4.2 got support for PHP 7. So you can upgrade to 4.2.20 to use it in PHP 7

Resources