Skip to content

Integrating SAP with PHP backend

I have to get data from one company which uses SAP for product management and so on. I should just retrieve data once in a day and refresh my local mysql db. I am php developer, so I know about SAP …

Laravel – Mass Assignment Exception error

I am trying to save multiple rows to a table, however, I am presented with a Mass Assignment Error. The error is: Illuminate Database Eloquent MassAssignmentException criteria_id $criteria->…

Encryption password FOSUserBundle

I have a symfony project using FOSUSerBundle to manage users , Now I need to access to Database via a Simple Rest Webservice , The encryption in the registration is : Sha512 , How can i get the same …

PHP scandir filenames with Turkish characters

I am listing documents with PHP scandir. I have problem with some characters like ğ, ı, ş… So this is my code; $directory = “document”; $scanned_directory = array_diff(scandir($directory, 1), array(…

Smarty cdn output filter for images

Output filter for smarty which replaces image URL inside smarty templates with your cdn url e.g. an image like: <img src="http://cdn.yoursite….

Use one Laravel migrations table per database

I work in a project that uses multiple databases. It seems like Laravel only uses the migrations-table in the database that is set as default. I would like one migrations table per database that logs the migrations that have been done to that specific database. Is this possible? I have defined the databases i…