robowen
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms PDF] [Plugin: Gravity Forms PDF] error when viewing PDFI get the same error. Shame really.
Hi,
So I changed themes to Twenty Eleven with no plugins.
I can’t activate your plugin – still give me “page has a redirect loop”
Only thing different to a standard website is that I am testing this site using a Hosts file entry. However I even tried creating a hosts entry on the server itself for my URL to 127.0.0.1 but this didn’t change things.
Any help would be appreciated.
Cheers,
Rob.
Perhaps you could tell me how to modify your code to stop –
“PMPro will try to redirect your registration page to the PMPro levels page and will try to redirect HTTP pages to HTTPS and vice versa.”
Deactivated all plugins and still doesn’t work.
Really wish I could get this working cause it seems like this is the only plugin that does exactly what I want, and great that it’s free 🙂
Hey strangerstudios,
This is a pretty clean install. I have Askimet installed and I did have Members plugin installed as well, but tried deactivating that and re-installing paid memberships pro and still got the same error.
Brand new wordpress installation version 3.3.2 and using Kriesi Corona theme.
Site is not yet live so I am using a hosts file entry to point to the server.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Blank Google MapHey roblagatta,
I got it sorted. It was the page template I was using from my theme (Kriesi Newscast) causing the problem. Full width for some reason was causing problems with both the google map and the spinning gif.
Although I have fixed, I still don’t like the gif cause I’ve got a dark background so the gif has a whole load of aliasing stuff. A version of the gif for black backgrounds would be good.
Thanks for your help roblagatta 🙂
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Blank Google MapHi roblagatta,
I did try to deactivate plugins but no joy. As I mentioned the gif doesn’t look great on a dark background and it’s not really necessary to have a graphic when changing months is it? I might just try to find where I can remove it.
The Google map used to work before I upgraded and I haven’t added any new plugins since upgrading so not sure why that’s not working.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Blank Google MapHey roblagatta,
Sorry for late response, thanks for your reply.
You can take a look at http://www.soba.org.nz/events (rotating gif) and http://www.soba.org.nz/event/emersons-beer-options/ (no map)
Sorry I did make a mistake earlier – I didn’t go from 2.0 to 2.01 I think I went from 1.x to 2.01.
Forum: Fixing WordPress
In reply to: 500 Internal server error upon completing upload of media – SOLUTIONThe reason the images don’t show is because the URL rewrite created by the permalink change makes the web server look for the images in a place that doesn’t exist.
Try changing the rule in web.config to be –
<rule name=”wordpress” patternSyntax=”Wildcard”>
<match url=”wp-content/uploads/*” negate=”true” />
<conditions>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php” />
</rule>I’m not sure if anything needs to be negated but this works for uploads.