Andrew
Andrew

Reputation: 2011

Cakephp2.3 Text Area isn't being posted correctly

I am trying to save a description field that has varchar(500) in the database. When I look at the Net Panel in firebug the entire description is being posted (200+ words). However, in cakephp only 75 words are being saved. I set a breakpoint in my controller and looked at this->request->data and it has about 150 characters. Below is my code:

<fieldset>
<legend>Create Log</legend>
<?php echo $this->Form->Create('Log', array('inputDefaults' => array('div' => false, 'label' => false))); ?>
    <div class="control-group">
        <div class="input-prepend">
            <span class="add-on"><i class="icon-folder-open"></i></span>
            <?php echo $this->Form->input('project_id'); ?>
        </div>
    </div>

    <div class="control-group">
        <div class="input-prepend">
            <span class="add-on"><i class="icon-user"></i></span>
            <input type="text" id="txtName" placeholder="Customer" />
            <?php echo $this->Form->Hidden('customer_id'); ?>
            <a><span class="add-on"><i class="icon-plus" style="color: green;" onclick="window.open('<?php echo $this->Html->Url(array('controller' => 'customers', 'action' => 'add?popup')); ?>', 'Add Customer', 'height=630, width=430')"></i></span></a>
        </div>
    </div>

    <div class="control-group">
        <div class="input-prepend">
            <span class="add-on"><i class="icon-time"></i></span>
            <?php echo $this->Form->input('time_spent', array('placeholder' => 'Time spent (hrs)')); ?>             
        </div>
    </div> 

    <div class="control-group">
        <div class="input-prepend">
            <span class="add-on"><i class="icon-book"></i></span>
            <?php echo $this->Form->textarea('description', array('placeholder' => 'Description', 'class' => 'logTextArea', 'rows' => '7')); ?>

        </div>
    </div>

<?php echo $this->Form->end(array(
    'label' => 'Save Record',
    'class' => 'btn btn-primary',
    'div' => false
)); ?>

<?php echo $this->Html->script('jquery.autocomplete', array('inline' => false)); ?>

<?php $this->start('script'); ?>
<script type="text/javascript">
    $(document).ready(function () {
        var options, a;
        jQuery(function() {
            options = { 
                serviceUrl: "<?php echo $this->Html->Url(array('controller' => 'logs', 'action' => 'autoComplete.json')); ?>",
                minChars: 2,
                onSelect: function(suggestion){ $('#LogCustomerId').val(suggestion.data); }
            };
            a = $('#txtName').autocomplete(options);
        });
    });
</script>
<?php $this->end(); ?>

Controller:

public function add() {
    $this->set('title_for_layout', 'Add log');

    // Populate projects DDL
    $this->set('projects', $this->Log->Project->find('list', array(
        'order' => array('Project.project_name')
        )));

    if ($this->request->is('post'))
    {
        $this->Log->create();
        if ($this->Log->save($this->request->data))
        {
            $this->Session->setFlash('Log has succesfully been created', 'default', array('class' => 'alert alert-success'));
            $this->redirect(array('action' => 'index'));
        } else {
            $this->Session->setFlash('Unable to save log', 'default', array('class' => 'alert alert-error'));
        }
    }
}

Upvotes: 0

Views: 238

Answers (1)

thaJeztah
thaJeztah

Reputation: 29137

This problem may be caused by a bug in some versions of PHP that truncates $_POST values.

Without re-posting the information, this question contains some additional information.

PHP $_POST array variables are truncated

Some (possibly) related bugs;

Bug #42824 Post Data truncated

Upvotes: 1

Related Questions