Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of 12582912 bytes exhaustedWhere do you host the site? If you’re on shared hosting you may have limits enforced by your hosts that are out of your control.
Forum: Fixing WordPress
In reply to: Title showing BEFORE href?Out of interest, can you link to some reference material outlining the importance of tag attribute order. As a matter of course I would always apply the href first but I’m not too sure it’s that relevant.
Forum: Fixing WordPress
In reply to: $user_id can see this text.Where are you assigning the value of $user_id?
Try:
<?php $user_id = get_current_user_id(); ?> <?php if ( $user_id == 3 ) { ?> <p>This text is only visible to user 3.</p> <?php } ?>Forum: Fixing WordPress
In reply to: Unable to add new UsersThis sounds like you’ve somehow lost admin rights. Have you installed a membership plugin of any sort?
Actually, looking at your site, have you logged in as a regular user and not the admin user?
Forum: Fixing WordPress
In reply to: Parse Error in functions.phpWhat tool are you using to edit the file?
Forum: Fixing WordPress
In reply to: Login dont workingI see a login page:
Forum: Fixing WordPress
In reply to: CSF Firewall and WordPress UpdateWell it seems clear that CSF is stopping the updates for some reason. I’m unfamiliar with configuring that tool, I use iptables directly.
Maybe ask in the CSF forums (via the link I provided above).
Forum: Fixing WordPress
In reply to: How to capitalize Archive?If you want everything transformed to uppercase in your widgets you could target them with CSS, it all depends on what your theme uses.
Something like:
.widget { text-transform: uppercase; }Posted at the same time as the comment above 🙂
Forum: Fixing WordPress
In reply to: CSF Firewall and WordPress UpdateI’ve made the assumption that CSF is ConfigServer Security and Firewall (CSF)
Blocking things is what firewalls do, so we need to know what it’s blocked in this instance.
Forum: Fixing WordPress
In reply to: Parse Error in functions.phpThere’s a blank line at the end of the file. See if removing that clears your problem. Alternatively, although not strictly required, try adding the closing
?>at the very endForum: Fixing WordPress
In reply to: Remove Text from Source CodeWhat’s the theme and from where did you download it?
Forum: Fixing WordPress
In reply to: How to log in to wordpressOK, well something is wrong inside your hosting setup. Wherever you installed WordPress, it isn’t reachable by your URL. Check your paths in CPanel or speak with your hosts.
Forum: Fixing WordPress
In reply to: CSF Firewall and WordPress UpdateCan you say what CSF is blocking on your server?
Forum: Fixing WordPress
In reply to: News page has changed to home pageDid you recently have a theme update? It’s possible that any custom work done on the theme was overwritten.
Forum: Fixing WordPress
In reply to: Internal Server ErrorYour site seems to be working OK, on the front end at least.
If you’re hitting occasional server error messages, the very first place to check is your log files. You may have to speak to GoDaddy about how you view them but by their very nature, log files are there to log things like errors. Without viewing them, you’re wandering around in the dark.