asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Crashed – Error_logYou can try repairing the database through cPanel -> phpMyAdmin, or a database plugin that has a repair function if you have one.
Forum: Everything else WordPress
In reply to: Permalink HelpIn Settings -> Permalinks you can set your own custom structure. See the codex permalinks page.
Forum: Fixing WordPress
In reply to: next previous post problemYou have the in_cat argument set to TRUE, meaning the links will cycle only to posts in the same category as the one you’re on.
Remove that argument.
Forum: Fixing WordPress
In reply to: Let anybody to register and post without going to admin panelYou’ll need a redirection plugin to redirect to homepage after logging in. Search the repository for it, there’s plenty. Peter’s Login Redirect is the popular one, I think.
Then take a look at TDO Mini Forms for posting without the back-end.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedNice, interested to see what ya’ added. Play with it all you want and I’ll pick through your code and comments to see how it works. 🙂
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedP.S. – I’m actually working backward here. My coding experience is basically a year and a half of CS courses a bunch of years ago (none in PHP), so I’m pretty much just diving in and learning/refreshing my memory as I go.
Consequently I’m actually hoping for tips and enlightenment. So don’t hesitate to tear the code apart and recommend stuff.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedWarning to anyone not following the thread. The following links to a plugin that’s only lightly tested. Use at your own risk for now.
Ok t31os, here’s the link to download the zip.
Any/all criticism, tips, etc. welcomed. The most interested part so far has actually been creating the options page. Still planning a checkbox to turn on/off the comment text, only have the variable to control it so for, haven’t coded it to the options page.
Have various other ideas bouncing around my head but let me know what ya’ think.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedI’ll have a small plugin ready later tonight. Mostly used as coding and plugin writing practice, but perhaps it’s useful as well.
Either of you willing to help me test it? I have no mobile phone to post from. The best I’ve been able to do is fake a mobile comment using a variable, but it’s not exactly real-world testing.
And t31os, if you have time I wouldn’t mind you just taking a look at it anyway. Then you can warn me of the dire security risk I’ve opened up on all of the plugin’s users. 😉
Forum: Fixing WordPress
In reply to: IE only picks up my home page Heading – nothing elseYou can’t paste directly from Word. It inserts code that makes IE go haywire. You can do one of a few things to get content from a Word file to WordPress:
1) Copy and paste the content first into notepad, then copy and paste to WordPress
2) Use the “Paste from Word” button on the write post/page wysiwyg editor
3) Paste the content into the write post panel, then switch to the HTML view and remove all the extra codeForum: Fixing WordPress
In reply to: how to make a whole page transform into a hyperlinkIn the file you just created, be sure there are NO characters or whitespace before the opening
<?phpor after the closing?>.Forum: Fixing WordPress
In reply to: Footers now Sidebars in IE and SafariI might guess it’s an unclosed tag of some sort, maybe a
<div>tag. I guess it could also be a CSS issue.What had you done to your code recently when you saw the change?
Forum: Plugins
In reply to: different sidebar widgets/banners/adsense for differnet pages?Glad it worked for you. Can also thank the Widget Logic plugin author. 🙂
Forum: Fixing WordPress
In reply to: Previous/Next Post in Category?The conditional would be
is_home()oris_front_page(), but it wouldn’t function right.By definition really, the next/previous post links are designed for a single post view, which is why the code is added to
single.php. Which means you’ll always be onsingle.phpand theis_home()conditional would never resolve to true.The problem you two are having is that whether you click to a post from the homepage or the same post from a different page, the template handling the single post view is
single.php. There’s nothing in our solutions to track where a user clicked on the post FROM, and therefore no way to condition the previous/next post links dependent upon whether they came from homepage or your custom category page.Forum: Everything else WordPress
In reply to: Internet Explorer not displaying correctlyIf you’re following along with part 2 of the article on my website, you’ll need look at the source code where the error is and use context to help determine which file it’s in, or whether it’s in the text of a post or page, in which case you’d actually go to the WordPress editor to fix it. Here’s an example:
<table><tr><td>Here at <span style=”color: #8d2b2b”>Redcon</span> we are interested in what you as the client think, about us, about the property market in South Africa, about investing or whatever else might be on your mind. Please feel free to discuss these with us by leaving a comment. We will answer every comment if they require feedback.
I’ve bolded the problem tag, which should be
< /p>(without space)
not<p/>. It looks like this erroneous tag might actually be in the text of your post. So go to the post editor, switch to HTML view, and see if you see the tag there. Fix it and move onto the next error.Forum: Everything else WordPress
In reply to: WordPress error message – URGENT help please!!The first is a typical 404 error if you have not created a favicon for your site. I believe that some browsers (Firefox et al) automatically look for the favicon and it may return a 404 if you don’t have one.
The other error appears to be a standard 404 message. I don’t really see evidence of malicious intent.
As far as why you’re getting emails about this, you may have a plugin installed that automatically notifies you of 404 errors. Check your installed plugins.