Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    521
    Plugin Contributions
    3

    Default [Done v1.5.5] PHP 5.4 default object from empty value warning

    Evidently, PHP changed the way how objects work in the new 5.4 version. I noticed that I started to get these alot:

    [21-Oct-2014 15:27:04 America/New_York] PHP Warning: Creating default object from empty value in /home/someuser/public_html/example.com/admin/attributes_controller.php on line 924

    To "fix" this, I changed that particular line from this:

    PHP Code:
    if ($action == 'attributes_preview') {
      
    $_GET['products_id'] = $products_filter;
      
    $pInfo->products_id $products_filter;
      include(
    DIR_WS_INCLUDES 'attributes_preview.php');
    ?> 
    to this:

    PHP Code:
    if ($action == 'attributes_preview') {
      
    $_GET['products_id'] = $products_filter;

      if (!isset(
    $pInfo)) $pInfo = new stdClass();
      
    $pInfo->products_id $products_filter;

      include(
    DIR_WS_INCLUDES 'attributes_preview.php');
    ?> 
    Hope this helps.

  2. #2
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,690
    Plugin Contributions
    9

    Default Re: PHP 5.4 default object from empty value warning

    these kind of errors are generally related to ZC - PHP mismatches.

    that appears to be resolved by ZC 1.5.5
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 

Similar Threads

  1. v139h Warning: Creating default object from empty value in shipping_estimator.php
    By split63 in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 30 Apr 2016, 08:00 PM
  2. Replies: 20
    Last Post: 7 Dec 2014, 11:29 AM
  3. Replies: 10
    Last Post: 6 Sep 2014, 02:55 AM
  4. Replies: 3
    Last Post: 26 Mar 2014, 07:35 PM
  5. Replies: 0
    Last Post: 27 Sep 2012, 11:57 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR