nluckett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Writing Posts In FirefoxYes, youre right. Still a little disorienting, but I can just type away as normal. Its just strange not to have that blinking cursor and see exactly where you are.
Forum: Plugins
In reply to: Removing Images from RSS Feed?Thanks Kafkaesqui, that worked wonderfully!
Oh, and in case you need to see the info they gave in the readme on how to do this (which isnt clear enough to me):
= How do I make certain parts of the page stay dynamic? =
There are two ways to do this, you can have functions that say dynamic or include entire other files. To have a dynamic function in the cached PHP page use this syntax around the function:
<!--mfunc function_name('parameter', 'another_parameter') -->
<?php function_name('parameter', 'another_parameter') ?>
<!--/mfunc-->The HTML comments around the mirrored PHP allow it to be executed in the static page. To include another file try this:
<!--mclude file.php-->
<?php include_once(ABSPATH . 'file.php'); ?>
<!--/mclude-->Due to recent troubles Ive been having with my server, I decided to install WP-Cache. It seems to be doing the trick! Thank god.
However, I cant seem to figure out how to get dynamic functions to work. Im sure Im really just missing something easy, but Id love it someone could point it out to me. Here is the code (my search function) that Im trying to keep dynamic. Im calling it from within my sidebar.php file.
<form style="padding: 0px; margin-top: 0px; margin-bottom: 0px;"
id="searchform" method="get" action="<?php bloginfo(‘url’);
?>"> <input type="text" name="s" id="s"
size="20" onfocus="this.value=”" value="<?php if
(!$s) { $s = " -Search 4cr-"; } echo $s; ?>" /></form>Forum: Fixing WordPress
In reply to: Session Information Going into PHP Error LogIm running into the same problem. Everytime I have a GET command from HTTP 1.1 there is an error generated. Any ideas why this is happening?
Is there something I should be calling or defining in the header of my template…?
Forum: Fixing WordPress
In reply to: max_questions database errorJust checking back to see if anyone had any other ideas about this problem. I tried using a more efficient pagination method and took the intensive smart archives off, but Im still getting the problem.
Forum: Fixing WordPress
In reply to: max_questions database errorOk, one more. This one shows the output for the WP standard page navigation
<?php posts_nav_link(‘ · ‘, ‘previous page’, ‘next page’); ?>
https://www.4colorrebellion.com/output4.htm
More queries, but not as bad as the original wp_paginate I was using.
Forum: Fixing WordPress
In reply to: max_questions database errorWow. Youre right, thats a lot of stuff. Thanks podz.
So, I guess that looks like the main culprit, huh? Anything else I should check?
Here is the output from the smart archives page also. Holy…might want to disable this also.
https://www.4colorrebellion.com/output2.htm
And finally, this is the lesterchan pagenavi plugin. Seems cleaner than the wp_paginate one:
Forum: Fixing WordPress
In reply to: max_questions database errorJust wanted to let people know that the plugin is running. Just view my page source and its at the very bottom under array.
Here is the output with Page naviagation turned on and off:
https://www.4colorrebellion.com/output.htm
Looking at that though, it doesnt seem like the paginate function is causing any problems…only one more query. Hmmm
Forum: Fixing WordPress
In reply to: max_questions database errorUsually I will get this error when I go to edit a post. All of a sudden the Loop is gone and this error appears above my header image.
And yes, I am using the paginate plugin…is that a problem? It sounds like it might be…according the ouput from that plugin.
Thanks for the help. Any other ideas of what might be causing this? Paginate might be the culprit, but I want to cover my bases.
Do you guys think having the runPHP plugin could be an issue? I was using it to run smart_archives on a perma page.
Forum: Themes and Templates
In reply to: Smilie SpacingAha! Thank you.
Forum: Themes and Templates
In reply to: Smilie SpacingYeah, I dropped them all to 10X10 and it fixed it a little, but they are still set so high. Its gotta be something I did though, cuz Ive seen smilies that sit right on the baseline.
Forum: Fixing WordPress
In reply to: RSS Feed not workingthanks! I think this will work
Forum: Fixing WordPress
In reply to: Back to Top? NoooooThanks all
Forum: Fixing WordPress
In reply to: Back to Top? NoooooHmm, youre right. I guess it just doesnt work on Firefox. Any ideas on how to get it working? I hardly ever use IE.