asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What BS image upload fixesIf anything, you should upgrade just for security purposes.
Forum: Fixing WordPress
In reply to: Unable to switch off post revisionsHave you actually browsed the wp_posts table and seen revisions still being generated in your database after adding that code to
wp-config.php?If I get a chance this week I’ll disable my revision control plugin and try adding that line to my
wp-config.phpto see if it works for me.Forum: Plugins
In reply to: New plugin: VVVI – visually integrates apps (tried phpbb & mediawiki)This seems very promising for any who need this functionality. I’ll have to check it out next week.
Thanks for the work. π
Forum: Fixing WordPress
In reply to: Unable to switch off post revisionsCouple of options and some information on turning off WordPress post and page revisions.
If you’re intent on editing a core file it should be
define('WP_POST_REVISIONS', false);. Was that how you defined it?Personally, I use the plugin option.
Forum: Fixing WordPress
In reply to: N dash entity –Maybe try a different code highlighting plugin? It may be that Highlight Source Pro doesn’t property handle the decrement operator.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedHaven’t actually installed it yet, just opened it in my code editor and spent some time looking at the functions. I hadn’t even looked at our plugins in over a week. Been too busy.
But I’ll be trying it out this weekend.
Forum: Fixing WordPress
In reply to: N dash entity –Do you use a plugin to display code? If not, doing so might resolve this issue. Check the plugin database, there are quite a few. WP-Syntax comes to mind.
Forum: Fixing WordPress
In reply to: define post plugins positions on pageUse the template tags offered with the plugins to place them within your theme files in whatever order you want. Check the plugin documentation to find out what the template tags are.
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedWell, something like
post_agent. Except that doesn’t seem to exist. On the comment side of things, WordPress stores the user agent that was used when the comment was published (obviously, since you and I have been working with this).Buuuuuut, I can’t find anything similar for a post. Obviously we can grab the user agent of a user, but I just figured if we had a comment_agent we’d have a post_agent or something similar.
Otherwise I’m stuck needing to write a function(s) that detects an author’s user_agent at the time of post publish and stores that information in connection with the post, right?
P.S. – Started looking at your plugin code. It’s really a pretty interesting concept, though some of it is way over my head yet. Still picking through it, though. π
Forum: Requests and Feedback
In reply to: Visitor Registration, then loginAre you literally looking for a popup login/registration window that pops up on top of your site?
Forum: Fixing WordPress
In reply to: Automatically adding text to comment after comment is submittedFinally getting a chance to pick this back up. Hey t31os (or anyone else reading)…
So we can grab the user agent a comment was made from with $comment->comment_agent.
BUT, I don’t see anything similar for a post. Am I missing it?
Forum: Requests and Feedback
In reply to: BUG: WordPress page goes blank if more than 20 captionsDid you try officially submitting it as a bug per the instructions here?
Forum: Developing with WordPress
In reply to: another “can WordPress do this?” threadThe short answer is yes, it can do it. WordPress is malleable enough to do almost anything.
The long answer is yes, BUT you won’t get anywhere near your goal with out-of-the-box functionality. You’d need a sizeable set of plugins and code modification.
Without giving it much thought, here’s some brainstorming on ideas:
Each user upload would be attached to a post, post could have short description of the upload. Post could use categories, tags, and custom fields, all of which are searchable either natively, with existing or custom plugins.
Utilize WP’s built-in roles and a/some capability management plugins to have tiered user groups. Simple contributor could be free account with only viewing and commenting priveleges. Author-level user could be by paid membership, have their own author page (via WordPress built-in author template functionality). Could be given upload priveleges (no idea how you’d restrict this, I’ve not worked with user uploads before).
Since each upload is attached to a post, could use GD Star Rating plugin as your content review mechanism, wherein users could rate the upload via the plugin rating function and site management could provide a review of the content via the plugin’s review function.
I don’t know how/if you’d need to set up custom search functions to search through tags/categories/custom fields/etc.
Blog and space for advertising already taken care of by WP native functionality and a well-chosen theme or coded custom theme with ad space.
I don’t know how all of that would work, but those are the ideas that were swimming in my head. Always a fun exercise. π
Forum: Themes and Templates
In reply to: query_posts not excluding categoryHmm. I don’t think you’re using
query_posts()correctly. Take a look at the codex page for it.I think what you’re looking for is:
<?php query_posts("cat=-3"); ?>I don’t know why you were using
-10in there.Forum: Plugins
In reply to: Could I setup my own βwordpress.com?β β¦ for none profit mini blogsI’m not sure what you mean by “automating” it, but you can check out a few things:
WordPress MU – This is what WordPress.com is built on, and you can set up your own self-hosted installation. Be aware, installation and setup are not as…beginner friendly…as regular WordPress.org.
Blogs.mu – This is a managed multiblog solution built on WordPress MU. I wrote up a short review of the free and paid features. Keep in mind the review is from the perspective of someone who runs a WordPress site, so while someone who’s never used WordPress might be wowed by Blogs.mu, I was relatively underwhelmed with the free features, and would feel held back by the restrictions even on the paid features. But it could be just what you need.