webjunk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Plug Ins, DB, & server transferSome plugins use the database.
Yes. Have you read: http://codex.wordpress.org/Moving_WordPressForum: Fixing WordPress
In reply to: Help with PermalinksAre you under Apache or IIS?
Forum: Fixing WordPress
In reply to: miss "wp-admin" in dashboard linksCHeck .htaccess to see if there is a redirect in force.
Forum: Fixing WordPress
In reply to: HELP! ~ Internal server error (500) and Go DaddyUsually 500 errors are related to file permissions CHeck them and also ownership. Very common when a host moves files for people they do it as root or another superuser account and then you do not have the permissions for User or Group. Of course if on Windows its another can of worms…
Recheck the wp-config.php
Export the database and check for improper mappings.ANd go through all of this even thugh they moved it for you:
http://codex.wordpress.org/Moving_WordPressForum: Plugins
In reply to: Where is my API key?WordPress.com
Create an account and you will get it. click on “My account” and “Edit Profile”, you will see itForum: Fixing WordPress
In reply to: change link in a post titleSOmething like:
<div class="post-title"> 08. <h1><a href="http://YOURDOMAIN.COM" rel="bookmark" title="HOME"><?php the_title(); ?></a></h1> 09. </div>Forum: Plugins
In reply to: [Plugin: Contact Form 7] Won't connect to smtp serverMake sure you ask for the correct port. Normally its 25 but not that uncommon to see 465 and other ports especially for secure connectiojns.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Won't connect to smtp serveryou might need the port opened with your host. Check with them.
Forum: Fixing WordPress
In reply to: change link in a post titleInside your Post.php is this section for the title:
` <div class=”post-title”>
08. <h1><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php _e(‘Permanent Link to’, ‘cp’); ?> <?php the_title_attribute(); ?>”><?php the_title(); ?></a></h1>
09. </div>`Been a while so not sure what you wanted but that is the code for the Post title link
Forum: Fixing WordPress
In reply to: change link in a post titleWe need the link to where in Pastbin….
Did you upload imagerotator.swf ?
Do you have any other picture or image plugins like simpleviewer?
Try to deactive the sildeshow flash player in the settings and then enable it again.
Are you using the newest version of Nextgen?Have a link to your site? That would help.
Is there a differenc if you generate it manually?Forum: Plugins
In reply to: [Plugin: Contact Form 7] Won't connect to smtp serverFirst make sure the TO: address being sent to is the same configued for SMTP. Also does the SMTP require authentication?
Forum: Fixing WordPress
In reply to: change link in a post titleNext Time as per the rules paste into:
http://wordpress.pastebin.ca/Wha I think we need actually is from: post.php
As an aside from a quick look in an earlier post you did is an error above:
<h4><?php _e('Sorry, no posts matched your criteria.', 'cp'); ?></h1>Need to start and end with the same tags. there is h4 and ending in h1
Forum: Plugins
In reply to: Plugin installation or update impossibleCould be several things. Could be trying to use /var/tmp
Usually owner should be your username which even if its a dedicatd server you never want to use root. Since you need Write permissions, if the scripts are neither running as root or part of www-data then you do not have that permissions. CHeck with your host would be first.