autumn Approved

Member since: 2016-01-27

Recent posts by autumn
Post When

In case someone stumbles upon this, you can now overwrite the maxlength attribute in the fields conf...

Posted in Override maxlength="255" attribute in backend on input fields

What I found is that the memory used by php for the file upload needs to be approximately double the...

Posted in Media Error After uploading a file [resolved]

Same issue here. I can't upload a 80MB file in media manager

Posted in Media Error After uploading a file [resolved]

The AJAX framework extras like the request progress bar and the loading indicator (data-attach-loadi...

Posted in Using AJAX framework extras with the javascript API

This has been resolved by "alxy" on the IRC chat. The AJAX handler looks like this:

public function ...

Posted in Load Reorder controller action in popup

I want to load the reorder view inside a popup:

<a
    data-control="popup"
    data-handler="onShow...

Posted in Load Reorder controller action in popup

You can do the following to get the last segment:

$segments = Request::segments(); $category = end($...

Posted in Backend, modify reorder query

<?php namespace My\Namespace\Classes;

use Backend\Behaviors\RelationController;

class OfferRelation...

Posted in Extending Backend\Behaviors\RelationController

I missed the part of the documentation about pessimistic locking. So one can lock the table using lo...

Posted in How to make database operations thread safe

Let's say I have a Counter model that saves a value that needs to be increased with every call to in...

Posted in How to make database operations thread safe