andreas-h
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Same gallery in different albums?OMG! …ha, that was…ehm, simple!
Should have figure that out by myself…thanks! 🙂
Forum: Fixing WordPress
In reply to: [Plugin: pb-embedFlash] Shadowbox not working in IE7I don’t wanna be that kinda guy, but I think it is javascript/plugin problem…not saying that IE’s NOT a crappy browser, it sure is!
I like your plugin, and would prefer using that instead, but now I’m currently running another shadowbox plugin, and then the movies works fine in IE7. …not in IE6 though!
And again, thanks for your time!
Forum: Fixing WordPress
In reply to: [Plugin: pb-embedFlash] Shadowbox not working in IE7Hi again,
Oh, sorry, only updated the text, not the link, the test page should be here!
And you where right, there was two more script running, my bad! The cform plugin and the pagetracker for the Google Analytics was active.
I’ve limited the cform to the two pages using it and disabled the tracking for outgoing clicks…
…but it still not working, the shadowbox opens, but the movie wont play, same for both youtube and daliymotion.
I’ve also tried a clean local wordpress installation with ONLY the pb-embedFlash plugin, same thing. Works fine in all browser except IE.
Forum: Fixing WordPress
In reply to: [Plugin: pb-embedFlash] Shadowbox not working in IE7I’ve set up both a link to youtube and to dailymotion here…
http://www.nevertap.asia/test-page/
Non of them play, the shadowbox opens, but the video doesn’t start.
And there is (shouldn’t) be any other scripts running!?
And btw, thanks for taking the time! Appreciated!
Forum: Your WordPress
In reply to: Examples of WP that don’t look like blogs?I’ve made this one for the Muay Thai & MMA Training camp in Thailand that I train at…
…not very blog like, except the comment function. Witch I’m thinking of take away, doesn’t add anything really and is not used very often anyway.
Forum: Your WordPress
In reply to: Critic my new blog and theme!Ok, how about now….lightened it up a bit!
Better?
Forum: Your WordPress
In reply to: Critic my new blog and theme!Yeah, I’m aware of that…I didn’t thought it was that bad though!
…witch part’s are hardest to read, the post date on the left, or the gray in the sidebar?
But the text in the acctual post isn’t hard to read right!?
On my screen it looks all good, but I must clearly run around and check to see how it looks with other screens/contrast/colors/resolutions! …as if I shouldn’t ahve done that from the beginning!? 😉
Thanks btw!
Anyone!?
Forum: Fixing WordPress
In reply to: duplicated content“Googlebot is far more intelligent than that”
Exactly, just look at the very basics for duplicate content. Googlebot finds something it’s seen before, then it goes back and try to sort out whose the original author and origin is and penelise the duplicate…sort of! 😉
So, even If you have the exact same “version” of your post published first on your index page, then in some of your categorys and then the archive and….so on and so on, it still created by the “same author”, on the same server and AT THE SAME TIME…Google dont give a shit about that…
…at least that’s what I think. Duplicate Content issues with wordpress is overhyped!
But I’m no expert so please correct me if I’m wrong! 🙂
Forum: Fixing WordPress
In reply to: .htacces resets itself a couple of minutes after uploadNo, like this, right!? 🙂
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^.*\.htm$ RewriteRule ^([a-z0-9]*)\.htm $1 [L,R=301] # BEGIN WordPress RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress </IfModule>Forum: Fixing WordPress
In reply to: .htacces resets itself a couple of minutes after uploadOk, cool, so do I move only the lines with my rewrite rules, like this (btw, doesn’t look right!?) :
RewriteCond %{REQUEST_URI} ^.*\.htm$ RewriteRule ^([a-z0-9]*)\.htm $1 [L,R=301] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressOr do I need the “starting” things to? Like this:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^.*\.htm$ RewriteRule ^([a-z0-9]*)\.htm $1 [L,R=301] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress…or, maybe something else?
Forum: Fixing WordPress
In reply to: Rewrite a specified page permalinkAnyone!?