webjunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact form broken since updateAre you hosted under Windows or Linux?
CHeck your .htaccess file. Sounds like the needed settings for permalinks is not correctly in there or you do not have support for .htaccessNo sitemap generator ever needs extended permissions for the directory. Only the sitemap Files need to have 666 as permissions. Every SE and spider expects the sitemaps in the root. If they are moved they can only find them if there is a line in the robots.txt specifying their location but that is not the most reliable either.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact form broken since updateEvidently you diabled the plugin right now.
Try disabling permalinks. Then see if it works. Then re-enable permalinks and see if it still works.
Also make sure you have the newest version.Forum: Fixing WordPress
In reply to: WP adding forward slash to all linkshhhmmm. What exactly is the environement you have WP running under?
If you have a PHP.INI put in a line:
magic_quotes_gpc = OffThat turns magic quotes off for PHP.
Not sure why #2 what take down the site. You could place it in the template file (page.php, single.php, etc.) for the problem page. Did you receive an error? The only thing that does is check if magic quotes is enabled and then remove slashes.
Forum: Fixing WordPress
In reply to: Password emails for new registrants not being sent out…Missed the second part. You need to swap Steps 7 & 8. You want to launch the new server and make sure it is working fully before canceling your hosting? Do not know about the days. I usually do it all in a day or actually a few hours.
Forum: Fixing WordPress
In reply to: Password emails for new registrants not being sent out…I have not used either host in quite some time. I prefer Hostgator but only have about four hundred client sites I support with them so far 🙂
You do not need to transfer the domain name to anyone. You can keep that with godaddy or whatever if you want. YOu will just need to change the Nameservers to point to the new host and manage the A Records, Cnames, MX records, etc. there.What I asked for is the code from when you are editing the page/post. Not when the published page is viewed in a browser. Does not help here.
Have you tried disabling other plugins? Conflict with another plugin. But the issue goes away because the image is not displayed as its in the netxgen gallery.Forum: Fixing WordPress
In reply to: Password emails for new registrants not being sent out…you must do step 7, 72 hours AFTER step 8 because of dns.
Forum: Fixing WordPress
In reply to: Change "Home" on navigation to "Blog"you need the code to:
<?php wp_page_menu( array( 'show_home' => 'Blog', 'sort_column' => 'menu_order' ) ); ?>Forum: Fixing WordPress
In reply to: Password emails for new registrants not being sent out…Actually moving to another hosting compan would probably be faster than fixing (if it can be fixed at all) this problem on godaddy. And better in the long run. Or would you rather move it when you are forced to because of godaddy when you have an active website?
Just follow the directions:
http://codex.wordpress.org/Moving_WordPress
and there are people on here to help. I move WordPress all the time.Re-check. Especially in wp-admin, Settings/General the URL’s.
Also check carefully wp-config.php.
Export your database and view it for improper mappings.Definitly Does not look like an issue with Netgen. Looks like in the post. Either you included a “>” in the post itself or somewhere missed something in html.
What might help is if you view the post in queston in wp-admin and in the HTML (not visual) editor. Then paste that code unaltered into:
http://wordpress.pastebin.ca
and leave the link here so we can take a lookForum: Fixing WordPress
In reply to: WP adding forward slash to all linksGo back to the line in wp-settings.php:
set_magic_quotes_runtime( 0 );
and this time comment the line entirely.
/* set_magic_quotes_runtime( 0 ); */See if that fixes the problem.
————————
Lastly you can try below the lines in wp-settings.php:// Add magic quotes and set up $_REQUEST ( $_GET + $_POST ) wp_magic_quotes();add this:
if ( get_magic_quotes_gpc() ) { $_POST = array_map( 'stripslashes_deep', $_POST ); $_GET = array_map( 'stripslashes_deep', $_GET ); $_COOKIE = array_map( 'stripslashes_deep', $_COOKIE ); $_REQUEST = array_map( 'stripslashes_deep', $_REQUEST ); }If you disable the plugin (temporarily) does it then work?
That is a function of WP not the plugin, I think.If I remember write that is caused because your server does not allow openssl. Open a support ticket with your host and ask if its installed & open.