Forum Replies Created

Viewing 15 replies - 556 through 570 (of 788 total)
  • Ah, well if they keep hitting pages like the 404 and that’s just around a MB then it won’t take long at well.

    You could look at optimising that 404 page, if it’s not loading any real content then there is no need for it to be so large. I’d personally tackle that as well and then monitor how it goes.

    Take care.

    Woo is a great option too, they also have tons of themes. Often the best thing to do is experiment and try a few things first until you find the most ideal option for you.

    Take care.

    Hey again.

    As Andrew mentioned you can ask your host to work with you on this.

    Looking at your image I see that your 404 page is around 1MB in size. If your 404 is hit approximately 1024 times then you have a GB right there.

    Lots of hits there from the IP starting with 66.249.69, a check shows them for example crawl-66-249-69-204.googlebot.com so you could maybe use Googles Webmaster Tools to reduce the crawl rate:

    https://support.google.com/webmasters/answer/48620?hl=en

    Note this means the site is not indexed as quickly when you reduce the crawl rate.

    If you have the raw logs then you’re looking for groups of IPs that are causing the bulk of the load. You also want to find anything that looks abnormally large on a page load and then investigate that page.

    Also I enabled the WB_DEBUG and I found only php Notices and according to the themes author there are not important.

    Ya, notices are not errors and shouldn’t really be a problem, but they could be fixed still.

    Do you mean google analytics? I use google webmasters tools.

    Yes, I was interested to see where they emanate from. When I’ve had similar things in the past they often came from the same region and although not ideal I’d geoblock their IP if my target market wasn’t in that region. Some people warn against this as it can return false positives.

    Take care.

    Hey there.

    Hope you’re well.

    You never shared your website address so I can’t check, could you share that please?

    What occurs when you attempt to connect through incognito, or load through a totally different browser or even system?

    Are you using any kind of VPN?

    Cheers.

    Hey there.

    This kind of thing needs escalating to WordPress in the trac as a request, we’re volunteers in the forums.

    Perhaps a plugin like the following would help:

    https://ww.wp.xz.cn/plugins/wordpress-special-characters-in-usernames/

    For the trac, you might like to read the comments:

    https://core.trac.ww.wp.xz.cn/ticket/3322
    https://core.trac.ww.wp.xz.cn/ticket/13162
    https://core.trac.ww.wp.xz.cn/ticket/15248

    They’re pretty old, maybe there is more chatter since either in the forums or on the trac so it would be worth searching through further before considering opening a ticket.

    Hopefully that plugin helps.

    Take care.

    Hey there.

    You’re talking about having the functions loaded into your editor?

    If so then many code editors can do that kind of thing. I use Coda for example and this works for me. You can install a WP syntax addon:

    https://panic.com/coda/plugins.php

    Or are you asking if you locate an issue visually on a theme can you then locate the code quickly?

    If so then yeah, if you locate the issue is with a div you could search for the class/id pertaining to the div. If you use tools like Chrome Developer or FireBug this will let you easily see where the CSS comes from. They also have a number of other handy features, if you poke around YouTube there are a bunch of tutorials on these tools.

    If this isn’t what you mean then please clarify further. 🙂

    Hope this helps.

    Take care.

    Hey there.

    Could you check your access logs, what’s being hit the most to cause this load?

    Are you tracking analytics?

    Where is the traffic coming from?

    Any large images? or downloads?

    robots would only work if what it was hitting your site respected that.

    Cheers.

    Hey there,

    You didn’t mention the theme name here?

    Does it happen with plugins or just this theme?

    Is it possible the theme is resetting that with ini_set? Or it’s being reset elsewhere?

    Worth asking the author on this one.

    Also, is WP_DEBUG false in your wp-config.php?

    Cheers.

    Hey there.

    The name of the theme seems to be this premium one:

    http://themeforest.net/item/flexform-retina-responsive-multipurpose-theme/4258755

    If that’s the case then we’re unable to help here as per the forum rules:

    http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products

    You would need to contact the author of the theme for help on this one, sorry.

    Take care.

    Hey there.

    You can either make a child theme, I added links to instructions above, or you could use one of those plugins and add the CSS I provided that way. 🙂

    Take care.

    Hey there.

    Can you check your servers error_log please, could be a memory issue even if it’s a new install.

    You could also try the WP_DEBUG constant. To output the WordPress debugging information you can open your wp-config.php file and change:

    define('WP_DEBUG', false);

    To:

    define('WP_DEBUG', true);

    You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:

    define('WP_DEBUG_LOG', true);

    Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:

    define('WP_DEBUG_DISPLAY', false);

    Let me know what you find.

    Hey there.

    Don’t suppose you’re using the /mu-plugins/ folder?

    When did the issue start to occur?

    What changed at that point?

    Used any role editor plugins before?

    I tested on my install and I’m able to change roles.

    When you posted you posted you selected 3.5.2 as the version you’re using, that was over a year ago and we’re now close to 4.0.

    Probably best to start with getting up to date first and testing again.

    Take care.

    Hey there.

    You could check your servers access logs, ask your host about that.

    As for restoring them, don’t you maintain a backup of your site?

    If you don’t then really you should start. Mika made an awesome plugin I often recommend people to:

    https://ww.wp.xz.cn/plugins/join-my-multisite/

    Not exactly what you want but it will mean that when they visit the site and are registered on the network then they will get re-registered for you.

    Would that work?

    You need to look into this further though, people don’t just get removed so something occurred to change this. If you’re sure you were not hacked then you need to start looking a the plugins and themes you use along with who has access to make those kinds of changes.

    If you’re not sure about getting hacked then check your files to ensure they’re default and nothing custom was changed or uploaded. You might like to take a look at Sucuri:

    http://sitecheck.sucuri.net/

    Take care.

    Hey there.

    Have you checked the server error_log to see what the white screen outputs?

    You could also enable the WP_DEBUG. To output the WordPress debugging information you can open your wp-config.php file and change:

    define('WP_DEBUG', false);

    To:

    define('WP_DEBUG', true);

    You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:

    define('WP_DEBUG_LOG', true);

    Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:

    define('WP_DEBUG_DISPLAY', false);

    Also, have you tried uploading a fresh set of all the WP files not just the wp-login.php?

    You mentioned that you installed a new version of WP, this totally worked without issue before trying to import the data?

    Let me know what you find.

    Hey there.

    You could either give him a higher role within WordPress or you could make a custom role.

    To edit his account role go to:

    Admin –> Users

    And then edit his account to change the role.

    If you go the Role editor route then take a look at these plugins:

    http://ww.wp.xz.cn/plugins/user-role-editor/

    Or:

    http://ww.wp.xz.cn/plugins/advanced-access-manager/

    Be very careful in escalating access unless it’s absolutely needed. I don’t know the story here, but depending on what you do it could risk your data being stolen, deleted, etc.

    Hope this helps, have a great day!

Viewing 15 replies - 556 through 570 (of 788 total)