Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8037523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T02:57:19+00:00 2026-06-05T02:57:19+00:00

So, for some reason, anything I do to data in the beforeSave callback, though

  • 0

So, for some reason, anything I do to data in the beforeSave callback, though it works on single records, does not work when using saveMany.

What gives? If I do the following:

public function beforeSave() {
    $this->data['foo'] = 'bar'
    die($this->data);
}

I can see that in fact $this->data does DOES get changed, but saveMany just ignores it and saves the original data instead.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T02:57:20+00:00Added an answer on June 5, 2026 at 2:57 am

    Make sure you include the model name when manipulating $this->data, e.g. $this->data[‘Event’][‘foo’] = bar. Be sure the method returns true as well or the save will fail.


    Edit

    I whipped up a quick example and it seems to be working for me, see the code below. My suspicion is that maybe you are calling saveMany incorrectly and passing it the whole $this->request->data object but it’s hard to guess without seeing your call as well.

    View

    <?php echo $this->Form->create('ParentTable'); ?>
        Record 1: <br />
        <?php echo $this->Form->input('ParentTable.0.name'); ?>
    
        Record 2: <br />
        <?php echo $this->Form->input('ParentTable.1.name'); ?>
    <?php echo $this->Form->end('Submit'); ?>
    

    Controller

    public function index() {
        if ($this->request->data) {
            $this->ParentTable->saveMany($this->request->data['ParentTable']);
        }
    }
    

    Model

    public function beforeSave() {
        $this->data['ParentTable']['name'] .= ' modified';
        return true;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason the AppModel->updateAll() method does not escape data passed to it. Looking
For some reason my code works for all the 10 digit numbers but not
For some reason i cant draw anything past z>1 in openGL. The Z buffer
For some reason This php script won't echo anything: <?php setcookie(pop,'hi',time()+604800); echo $HTTP_COOKIE_VARS['pop']; ?>
For some reason I am getting the number or rows and not the results
For some reason, I can't get the John Resig micro template to work. I've
For some reason CodeIgniter is not connecting to my SMTP server, anyone have any
For some reason I thought this should work but its eluding me I have
For some reason this code is not checking the current password with the database
In my android app I read GPS data and GPS time. For some reason

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.