Questions tagged [php-7.2]

Use this tag for version-specific issues relating specifically to PHP 7.2.Use with the [php] tag

Deprecations: https://wiki.php.net/rfc/deprecations_php_7_2

GA release is scheduled for 2017-11-30: https://wiki.php.net/todo/php72#timetable

724 questions
0
votes
1 answer

Installing PHP 7.2 on Centos 7 for Laravel 5.6

I'm attempting to install PHP 7.2 for an app I've developed on a homestead box. I'm using centos 7. I've installed PHP 7.2, git, composer, etc. When I run composer install in my app's parent folder I get: Even though I've added php7.2-mbstring…
mRhouse
  • 43
  • 1
  • 7
0
votes
0 answers

403 forbidden error when submitting form with special characters

I'm trying to submit a form with the following content of textarea: scp -P 22 ~/.ssh/id_rsa.pub remote:.ssh/authorized_keys But it doesn't accept, the following error appears on submitting: You don't have permission to access /test.php on this…
Behiry
  • 575
  • 5
  • 20
0
votes
1 answer

codeigniter 3.1.9 with apache and php 7.2 - routing/redirect issues with symbolic links

SCENERIO: Recently I migrated CodeIgniter from 2.4 to 3.1.9 along with PHP from 5.2 to 7.2. Also, created a new httpd.conf file in apache. When I go to the site's URL, it loads the default page fine and I can browse to default or root pages without…
BBT
  • 211
  • 1
  • 3
  • 8
0
votes
2 answers

Webcrawler extract link elements

I want to extract elements from a webpage. $html = file_get_contents($link); That function returns the complete html file, and I only want the internal and external links to save them in the database. $sql = "INSERT INTO prueba (link, title,…
0
votes
2 answers

Unable to load dynamic library 'mongodb.so' - Debian 8 , PHP 7.2

I have a VPS with Debian 8 OS and a DirectAdmin panel with PHP7.2 To use MongoDB PHP driver, I installed it with the command sudo pecl install mongodb. After that installation, I added the driver extension to the php.ini file by this command: echo…
Behnam Azimi
  • 2,260
  • 3
  • 34
  • 52
0
votes
0 answers

I am upgrading PHP 5.6 to 7.2 using fast cgi. After installation I am an getting internal server error

I am upgrading PHP on a windows 2016 server but getting an internal server error on all PHP pages now. I went from PHP 5.6 to PHP 7.2 fast cgi non thread safe x86 version. When I check in PHP Manager in IIS Manager all of the settings show the…
sjw0525
  • 329
  • 2
  • 17
0
votes
1 answer

Laravel try to load files from old folder

For some reasons, I had to change my project to another folder. I moved as a new project, I mean, using composer to install "vendor" folder as a new project. My problem is, laravel (v5.6) is trying to load the files from old folder and I can't…
Carlos Diaz
  • 321
  • 1
  • 15
0
votes
1 answer

Laravel 5.6 controller post action methods truncates boolean value

I am making an AJAX post to Laravel controller like below.