ringmaster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error Update Users & What should I do?I suggest making “TEXT” lowercase in DB schema and try upgrade again, since all other text-type fields use lowercase. Other text fields also don’t include default values.
Still, this worked fine on my upgrade.Forum: Installing WordPress
In reply to: mod_rewrite module1. This is mostly true. Google will index some pages that include query strings (that’s the stuff after the ?), but your best bet is to use “search-engine-friendly” or “non-cruft” URLs via mod_rewrite.
2. mod_rewrite is currently the best tool for this if you’re running Apache. I checked out bimmercenter.com, and from what I can see, it doesn’t seem to be loaded, but you should check yourself to be sure.
I’m going to assume that you’re self-hosting and not dealing with a managed host that could do this for you.
You’ll need to access your httpd.conf file and look for the mod_rewrite library. If you find it, it’s possible that it’s commented and that’s why it’s not running. Just erase the # from the beginning of the line.
Here’s a thread on an off-site forum that might be of use to you for getting mod_rewrite installed assuming it’s not simply disabled on your system.
After mod_rewrite is running (Netcraft for your site might help you out viewing server headers, but there’s probably a better way), you can get the configuration for mod_rewrite directly from the WordPress admin panel on the Options/Permalinks page.
This is just a quick overview of the basic steps to get mod_rewrite going. You might like to read up on the module and what it does over at the Apache site itself, because the module is quite powerful and configurable.
An alternate method of getting cruft-free URLs is only available in the bleeding-edge cvs version of WordPress. WordPress 1.3 looks like it supports PathInfo, which is a clever way to avoid using mod_rewrite entirely. You’ll need to add an ErrorDocument line to your httpd that redirects 404 errors to your WordPress index page. WordPress will figure out what to do from there using your Permalink settings.Forum: Installing WordPress
In reply to: Step 3 of install gives me no passwordIn that if statement, try changing:
$res[0]['Type']
to:
$res[0]->Type
See if you have better luck with the upgrade.Forum: Plugins
In reply to: How do you handle images?Ah, but then you won’t have access to the flickr crosspost features when Exhibit 2.0 is released… 🙂
Forum: Plugins
In reply to: EzStatic Plugin@kirby14:
Did you give up? I don’t see a “100 things” link on your page any more.
@anonymous:
It might be useful if I could see your site for myself. Creating a login and adding your site URL to your profile makes this information easy to get.Forum: Plugins
In reply to: Exhibit 1.1d Configuration – How?@pezastic:
See answer to your question here:
http://ww.wp.xz.cn/support/10/11988
@easydoesit:
1) This is most likely due to the CSS that you’re using to display the images. If you’re using the default file that comes with Exhibit, it shouldn’t stack the images vertically unless there is no space to line them up horizontally inside their container.
2) The default popup settings for Exhibit will automatically create a popup that resizes when the image is displayed.
Providing a URL to your site would go a long way toward getting help with your issues. Imagine that I am telling you how to build something out of Legos over the phone – I can’t see what you’ve done already to help you along.Forum: Plugins
In reply to: How do you handle images?@pezastic:
Open wp-content\exhibitimg\exhibit10p.php.
Search for the line that reads:
if(!$justlink)
Just before that, insert this line:
$ret = 'photo.'">';
This will make every thumbnail link point to only the original image and will generally ignore any settings regarding popups or embedded images. Give it a whirl and let me know when it’s working. 😉Forum: Fixing WordPress
In reply to: 1.3 wp-header/wp-footer/alternate templatesEr. Wait a minute. The header and footer aren’t included when an alternate page is used. So to do what I’ve described above, I would have to create a search.php page, and it would have to have footer-like code in it to display a sidebar. Correct?
I guess if I want my sidebars on all my pages to look the same, this works with an include, which is pretty simple.
Clearly, this “advanced” feature needs documentation.Forum: Fixing WordPress
In reply to: 1.3 wp-header/wp-footer/alternate templatesBut if the point of my having a separate search page is to provide the same old search results with a different menu on the sidebar than what would normally appear, this does nothing for me, right?
Actually, it would seem to make things more difficult, since I wouldn’t have to create a search.php file, but I’d have to put all my own conditionals to detect a search page (ok, just one, but still) into footer.php.Forum: Plugins
In reply to: Exhibit Permission ProblemsBeware: My Linux permission knowledge is limited to getting my own stuff to work, and I’m not familiar with your setup…
It looks like your admin panel is creating directories with a user that PHP isn’t in the same group as. You might not need to have chmod settings in Exhibit. Did you try setting them to 0?Forum: Plugins
In reply to: EzStatic PluginIt’s because you changed your “menu” bar to “sidebar”. Change:
<div id="sidebar">
To:
<div id="menu">
Then things might start working. On the other hand, if you don’t make this change, then they certainly won’t work. 🙂Forum: Plugins
In reply to: Exhibit 1.1d Configuration – How?Exhibit is designed to work with the thumbnail file that it (or you) creates, and with an image that will fit reasonably in a browser. There are settings that allow you to resample and save the “large” file when it is uploaded, but there is no option to keep three files on the server.
There may be a way to write client-side script that would resize an image that is too large to be displayed in a particular browser, but this script is not included in Exhibit.Forum: Plugins
In reply to: Adhesive: A new sticky WP plugin@elmsblog:
You should try to execute that query in phpMyAdmin and see if it runs. I’m going to bet that it does not. The only things I can think of are that you don’t have create temporary (this is different than simply “create”) permissions on your database, or that you don’t have permission to access the database with that user at all (which isn’t likely if WP is working otherwise).
@manne:
The tricky part is if it would normally appear on the main page when you post it, then it will be sticky on the main page, too. It will be sticky on whatever page it would appear if it was a regular post.
@wairoanz:
You’d have to add a few things to the source. You’d need to detect if those pages (category or date) were requested, and skip the sticky stuff if they were.
Looking at my source (which isn’t necessarily the same as yours), I see a line near the top of the function adhesive_head() that reads:
if($single || isset($_REQUEST['m'])) return;
Presumably, that would prevent Adhesive from applying to some date archives. (I’ve not tested this, since I don’t use sticky posts at all. Crazy, huh?) If you add additional criteria to that statement, you can prevent Adhesive from working on other pages. So, like…
if($single || isset($_REQUEST['m']) || $cat='all' || empty($cat)) return;
…might get you what you want (completely untested, mind you).Forum: Plugins
In reply to: Exhibit 1.0c Photo Gallery PluginForum: Plugins
In reply to: WordPress Blacklist Comment SPAM Filteration SysteTramadol is doing some new and crafty things. They’re scanning your post for keywords, dipping into their own database of related quotations, and posting a comment that may seem at first to be related to your content.
Also, they’re looking at the comment source rather than using a simple automated script for posting comments, since I changed the name of the page to which comments are posted, and they still got through.
Fortunately, all comments are moderated on my site after 14 days, so nothing went online. Still, I got 12 requests for approval. It’s time for something new.