Skip to content

composer is ignoring installer-paths configuration

I’m try using CakePHP for the first time with composer, but I have some problems. I have this composer.json: When I run composer install (or update) –prefer-dist, everything works except smottt/wideimage. This package is being installed in the /Vendor folder instead /app/Vendor, so, installer-path…

How to update a mysql column with php?

I’m making a website to connect to MySQL, but I’ve this function to update a SQL column in php: <?php function insert_db($table, $id, $value, $id2, $value2){ $con = mysql_connect($server,…