husdaman
Forum Replies Created
-
I had to adjust the main role (contributer in my case) for the user to be able to edit. Settings didn’t migrate properly into new upgrade.
Forum: Fixing WordPress
In reply to: IIS and Output CachingI think I figured it out. The above line should be
<add extension=”.php” policy=”CacheForTimePeriod” kernelCachePolicy=”DontCache” duration=”00:00:30″ varyByHeaders=”x-original-url” varyByQueryString=”*” /> in web.config.varyByQueryString=”*” was added to the line.
I haven’t figured out the problem with caching my admin bar yet. I just decided to remove the admin bar for now by putting this in my functions.php file.
/* Disable WordPress Admin Bar for all users but admins. */
show_admin_bar(false);If anyone has an idea about the admin bar caching please let me know.
The second post is the a continuation of the error in the first post.
/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/css/nggallery.css?ver=3.6.1 HTTP/1.1 to file, referer:
Forum: Fixing WordPress
In reply to: Taxonomy 'get_the_term_list' redirectNo problem, glad it helped.
Forum: Fixing WordPress
In reply to: Taxonomy 'get_the_term_list' redirectwhy don’t you strip terms using strip_tags() function
$terms = strip_tags(get_the_term_list( $post->ID, 'therapies', '', '/' ); $terms = explode("/",$terms)' for($i=0; $i<count($terms); $i++){ echo "<a href='your-own-url/$terms[$i]'>" . $terms[$i] . "</a><br />"; }
Forum: Installing WordPress
In reply to: Windows server infinite redirect after upgrading to 3.1I too am having this issue after upgrading to the latest version. We are running ISS. I am able to access the admin area however when trying to access the site there is an infinite loop. I do not want to use a plugin to fix this issue so I downgraded to the previous version. I won’t be upgrading to this version again.
Forum: Fixing WordPress
In reply to: 404 Page Error – Page Not FoundThanks for this. I was having an issue when I upgraded to 3.02 with 115 sites on it. The main site url was not finding my post links when I did “Network update” I simply changed the paramlinks to defualt hit save then went back to old settings and it worked like a charm.
Thanks again.
Forum: Fixing WordPress
In reply to: cannot add tags or categoriesThe only fix that I know of is to go into the WordPress database, edit the terms table and add a blank row. Add some content in one of the cells and then delete the row completely (to keep things clean). Go back to your admin and now you will be able to add categories from the admin.
This happened to me when I upgraded from mu to wordpress 3.0. I don’t know how else to fix this.
Hope this helps a bit.
Forum: Fixing WordPress
In reply to: Redirect Error since upgrading to WordPress 3.0I am having this issue when I try to permanently delete or restore a post. Also same error with Media Library when trying to delete a file. I am running on Windows IIS server with php.
Posts do restore or delete once I go back to the admin panel so it is just not redirecting properly. 2.92 was working fine so I’m not sure what changed.
Forum: Fixing WordPress
In reply to: cannot add tags or categoriesI’m getting this error too. I upgraded wordpress mu 2.92 to wordpress 3.0 and now I cannot categories. The weird part is I was able to add 2 categories and then after trying to add a 3rd one, I got the same error as above.
Anyone know a fix for this?
Forum: Fixing WordPress
In reply to: increase media library upload file size limitHey Shane,
Thanks that worked for me. Before this, I had changed php.ini and changed the settings in the admin panel but still couldn’t get this to work. The code goes in the .htaccess. Anywhere in there is fine.
Thanks again.