WebDi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where does this Redirection Code go?Did you ever figure out how to do this?
I’ve tried every which way I can think of with the php code and the javascript with no luck.Forum: Plugins
In reply to: [Contact Form 7] Attachments and File Uploads not working in Contact Form 7Thanks so much @txc. Your solution worked for me.
Forum: Fixing WordPress
In reply to: Feedburner says my feed can't be validated missing tagWorking now! I didn’t change a thing, just went and did something else and came back 1/2 hour later. Ugh!!!
Forum: Fixing WordPress
In reply to: Feedburner says my feed can't be validated missing tagThe header.php from my theme directory has the following…
<?php headway_html_open(); ?>
<title><?php wp_title(”); ?></title>
<meta http-equiv=”content-type” content=”<?php bloginfo(‘html_type’) ?>; charset=<?php bloginfo(‘charset’) ?>” /><?php wp_head(); ?>
</head><!– End <head> –>
<?php headway_page_top(); ?>
Forum: Fixing WordPress
In reply to: "wordpress-content" not the same as "wp-content"I thought about that, but was a little concerned it might break some other functionality.
I was able to get it to work by going to settings > media and changing the “Store uploads in this folder” field to “wp-content/uploads” which is the default. Godaddy had put something else in there.
Perhaps this will help someone in the future.
Forum: Fixing WordPress
In reply to: admin area broken after upgradeHa! Well, it’s not really up to me. I need an advil though after banging my head for a couple of hours!
Forum: Fixing WordPress
In reply to: admin area broken after upgradeWell it turns out that aplus.net has some convoluted file storage system and we (nor the auto update) have access to all of the files. I contacted their support and they were able to fix it. Apparently no wordpress site hosted by aplus can be upgraded using the auto update tool. Boy, it would have been nice to know this ahead of time.
Thanks for all of your help.
Forum: Fixing WordPress
In reply to: admin area broken after upgradeThis is hosted with aplus.net and I believe that is what their auto install tool named it.
If you look at the header’s url, for example, you can see that the directory is called wordpress-content.
http://cindystillwell.com/matingforlife/wordpress-content/uploads/headway/header-uploads/header.jpg
Forum: Fixing WordPress
In reply to: admin area broken after upgradeThanks for your help with this!
1. I did this and don’t see any improvement.
2. I am working with a fresh download as of about a half hour ago. when I look via ftp (using ipswitch ws_ftp) I see three directories wordpress-content, wp-admin and wp-includes and I’m wondering why the difference in prefixes between wordpress and wp? Then I see index.php, license.txt…. but these do not have a php icon beside them, they have a link icon beside them and these are the ones that I can’t seem to over-write.Forum: Fixing WordPress
In reply to: admin area broken after upgradeThis is my progress on this:
– switching to the Twenty Ten theme by renaming your current theme’s folder in wp-content/themes using FTP or whatever file management application your host provides.
(I was able to do this in the admin area; some of the admin area is functional and some is not)– resetting the plugins folder by FTP or phpMyAdmin.
(I disabled the one active plugin)– re-uploading all files & folders – except the wp-content folder – from a fresh download of WordPress.
(I was able to upload wp-admin and wp-includes directories, but my ftp client gave me errors when I tried to upload wp-activate.php. wp-app.php….. and said “wp-activate.php: Not a reagular file”)– re-running the upgrade manually using wp-admin/upgrade.php.
(I got this message “No Upgrade Required
Your WordPress database is already up-to-date!”)I still cannot access the pages or posts, but I can access the settings, themes….
Forum: Fixing WordPress
In reply to: admin area broken after upgradeI was able to disable the only active plugin in the admin area. I uploaded the wp-admin directory as it looked like some of it was missing, but I still can’t edit/see the pages or posts from the admin area. Are there other files which I should upload and over-write what’s there?
Forum: Fixing WordPress
In reply to: how do I delete a file using onclickAnyone, Anyone??
Forum: Fixing WordPress
In reply to: how can I trigger page update upon ftp upload?It was much easier than I had anticipated.
Forum: Fixing WordPress
In reply to: how can I trigger page update upon ftp upload?I accomplished what I needed by the following:
1. checking upon page load if the file exists and if so, display a message
<?php $triggerfile = "wp-content/themes/headway-208/ideas.docx"; if (file_exists($triggerfile)) { echo "The file $triggerfile exists"; } else { echo "The file $triggerfile does not exist"; } ?>2. then if the the reader is an admin, display a reset button which can delete the file
<?php global $user_ID; if( $user_ID ) : ?> <?php if( current_user_can('level_10') ) : ?> <?php $triggerfile = "wp-content/themes/headway-208/ideas.docx"; if (file_exists($triggerfile)) { echo '<input type="button" value="Reset" onClick="'.unlink($triggerfile).'">'; } else { echo "The file $triggerfile does not need to be reset"; } ?> <?php endif; ?> <?php endif; ?>Thanks for everyone’s help.
[Please post code snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: how can I trigger page update upon ftp upload?Hmm, sounds interesting. Could I set that up to check for updates like every 15 minutes?