Action you have requested is not allowed error

后端 未结 11 1801
清酒与你
清酒与你 2020-12-06 06:05

I made a module named Gallery which works fine on my localhost with version 2.0.3, but when using version 2.1.0 on a remote site I can not submit a form and I get the error:

11条回答
  •  隐瞒了意图╮
    2020-12-06 07:03

    Im Using Codeigniter 3 same problem with

    The action you have requested is not allowed.

    Based on Isaac Pak's point, i changed my base_url to what i usally typed at the address bar. like this...

    instead of putting

    http://www.domain.org

    i write it this way..

    http://domain.org

    since my base_url() is just..

    $config['base_url'] = 'http://domain.org/';

    the fix works for my site...

提交回复
热议问题