webjunk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change link in a post titlePost the header.php into Pastbin
Forum: Fixing WordPress
In reply to: change link in a post titledo you have a header.php
Forum: Plugins
In reply to: [WP PHPList] [Plugin: WP PHPList] Thank you so mchYou really want to upgrade that install of PHPList. The version you have old and there are some important fixes including with security.
Also if you want to use more than just text fields and the 2 attribute limit try my PHPList Plugin here:Forum: Plugins
In reply to: Sitemap errorForum: Installing WordPress
In reply to: Mysql installation problem and errorDon’t even connect so does not tell me anything.
Try:
http://codex.wordpress.org/Installing_WordPress#Common_Installation_ProblemsWould also check your wp-config.php carefully. Check for an error.log in the WP directory.
Otherwise might need some other details. Like OS? Apache or IIS?
Was this immediatly after Install or have any plugins or themes been added?Forum: Installing WordPress
In reply to: Won't connect to the databaseDownload this script I have, Open it and place it on your server where it is web accessible. Try your settings and if you connect you have it correct. Doesn’t do anything but test connectivity but will let you know if the settings are correct.
Forum: Installing WordPress
In reply to: Mysql installation problem and errorHave a link to the site?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Assigning a numberhttp://ideasilo.wordpress.com/2009/05/31/contact-form-7-1-10/
Just use a javascript counter
Forum: Fixing WordPress
In reply to: Page created in PHP not viewable by publicIs this a template? How does this fit into WOrdpress?
Forum: Fixing WordPress
In reply to: How to create private WP siteThere’s also a few plugins (One I think is called private only) that can make the blog pages private too.
Try the default theme.
Also if you have caching enabled, try disabling. Had that problem on a site a while back.
And while you disabled manually, last try renaming the plugins directory (just for a minute)
Forum: Fixing WordPress
In reply to: site hackedForum: Fixing WordPress
In reply to: Unable to load Home pageOr you could either delete the specific plugin directory. Or remove all the permissions for that plugin directory.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Assigning a numberDon’t think from the form itself but could probably do some variation of the old fashioned hit counter into the plugin’s function maybe for the form function. Let’s me think. Been a while.
<?php $counthits = ("thehits.txt"); $hits = file($counthits); $hits[0] ++; $fp = fopen($counthits , "w"); fputs($fp , "$hits[0]"); fclose($fp); ?>Then just echo $hits into the mail template. There are better coders on here who probably have something better. Can see how that could be useful. Think I’ll play with it later.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Colored backgroundNo you are not editing. AGain take a look at the link I already gave you to YOUR plugins style.css. Or are you editing your Theme’s style.css? That would not be correct.
Have no idea of the template.css. It is not in my Contact Form 7 plugin.