WEB11
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to force a 404 page for invalid links?whooami,
Thanks for the info I will look into it.
Forum: Fixing WordPress
In reply to: How to force a 404 page for invalid links?There is no such plugin for /? links, you can get a custom one made if you want.
Just because you don’t know how to do it, it doesn’t mean it can’t be done. That is why I refrain from replying to posts with questions I cannot answer.
All things considered, it should be to your advantage, na!
Not when I have hundereds of cached pages on google and other search engines with stuff like /?Free_iPods /?Free_Movies /?Free_Pr0n etc. Read my original post.
Forum: Fixing WordPress
In reply to: How to force a 404 page for invalid links?Did you even read the post??? because if you did you would understand that the problem is that wordpress will always display a page with or without the plugin. I need a solution to force 404 pages for links that start with the url followed by /?.
Here is a couple of exemples:
https://www.pranavrastogi.com/?invalid_link will still display a page
https://www.pranavrastogi.com/invalid_link will display a 404
Forum: Fixing WordPress
In reply to: How to force a 404 page for invalid links?Smart 404 does the opposite of what I want to achieve. I want to force 404 pages and not redirect to another suggested page.
Forum: Plugins
In reply to: [plugin MM Forms] vertically aligning input fieldsIf you are talking about the radio buttons labels being inverted this is what I did to fix it:
In mm-forms.php I replaced:
if (preg_grep('%^label[_-]?first$%', $options)) { // put label first, input last $item = '<span class="mmf-list-item-label">' . $value . '</span> '; $item .= '<input type="' . $input_type . '" name="' . $name . ($multiple ? '[]' : '') . '" value="' . attribute_escape($value) . '"' . $checked . $onclick . ' />'; } else { $item = '<input type="' . $input_type . '" name="' . $name . ($multiple ? '[]' : '') . '" value="' . attribute_escape($value) . '"' . $checked . $onclick . ' />'; $item .= ' <span class="mmf-list-item-label">' . $value . '</span>'; }
with
if (preg_grep('%^label[_-]?first$%', $options)) { // put label first, input last $item = '<span class="mmf-list-item-label">' . $value . '</span> '; $item .= '<input type="' . $input_type . '" name="' . $name . ($multiple ? '[]' : '') . '" value="' . attribute_escape($value) . '"' . $checked . $onclick . ' />'; } else { $item = '<span class="mmf-list-item-label">' . $value . '</span> '; $item .= '<input type="' . $input_type . '" name="' . $name . ($multiple ? '[]' : '') . '" value="' . attribute_escape($value) . '"' . $checked . $onclick . ' />'; }
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Text area max length?I found what the problem was on mine. Check your CSS style sheet for overflow settings. Mine was .post p soon as I deleted the overflow line from it I could set the size again using html.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Text area max length?Same problem here, the text area is too long and breaks under the sidebar on firefox. It shows up ok on internet explorer.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Out of memory when uploadinghttpd.conf – SetEnv RLIMIT_AS 128000000
where exactly was that changed?
Forum: Plugins
In reply to: [Plugin: Codestyling Localization] Killer App for clients like PoEdit?This plugin rocks.
webbhotell, that link is password protected.
I figured it out on my own:
/wp-content/plugins/cforms/cforms.php
line 846, change it from:
$content .= $ntt . '<p class="linklove" id="ll'. $no .'"><a href="https://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>';
to:
$content .= $ntt . ' ';
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] HTTP ERROR 412 while uploading photosI am having a smilar problem. Can you please post your entire .htacess file here and version of php? I managed to screw mine up and I don’t have a backup.
ThanksForum: Fixing WordPress
In reply to: [Plugin: AJAX Login] al_template.php for wordpress 2.7Thanks for sharing. This part is what I was looking for:
<li> <a href="<?php echo wp_logout_url('/wp-login.php?action=logout&redirect_to=' . $_SERVER['REQUEST_URI']); ?>" title="Log out">Log out</a> </li>
Forum: Plugins
In reply to: [Plugin: Bind user to category] Updated for 2.7?rockwell08,
Did you really get this to work on 2.7?
And if so, can you please share?Thanks
Forum: Fixing WordPress
In reply to: Assign categories to users?On my installation the user/author still sees all categories when they write a new post
Then how does it work great? Because that is the problem I found with it. At least the other one actually works, but you are right, as I mentioned before there is a bug.
Forum: Plugins
In reply to: Restricting which cats and pages a user sees on dashboarduser-cats_manager currently has a bug that will display a 404 error on category pages to users that are logged out.