forget my question. sorry.
i found : i ve override options_list function in my foreign table model :
public function options_list($key = NULL, $val = NULL, $where = array(), $order = TRUE)
{
$this->db->order_by($this->table_na…
thank you for your response.
i use Fuel Form Functions.
you're right : it was related with CSRF security.
i set :
$config['csrf_protection'] = TRUE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$co…
with the fix :
1- $config['assets_cache_folder'] = 'cache/'; produces links with href to the assets directory root and no cache file in assets directory root (no writable)
2- $config['assets_cache_folder'] = 'cache'; produces the right links to asse…
thank you for the fix.
but i tried this before starting this thread : it doesn't write anything in the assets_cache_folder...
before i posted, i worked around a little and the simplest way i found was :
in Asset.php:540
$path = ('cache' === $path) …
sorry, unless I am mistaken. it seems that this is the same behavior with this branch.
the written file in assets/cache is named like this
cache53fe7151c0bafa59f1e25d6e6a1df1fc_1456873200.php
and the link href : 53fe7151c0bafa59f1e25d6e6a1df1fc_14…
i don't have more info about server config. It's a regular LAMP, FPM/FastCGI , php5.4.45-0+deb7u1 and varnish cache in front.
thank you for details about csrf cookie, if i understand it's better to change anything about csrf cookie if enabled.
no, i changed csrf_token_name and csrf_cookie_name values.
i restored the csrf_token_name default value and now everything seems ok.
why can i not change this ?
by the way, on some servers, encrypted cookie throws 500 Internal Server Error, this …