Cypher
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help! to run wp-gallery2.php in wp page!My guess is that it hates being “included” in the context of WP and it wants to be called seperately.
Your best bet would probably be to modify the template and make a like to the wp-gallery2.php file.
Regards
Forum: Fixing WordPress
In reply to: Help! to run wp-gallery2.php in wp page!Try using:
<phpcode>
<?php include('wp-gallery2.php'); ?>
</phpcode>Regards
Forum: Fixing WordPress
In reply to: Permalinks won’t work on local PCI use Linux as my primary machine, but sometimes I use a Windows machine.
I finally decided that I would, regardless of how long it took, track down the issue and make it work. Mod_Rewrite should have no reason not to work in Windows, so I figured it was some flag..
Well, I finally got it work.
For starters. I’m running Apache 2 installed in “/program files/Apache Group/Apache2”.
Edit the file /conf/httpd.conf and enable mod_rewrite if it hasn’t been by uncommenting the LoadModule rewrite_module modules/mod_rewrite.so and then most importantly go to the <DocumentRoot> definition and you will see a accompanying <Directory> defintion. Set the AllowOverride flag there to all using AllowOverride All.
And bingo, I had pretty URL’s working..
Regards
Forum: Themes and Templates
In reply to: default theme: where can i remove the text?Sebastian,
Ahh..I misunderstood..:) To move the header text..try adding;
#headerimg h1 {
margin-left: <your size>;
}to your style.css and see if that does anything for you.
Regards
Forum: Themes and Templates
In reply to: default theme: where can i remove the text?1. Edit the file /wp-content/themes/default/header.php and go to line #57. That should be a call to bloginfo(‘name’) there. Remove that line and there goes your header text.
2. Edit the file /wp-content/themes/default/style.css and look at the #content{} class. Play around with adding “margin-left:” to it and see what happens.
Regards
Forum: Fixing WordPress
In reply to: Comments won’t show on pageWhat happens if you go to Manage->Awaiting Moderation and then select Approve and click Moderate Comments, do the comments then show up properly??
Regards
Forum: Fixing WordPress
In reply to: Sending mail when a user post a commentIn the Admin section Options->Discussion, check E-Mail me Whenever anyone posts a comment that will send an email to the admin everytime a comment is made.
Regards
Forum: Fixing WordPress
In reply to: Don’t send typo fixes to RSS feedsWordPress doesn’t send anything specifically to the feed. When you pull up the /feed URL on your website, the software runs and presents the LATEST copy of your post. Your RSS Reader software keeps a copy of the current post and if the LATEST copy is newer, it displays the change approptiately.
This is not really something you can control.
Regards
Forum: Fixing WordPress
In reply to: More RSS Feed QuestionsWhat’s in a name afterall? The output from the /feed url or direct access to wp-rss2.php is a XML file that is your feed.
I have no problems using a RSS reader with my feed, what sort of problems is Yahoo and MSN having?
Regards
Forum: Fixing WordPress
In reply to: META on SIDEBAR. DO I NEED IT? What’s that for?Nope you don’t NEED it. You can safely remove it.
Regards
Forum: Everything else WordPress
In reply to: Doofus coding questionModify the TOPNAV in your style.css file and move it lower.
Regards
Forum: Plugins
In reply to: RunPHP – is there a specific way to write a function when using that plugin<?php
function hello() {
echo "Hello";
}
function world() {
echo "World";
}
hello();
world();
echo "<br/>Goodbye<br/>";
?>Within a post worked fine. All the functions are self-contained in that post. If you are calling functions externally, you’d presumably have to do some “include()”‘s…
Regards
Forum: Fixing WordPress
In reply to: Permalinks won’t work on local PCI’ve always had problems with permalinks on my local Windows installation of Apache, but things work great on my Linux installation. I also have mod_rewrite in both instances, it’d be good to know what the problem is.
Regards
Forum: Fixing WordPress
In reply to: On the verge of losing my job my first time blogging.HELP.You can indeed edit entires on YOUR blog. Some blogs have implemented the edit feature of comments, but usually only for a certain time frame.
Since this is someone else’s blog, your only hope is to wait for the owner to acquiese to your request to have the comment removed.
Regards
Forum: Fixing WordPress
In reply to: User Privelidges?A quick explanation can be found here
It would seem that the user levels aren’t as granular as one might expect.
Regards