fitztrev
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Having real problems configuring my .htaccessIf you copy & paste that exact line of code into the custom permalink structure on the Options>Permalinks page, it will work.
/news/070%post_id%/%postname%.html
No need to manually edit the .htaccess file.
Forum: Plugins
In reply to: Can’t see plugin after uploading files to wp-content/pluginsIt most likely has to do with read permissions on the file. Check the file permissions.
Forum: Fixing WordPress
In reply to: Can’t get rid of this white space!I’m sorry… it’s not single.php. It must be one of the other ones (probably index.php or header.php).
If you check the source code for your homepage, you’ll see:
<div id="rollingarchives" style="visibility: hidden;">....a bunch of other code....</div> <!-- #rollingarchives -->
If you can find the source of that and get rid of it, your problem will disappear.
Forum: Fixing WordPress
In reply to: Change “upload max filesize directive in php.ini”Also, check the
post_max_size
, that it’s at least the same size as what you wantupload_max_filesize
to be.Forum: Fixing WordPress
In reply to: Can’t get rid of this white space!You can delete the
rollingarchives
div from single.php of your theme.Forum: Fixing WordPress
In reply to: Change “upload max filesize directive in php.ini”Did you restart apache? The changes won’t take place until after restart.
Forum: Fixing WordPress
In reply to: I’m sure this is simple but…page redirecting?Here’s a plugin for you: https://pastebin.ca/803346
Forum: Plugins
In reply to: plugin development — cannot redeclare functionjosepo: That is indeed weird. I’m not sure of the reason myself. I rewrote it quickly with a simple class structure and it seems to be working just fine now. https://pastebin.ca/803336
P.S. adamrbrown is correct. No parentheses needed to specify the dumb_setup function.
Forum: Plugins
In reply to: Modifying Search Query URL String?Nice Search plugin by Mark Jaquith: https://txfx.net/code/wordpress/nice-search/
Forum: Plugins
In reply to: Anyone know of a user homepage plugin?WordPress Mu maybe?
Forum: Plugins
In reply to: AdsFree BrowsingIf you have it so that donor’s can register and login, then you can have ads not show for anyone who is logged in.
<?php get_currentuserinfo(); global $user_level; if ($user_level == 0) echo "<a href='https://www.advertiser.com'>Advertiser's Link</a>"; ?>
Forum: Fixing WordPress
In reply to: wp cacheworpdress, you (or your host) must run that command on your server. It’s done via the terminal in secure shell. It’s all one line and all you have to do is copy and paste and hit enter.
Forum: Plugins
In reply to: “nofollow” in postsI’m using this and it works great. Is there a way to create an array of sites that can bypass the nofollow rules? Like a whitelist?
I’ve tried coding it in myself but no luck.
Forum: Plugins
In reply to: comment author link to phpBB profileI would like to know how to do this as well. I have a similar system where this would be beneficial.