Title: Leftdesign's Replies | WordPress.org

---

# Leftdesign

  [  ](https://wordpress.org/support/users/leftdesign/)

 *   [Profile](https://wordpress.org/support/users/leftdesign/)
 *   [Topics Started](https://wordpress.org/support/users/leftdesign/topics/)
 *   [Replies Created](https://wordpress.org/support/users/leftdesign/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/leftdesign/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/leftdesign/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/leftdesign/engagements/)
 *   [Favorites](https://wordpress.org/support/users/leftdesign/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share Buttons by Supsystic] unwanted Share0Share1](https://wordpress.org/support/topic/unwanted-share0share1/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/unwanted-share0share1/#post-6803317)
 * thankyou, have done so.
 * for others with this issue, at the moment i also am unable to reproduce the bug,
   will be monitoring closely for a repeat occurrence but considering this resolved
   in the meantime.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] submit button css override on 1 page out of many](https://wordpress.org/support/topic/submit-button-css-override-on-1-page-out-of-many/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/submit-button-css-override-on-1-page-out-of-many/#post-5459685)
 * thank you very much Miyoshi sensei,
 * the term ancestor node was new to me so thank you very much for that alone. my
   theme has an option to enter custom css into a backend field without using a 
   child theme. i use this field for my overrides, i entered this so far:
 *     ```
       .page-id-4983 input[type="submit"] {
           background-color: #094e91;
           background-image: -moz-linear-gradient(center top , #000000, #094e91);
           background-image: -webkit-linear-gradient(top, #000000, #094e91);
           background-image: -ms-linear-gradient(top, #000000, #094e91)
           background-image: -o-linear-gradient(top, #000000, #094e91)
           background-image: linear-gradient(top, #000000, #094e91)
           border-color: #003d80;
           color: #b3f8ff;
           text-shadow: 0 -1px rgba(0, 0, 0, 0.33);
       }
       ```
   
 * this has given me control over the button colors in FF and Chrome but not in 
   IE, and ideas on what i’m doing wrong?
 * with regards,
 * Oliver
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [multisite subdomain redirects to homepage](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/#post-5278480)
 * i fixed it by switching to subfolders, which worked with only a few adjustments.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [multisite subdomain redirects to homepage](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/#post-5278447)
 * i have desperately been reading and trying to find out anything i can try to 
   fix this, as an experiment i commented out this part of my htaccess:
 *     ```
       RewriteCond %{HTTP_HOST} !^(www\.)?evision-software\.com$ [NC]
       RewriteRule ^(.*)$ http://www.evision-software.com/$1 [L,R=301]
       ```
   
 * when i did this and tried viewing qp.evision-software.nl i nolonger popped straight
   to the mainsite homepage but instead went to:
 * [http://www.evision-software.com/wp-signup.php?new=www.evision-software.nl](http://www.evision-software.com/wp-signup.php?new=www.evision-software.nl)
 * where (probably partly because all my plugins are still on?) the line
 * “Greetings Site Administrator! You are currently allowing “none” registrations.
   To change or disable registration go to your Options page.”
 * showed up in the middle of a slightly broken homepage. i have since changed it
   back but i’m hoping this new symptom may help clarify what the problem and hopefully
   the solution is.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [multisite subdomain redirects to homepage](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/#post-5278441)
 * but when i check that same site for qp.evision-software**.nl** which is what 
   it’s currently set to it does show up?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [multisite subdomain redirects to homepage](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/#post-5278326)
 * here’s just the multisite part:
 *     ```
       define( 'WP_ALLOW_MULTISITE', true );
       define('MULTISITE', true);
       define('SUBDOMAIN_INSTALL', true);
       define('DOMAIN_CURRENT_SITE', 'www.evision-software.com');
       define('PATH_CURRENT_SITE', '/');
       define('SITE_ID_CURRENT_SITE', 1);
       define('BLOG_ID_CURRENT_SITE', 1);
       define( 'PB_BACKUPBUDDY_MULTISITE_EXPERIMENT', true );
       ```
   
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [multisite subdomain redirects to homepage](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-subdomain-redirects-to-homepage/#post-5278323)
 * sorry about that, should i just post the relevant portion? i’ve seen that elsewhere?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [502 gateway errors and dedicated server crashes](https://wordpress.org/support/topic/502-gateway-errors-and-dedicated-server-crashes/)
 *  Thread Starter [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/502-gateway-errors-and-dedicated-server-crashes/#post-3872625)
 * update:
 * after some digging i decided to do a very basic thing and have a look at this
   cgi wrapper these errors are on about and from what i can tell through logging
   in (with hidden folders showing) the folder ‘cgi wrapper’:
 *  /var/www/cgi-bin/cgi_wrapper/cgi_wrapper
 * does not exist on the server?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] Monthly backups works every day](https://wordpress.org/support/topic/monthly-backups-works-every-day/)
 *  [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/monthly-backups-works-every-day/#post-3563549)
 * well that does it…apparantly, was the plugin not only doing daily backups instead
   of monthly backups…it was also not deleting any backups even though i had it 
   set to store no more than 5 on the server.
 * gave me a pretty big scare when i suddenly started getting internal server errors
   and was unable to load the site because the server was full.
 * never using this plugin again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] Monthly backups works every day](https://wordpress.org/support/topic/monthly-backups-works-every-day/)
 *  [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [13 years ago](https://wordpress.org/support/topic/monthly-backups-works-every-day/#post-3563547)
 * Issue not resolved yet and i just noticed the same issue was simply marked as
   resolved in another thread…i’m really holding out for a solution here because
   i love everything else about this plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] Set to monthly but backs up every day](https://wordpress.org/support/topic/set-to-monthly-but-backs-up-every-day/)
 *  [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [13 years ago](https://wordpress.org/support/topic/set-to-monthly-but-backs-up-every-day/#post-3246038)
 * Not resolved, any progress?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] Monthly backups works every day](https://wordpress.org/support/topic/monthly-backups-works-every-day/)
 *  [Leftdesign](https://wordpress.org/support/users/leftdesign/)
 * (@leftdesign)
 * [13 years ago](https://wordpress.org/support/topic/monthly-backups-works-every-day/#post-3563539)
 * Having the same issue myself. Have already de- and re-activated the plugin a 
   few times to no avail.
 * Any word on a solution?

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