Title: Different errors
Last modified: August 22, 2016

---

# Different errors

 *  Resolved [iyadmn](https://wordpress.org/support/users/iyadmn/)
 * (@iyadmn)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/different-errors/)
 * I is failing the different parts of wordpress administration by giving me not
   charge any that party (standing still on the tab that was).
    I just happened 
   after the last update of the plugin and WordPress upgrade to 4.1.1
 * Might check that happens in wp-fastest-cache / inc / css-utilities.php on line
   66.
 * I tried to make a debug and log and shows me this:
 *     ```
       [13-Mar-2015 15:10:56 UTC] PHP Notice:  Undefined offset: 0 in /homepages/43/d350881269/htdocs/wp-includes/plugin.php on line 885
       [13-Mar-2015 15:10:56 UTC] PHP Notice:  Undefined offset: 0 in /homepages/43/d350881269/htdocs/wp-includes/plugin.php on line 903
       [13-Mar-2015 15:10:59 UTC] PHP Notice:  Undefined index: .header > .inner, .header .logo {
       line-height: 154px;
       height: 154px;
       }
                               .post .twitter-tweet,
       .post .twitter-tweet-rendered
       {
           width: 98% !important;
           max-width: 98% !important;
       }
       .widget ul li:last-child
       {
           margin-left: 4px !important;
       }
       .mom-e3lanat-inner
       {
       	overflow: initial !important;
       }
       .feature-slider .fs-nav:not(.numbers) a
       {
       	background: #B22525;
       }
       .feature-slider .fs-nav a.selected
       {
       	background: #f09217 !important;
       } in /homepages/43/d350881269/htdocs/wp-content/plugins/wp-fastest-cache/inc/css-utilities.php on line 66
       ```
   
 * Thanks in advance and sorry if I wrote something wrong my English is not very
   good
 * [https://wordpress.org/plugins/wp-fastest-cache/](https://wordpress.org/plugins/wp-fastest-cache/)

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [Emre Vona](https://wordpress.org/support/users/emrevona/)
 * (@emrevona)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/different-errors/#post-5895674)
 * what a silly issue 🙂 I’ll investigate it.
 *  Thread Starter [iyadmn](https://wordpress.org/support/users/iyadmn/)
 * (@iyadmn)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/different-errors/#post-5895741)
 * Ok thanks
    Take this opportunity to add two more ads showing me the debug:
 * [13-Mar-2015 19:07:19 UTC] PHP Notice: Undefined index: name in /homepages/43/
   d350881269/htdocs/wp-content/plugins/wp-fastest-cache/inc/css-utilities.php on
   line 331
    [13-Mar-2015 19:07:19 UTC] PHP Notice: Undefined variable: name in /
   homepages/43/d350881269/htdocs/wp-content/plugins/wp-fastest-cache/inc/css-utilities.
   php on line 375
 * Thanks in advance
 *  Thread Starter [iyadmn](https://wordpress.org/support/users/iyadmn/)
 * (@iyadmn)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/different-errors/#post-5895753)
 * In case you worth something:
    You may have relation to the Custom CSS of the 
   themes, since the first code that comes out is the CSS that will inject certain
   things the theme I’m using
 *  [iztalo](https://wordpress.org/support/users/iztalo/)
 * (@iztalo)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/different-errors/#post-5896032)
 * [21-Apr-2015 00:20:21 UTC] PHP Notice: Undefined index: name in /home/mardan50/
   easybaires.com/wp-content/plugins/wp-fastest-cache/inc/css-utilities.php on line
   418
 * [21-Apr-2015 00:20:22 UTC] PHP Notice: Undefined variable: name in /home/mardan50/
   easybaires.com/wp-content/plugins/wp-fastest-cache/inc/css-utilities.php on line
   462
 *  Plugin Author [Emre Vona](https://wordpress.org/support/users/emrevona/)
 * (@emrevona)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/different-errors/#post-5896033)
 * I will investigate this issue.
 *  [mulli.bahr](https://wordpress.org/support/users/mullibahr/)
 * (@mullibahr)
 * [11 years ago](https://wordpress.org/support/topic/different-errors/#post-5896062)
 * Hello.
    I have a fix to the **name index** undefined… File: /wp-content/plugins/
   wp-fastest-cache/inc/css-utilities.php Function : public function combineCss(…)
   there is an array `$prev = array("content" => "", "value" => array(), "name" 
   => "");` I assume that by mistake it is NOT REDEINED properly in the loop. It
   should be: (around lines 426-435, just add also “name” cell to the array)
 *     ```
       }else{
       							$prev["content"] = $this->fixRules($prev["content"]);
       							$this->mergeCss($wpfc, $prev);
       							$prev = array("content" => "", "value" => array(), "name" => "");
       						}
       					}else{
       						$prev["content"] = $this->fixRules($prev["content"]);
       						$this->mergeCss($wpfc, $prev);
       						$prev = array("content" => "", "value" => array(), "name" => "");
       					}
       ```
   
 * Note the extra cell added to the array which was omitted
 *  [mulli.bahr](https://wordpress.org/support/users/mullibahr/)
 * (@mullibahr)
 * [11 years ago](https://wordpress.org/support/topic/different-errors/#post-5896063)
 * Hello
    Solution to the **name variable** undefined.
 * File: /wp-content/plugins/wp-fastest-cache/inc/css-utilities.php
    Just add the
   following line under the function declaration (around line 447)
 *     ```
       public function mergeCss($wpfc, $prev){
       		        $name ="";
       ```
   
 * It is needed since in the loop there is a reference to the $name.
 *  Plugin Author [Emre Vona](https://wordpress.org/support/users/emrevona/)
 * (@emrevona)
 * [11 years ago](https://wordpress.org/support/topic/different-errors/#post-5896065)
 * thank you so much [@mulli](https://wordpress.org/support/users/mulli/).bahr 🙂
   I fixed as you said.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Different errors’ is closed to new replies.

 * ![](https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586)
 * [WP Fastest Cache - WordPress Cache Plugin](https://wordpress.org/plugins/wp-fastest-cache/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-fastest-cache/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-fastest-cache/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-fastest-cache/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-fastest-cache/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-fastest-cache/reviews/)

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)
 * [header](https://wordpress.org/support/topic-tag/header/)
 * [header logo](https://wordpress.org/support/topic-tag/header-logo/)
 * [log](https://wordpress.org/support/topic-tag/log/)

 * 8 replies
 * 4 participants
 * Last reply from: [Emre Vona](https://wordpress.org/support/users/emrevona/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/different-errors/#post-5896065)
 * Status: resolved