Trying to hash a password in laravel four using Hash::make('password'); and get the error Bcrypt hashing not supported. in return.
Mcrypt is installed and phpinfo() confirms this, what else could be wrong?
Debian 6.0 X64 with PHP 5.3.3-7.
The Laravel requirements are PHP >=5.3.7
You said you are running 5.3.3-7 - which is less than 5.3.7
Can you upgrade your PHP version?
As The Shift Exchange said, 5.3.7 is the minimum for a 'vanilla' Laravel 4, but there is at least one option, if you really cannot upgrade your PHP server. This one will drop the minimum PHP version for Laravel 4 to 5.3.2:
https://github.com/robclancy/laravel4-hashing
Before using it, weigh your security needs, because it will also drop the security level of your hashes.
Related
By default, Laravel will use the phpredis extension to communicate with Redis but We can install predis in application.
do I need to install predis in project? what is difference between phpredis and predis in laravel?
phpredis is a binary package and pecl extension for php.which makes it faster than predis.
but you need root permission to install phpredis extension.when you use some webhost that do not support customize environment,make it impossible to run you appllication.
on the other hand.predis use pure php code to communicate with redis server.so there is no local php extension requirements.but it's a little slower.
so you can deploy you application to any webhost that support php.
As I remember.laravel default use predis to make it minial requirements.
PhpRedis is a PHP extension for communicating with the Redis storage.
Predis is the alternative for PhpRedis on pure PHP and does not require any additional C extension by default, but it can be optionally paired with phpiredis.
I will recommend that phpredis provide a lot of better performance.
i use win 10 X64 and laravel 5.4 and wamp 3 so i enable php_pdo_firebird and php_interbase ext
i use this package :
laravel firebird
when i execute my program have error :
my error
Some times you need to make sure if you're using the right version of the firebird package with the version of laravel that it's compatible with. You better check it out and update them.
I am using xampp v3.2.1 with PHP 5.6.8. now i want to use PHP APC caching techiniques but unable to use. can anyone please tell how shall i enable this caching on my xampp.
In short: when you are using PHP 5.6.8:
enable the Opcache
forget about APC
if you need a userland cache use APCu
Since PHP 5.5 the Bytecode-Cache "OpCache" is part of the core, making the APC extension itself useless. In other words: APC is only usefull for 5.4 and lower versions and those reached EOL.
Since PHP 5.5 there is the User Cache-Extension "APCu" as a replacement for APC.
https://github.com/krakjoe/apcu
I am required to install the following Oracle fusion middleware components for a project using chef (I know how to use chef so that is not a problem).
OHS, WLS, JRockit. SOA, OSB, oracle_common, ODI, AIA.
I am going to setup an oracle database first. After doing that I am not sure of the steps that I need to follow. What do I install first? Does one of these depend on each other? Just need to know the order of installation for all these. Thanks
The steps are here and here.
And Docs here.
I always:
1. Install DB (note there are setup scripts to run after install to size the DB for the SW.)
2. Install jRocket
3. Install WLS.
4. Install Binaries (SOA Suite...).
5. Run RCU to configure the DB schemas.
6. Create the WLS domain.
i am using magento 1.3.2 3 changing server from 5.2php to 5.3 php will it effect the website
would there be any compatibility issues ?
hosting people:
As discussed on live chat we have migrated your all account from your VPS to new dedicated server.
Also, the OLD server has php version 5.2 ,cPanel is no longer providing support for php 5.2. Your server has php version 5.3. Please check if your all sites are compatible with the php 5.3 and let us know the convenient time period to change the nameserver IPs as bellow.
would there be issues with magento functionality ?
will it effect the website
Yes.
would there be any compatibility issues
Magento didn't support PHP 5.3 until version 1.4
would there be issues with magento functionality ?
Again, yes, but they're too myriad to list. Upgrading to modern version of Magento won't be a turn key project. Get a 5.3 server, practice moving your site and fixing all the bugs. Do it again. Keep doing it until you're ready to move your production system.