webjunk
Forum Replies Created
-
Forum: Plugins
In reply to: WordPress will not let me install plug-insThat link also provides directions on how to change permissions.
Forum: Plugins
In reply to: WordPress will not let me install plug-insProbably a permissions issue:
http://codex.wordpress.org/Changing_File_PermissionsForum: Plugins
In reply to: [Plugin: Contact Form 7] Change font size in form??You need to edit the Styles.css location in the Contact forms plugins directory.
Forum: Plugins
In reply to: Removing PluginsEach plugin could be different like any application.
Some do have an Uninstall to remove files and/or database entries. Many do not create these to begin with so there are no issues. Still some do and never remove them. Do these effect performance? Rarely.You might want to check with your Host. Shared servers usually place limits on how long a single process can use CPU resources.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Need text area with scroll barOh. The tags is because within textarea will not interpert html tags. That is why its a textarea
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Need text area with scroll bartextarea supports in CSS:
width: 300px;
height: 60px;Or within the tag like:
<textarea rows="12" cols="20">Forum: Plugins
In reply to: [Plugin: Contact Form 7] CSS Style for just Submit buttonYou know. Looking at it myself….I don’t think it would work either. Its for an input field. It should be:
input.wpcf7-submit { color: #ff0000; background-color: #CC0000 }Sorry. I am not perfect. Just damn close….
Forum: Plugins
In reply to: [Plugin: Contact Form 7] CSS Style for just Submit buttonedit the Styles.css location in the plugins directory. Think you will have to add a section into it like:
div.wpcf7-submit
{
color: #ff0000;
background-color: #CC0000
}Might want to first check that the sitemap is good, then disable the wp security scan plugin. Create a new page or post so a new sitemap is generated and see if the problems come back.
Forum: Plugins
In reply to: Can't get any forum plugins to workYou should open a support ticket with your host. They may require other permissions for the .htaccess as some do.
cPanel 11 is just the COntrol Panel interface your host gives you to access things. Has nothing to do with the operating system.Forum: Plugins
In reply to: Can't get any forum plugins to workDo you know if your hosting on Windows or Linux?
A link would help us out.
Evidently from te one error, your .htaccess does not have the correct permissions. 644 should be the correct permissions for .htaccess.
This page will give you instructions on how to change the permissions:
http://codex.wordpress.org/Changing_File_PermissionsForum: Plugins
In reply to: Can't get any forum plugins to workYou did not mention which plugins and its difficult to resolve issues for three at the same time but with some you must rebuild permalinks after adding the forum plugin. Set Permalinks to none and then set back to whatever permalinks you want to use.
Forum: Plugins
In reply to: Prevent plugin from updatingPlugins can not (if they follow standard rules) update themselves.
As for not asking to update, that is based on the Stable tag in the readme.txt. You could change it on yours to reflect the newer (or future)It will run from a browser but you could use lynx (for instance) from a shell prompt:
lynx -dump “http://mysite.com/?sm_command=build&sm_key=xxxxxxxxx”curl or wget should work as well.