I have switched from XAMPP stack to AMMPS stack on my development machines. I am having problem running FuelPHP on AMMPS. The problem seems to be with database connection... The error I get is:
Fuel\Core\Database_Query_Builder->_compile_conditions(Object(Fuel\Core\Database_PDO_Connection), Array) #5 /Users/primozr/Dropbox/www/dewesoftadmin/fuel/cor in /Users/primozr/Dropbox/www/dewesoftadmin/fuel/core/classes/database/pdo/connection.php on line 94
Check if the php binary in your stack uses the php.ini file you think it uses.
Several of these stacks have non-standard apache/php setups, causing the wrong ini file being used, with the result that for example the pdo_mysql.so extension is not loaded, causing this error.
Ok the default DB password was different. Have updated this in db config file and the error is gone. But the web application is not rendering entirely for some reason, just get the blank container and a code profiler overlay and no error message in log file... but this looks like another issue that has nothing to do with DB.
Ok rendering is not working because <?= $var ?> is not outputting anything. Is this a PHP setting somewhere? Replacing this with <?php echo $var ?> works normally ...