webjunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Resume Extended] Resume Extended Plugin Does Not Worksays:
Compatible up to: 2.8What version of WP are you running? If you search the forums thle t dozen posts is it does not work with newer versions of WP
Forum: Plugins
In reply to: how to upload multiple plugins at once?No. You would not want to do that anyway. Probably could write a script to do it but if one ever fails you will spend a lot longer trying to figure out the problem and hot to fix it.
Been doing it for years, and setup sites all week long and while I do copy several plugins with my WP files, I manually activate each one. Every time.Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact form broken since updateTry disabling your other plugins and see if the problem clears up.
Forum: Fixing WordPress
In reply to: Password emails for new registrants not being sent out…You can look at it differently if you get a hosting company than can provide 100% of what WordPress needs. But then you have to deal with spending less money for hosting, get much better support & will even at times help with WordPress issues and not state “not supported” like godaddy. Or you can spend hours (which will later turn into days and weeks) trying to fix problems like these with godaddy….
Did you follow ALL of:
http://codex.wordpress.org/Moving_WordPressForum: Fixing WordPress
In reply to: My blogs being hacked faster than I can fix themIt does not sound like an issue with WordPress but elsewhere but if you must:
http://codex.wordpress.org/Hardening_WordPress
There is no plugin to secure yur site. Good practices is what counts.1)
Have your local copies of the website been alteredd? If so then its happening on your local computer, if not then on your host.
2) If your ftp password is exposed, see if you can use SFTP with your hosting account.
3) Is this Windows or Linux hosting?
4) Is it only your index.php or other php files?
5) Have you gone throug:
http://codex.wordpress.org/FAQ_My_site_was_hackedForum: Fixing WordPress
In reply to: Dashboard Not Fully LoadingFirst:
Try disabling your Plugins.
Then try the default theme.Forum: Fixing WordPress
In reply to: Help been hacked!Forum: Fixing WordPress
In reply to: Change "Home" on navigation to "Blog"IN Wp-admin. Settings/Reading – Set to Your latest posts
Forum: Fixing WordPress
In reply to: Changing the text colour of Author, Categories & Comments in a postGuess you figured it out.
Why are you saving into a differnet directory? Do you have the sitemap listed in robots.txt? Or else those sitemaps are useless. They are expected in the root. Would never do that.
Forum: Fixing WordPress
In reply to: WP adding forward slash to all linksThat is called Magic Quotes. The backlashes are added so that the quotes are interpreted as quotes and not part of PHP code.
Check in your theme files to see if they have “add_magic_quotes” in there. That is the WP function to do that.
Also if that did not help, could be your host upgraded to new version of PHP.
look in WP-Settings.php (main WP directory) and look for a line like:
set_magic_quotes_runtime( 0 );change it to:
if(version_compare(PHP_VERSION, '5.3.0', '<')) { set_magic_quotes_runtime(0); }Forum: Fixing WordPress
In reply to: WP adding forward slash to all linksBoth things you pated are identical on here. Tells me nothing.
Forum: Fixing WordPress
In reply to: WPtouch Plugin Help..Check the plugins
WP Hide PostForum: Fixing WordPress
In reply to: PHP memory problems on 1and1For some people that will crash their website!
That is telling the web server to use php version 5 for files .php
Sounds like your hosting company is by default set to use PHP 4. They are way behind the times….