Modifiedcontent
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalink structure not updatingI have the same problem. I have WordPress installed in a /blog folder. Including WP posts in the index.php at the root works fine.
But then when I turn on Permalinks, I get ‘Sorry, no posts matched your criteria’ on the homepage.
Is there an “official” solution by now?
Forum: Fixing WordPress
In reply to: WP2.5 problem with have_posts functionI have the same problem. I have WordPress installed in a /blog folder. Including WP posts in the index.php at the root works fine.
But then when I turn on Permalinks, I get ‘Sorry, no posts matched your criteria’ on the homepage.
I see a lot of suggested fixes in this thread, but they all look very messy. Is there an “official” solution?
Forum: Fixing WordPress
In reply to: calling wordpress from outsideI think I have the same problem. I have WordPress installed in a /blog folder. Including WP posts in the index.php at the root works fine.
But then when I turn on Permalinks, I get ‘Sorry, no posts matched your criteria’ on the homepage.
What’s going on?
Forum: Fixing WordPress
In reply to: Adding video with object embedAny progress on this? Has it been fixed in the latest version?
Forum: Plugins
In reply to: Use PunBB registration for commentsAnyone?
Forum: Fixing WordPress
In reply to: Use WP authentication on outside pageAnyone?
Forum: Plugins
In reply to: Looking for Video Gallery PluginI’m also looking for a video gallery THAT’S NOT A YOUTUBE GALLERY (sorry for shouting, but it’s frustrating).
I need a smarter way to organize and display my own .flv videos, that are stored on my own (hosted) server.
I don’t need complicated encoding on upload build-in. I encode the files myself.
I just need a CMS that stores data about uploaded videos in a MySQL table and makes search and different views of the videos possible.
Does such a script exist, within or outside WordPress’ realm?
Would it be possible to customize a photo gallery script to do this?
Are there file type agnostic “media galleries” that would work?
Forum: Fixing WordPress
In reply to: Adding video with object embedccoupe, there are some helpful things in the editor. It’s a bit silly I have to throw out the child with the bath water. It would be nice if there was a way to just isolate a block of code from the editor’s clean-up:
<leave this></leave this>
Is that impossible to do? As a plugin perhaps?
Forum: Fixing WordPress
In reply to: Getting rid of the ‘Blogroll’ textI can’t figure this out either, but apparently it’s obvious for people who know php.
Forum: Fixing WordPress
In reply to: Adding video with object embedThis crap is still driving me mad. The editor messes up the code whatever variation I use. All available plugins seem to be overcomplicated “media editors” or only work for YouTube etc. Any other suggestions?
BTW, Flowplayer is just a flash player. I have a simple but effective flash player, that’s not the problem. The problem is that WordPress keeps screwing up the object tags.
Forum: Fixing WordPress
In reply to: How to remove “blogroll” text above blogrolllist.I’m struggling to get rid of “BLOGROLL” as well.
And I’d like to show the links not with list item tags, but just a line break behind each link.
I don’t know PHP, so I understand very little of this stuff. I understand you can do all kinds of interesting things within (‘arguments’), but I just want to remove BLOGROLL etc.
Do I really need lots of code for that? Can’t I just edit some html in another file?
This sounds like what I need:
title_li
(string) Text for the heading of the Page list. Defaults to ‘__(‘Bookmarks’)’, which displays “Bookmarks” (the __(”) is used for localization purposes). Only used with categorize set to 0 (else the category names will be used instead). If passed a null or empty value (”), no heading is displayed, and the list will not be wrapped with- ,
tags.
But I have no clue what to do with it and the “examples” only add to the confusion.
Forum: Fixing WordPress
In reply to: Lightbox plugin doesn’t work on external homepageFixed it by adding this to the outside index.php:
<script type=”text/javascript”> lb_path = “blog/wp-content/plugins/lightbox/”; </script>
<link rel=”stylesheet” href=”blog/wp-content/plugins/lightbox/lightbox.css” type=”text/css” media=”screen” />
<script type=”text/javascript” src=”blog/wp-content/plugins/lightbox/prototype.js”></script>
<script type=”text/javascript” src=”blog/wp-content/plugins/lightbox/scriptaculous.js?load=effects”></script>
<script type=”text/javascript” src=”blog/wp-content/plugins/lightbox/lightbox.js”></script>Is there a cleaner way to do it? Perhaps some php include?
Forum: Installing WordPress
In reply to: Limit of posts per page and Next pageThe “previous/next posts” links don’t appear on my site. I’ve probably removed the necessary line of code at some point.
What’s the line and where should I put it?
Forum: Fixing WordPress
In reply to: Adding video with object embedLast comment: The editor keeps moving this code outside the <object> tag. It’s probably very compliant with something, but still annoying as hell:
<param name="movie" value="http://website.com/video/flvplayer.swf?file=http://website.com/video/vids/movie.flv&autoStart=false;"></param> <param name="wmode" value="transparent"></param>Forum: Fixing WordPress
In reply to: Adding video with object embedThanks for the Flowplayer suggestion. Looks interesting.
I’ve tried hthth’s markup, replacing the youtube link with the long local url including the player. And it works in both Firefox and IE.
Thanks!!