pieterg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image permalink 404it shouldn’t be there, it’s just to test if the file gets parsed. If it would I would get the string ‘image’ on my screen. So my conclusion is that the image permalink doesn’t work.
Thanks for your help so far Riversatile.
Forum: Fixing WordPress
In reply to: Image permalink 404well, this is the file now to test if I get any results:
—- start attachment.php —-
<?php
die(‘image’);—- end attachment.php —-
This is one of the url’s:
https://www.carpcrossing.com/de-opschepper/img_2615/you see that it redirects to https://www.carpcrossing.com/de-opschepper/
Forum: Fixing WordPress
In reply to: Image permalink 404Hi Riversatile,
actually I didn’t, but once I uploaded an image.php file it didn’t make any difference.
Any other ideas?
Forum: Fixing WordPress
In reply to: [WP 3.1.3] Media Library stops working after upgradeHi baokhangluu,
I had the same problem ad you. I solved it by adding the code below to my themes functions.php.
add_filter( ‘request’, ‘wp_hotfix_313_post_status_query_string_request’ );
function wp_hotfix_313_post_status_query_string_request( $qvs ) {
if ( isset( $qvs[‘post_status’] ) && is_array( $qvs[‘post_status’] ) )
$qvs[‘post_status’] = implode( ‘,’, $qvs[‘post_status’] );
return $qvs;
}Forum: Fixing WordPress
In reply to: [WP 3.1.3] Media Library stops working after upgradewell, just fixed it by manually adding this code (from hotfix plugin) to my themes functions.php. It helped!
add_filter( ‘request’, ‘wp_hotfix_313_post_status_query_string_request’ );
function wp_hotfix_313_post_status_query_string_request( $qvs ) {
if ( isset( $qvs[‘post_status’] ) && is_array( $qvs[‘post_status’] ) )
$qvs[‘post_status’] = implode( ‘,’, $qvs[‘post_status’] );
return $qvs;
}Forum: Fixing WordPress
In reply to: [WP 3.1.3] Media Library stops working after upgradeSame problem here. I Tried the hotfix but when installing I get an error ‘this plugin doesn’t have appropriate headers.
This is very inconvenient as we just launched our website and use a lot of pics.
We use the attachment plugin, so that one might cause it, although deactivating it doesn’t solve anything.Forum: Fixing WordPress
In reply to: mod rewriteStill no luck in solving this problem. Is there anyone who can help me? Thanks in advance.
Forum: Fixing WordPress
In reply to: mod rewriteanyone?
Forum: Fixing WordPress
In reply to: mod rewriteI tried another approach. This is the redirect to the complete index.php url. I was hoping that this would fix the problem, but still I get a 404.
RewriteRule reis/(.*)$ index.php?p=5006&product=$1 [NC,L]
Forum: Fixing WordPress
In reply to: predefined classes TinyMCEhi stvwlf,
thanx for your reply. I tried the advanced tinymce, but it didn’t do what i want.
What I want to change, is the list of classes or styles that you can select in the dropdownbox to format a piece of text:
Header 1
Header 2
Header 3
Header 4
…etc