crookesa
Forum Replies Created
-
Forum: Plugins
In reply to: [WP on AWS] fopen Directive must be EnabledThanks I spoke to my hosting company and their response was
I was also able to resolve the issue temporarily by globally enabling the option. This wouldn’t be able to remain this way.
I’m not sure what could be causing the issue. Reviewing phpinfo.php you will see that fopen is enabled both local and master. The error remains unless the option is enabled globally which can’t be altered on our shared fleet.
We could temporarily enable it at times you need to run it but the plugin shouldn’t be requiring a global value when the local and master values are showing correct.
Could you check and see if this is the case with the plugin and it’s not looking for a global setting?
Forum: Plugins
In reply to: [User Access Manager] Importing UAM group membership from a CSV fileThanks for the reply.
My table name isTable: wp_uam_accessgroupsso I changed the above code to
$tableprefix = "wp_";and I’m still getting the same error. Have I got it setup correctly?
I just have one record in the tableForum: Plugins
In reply to: [User Access Manager] Importing UAM group membership from a CSV fileI am getting an error on line 60 when I go to run it.
Anyone else getting the same error?Fatal error: Call to a member function fetch() on a non-object in /home/iatcaie/public_html/update_roles.php on line 60Thanks I got it working but I think it was the fact that one of the fields have an incorrect/empty value but still let me save it.
Once I messed about with it in the plugin settings I started working!Should be some error inputting done on the fields.
I’ve tried the inpage code instead and get the same problem of the images stacking.
Here’s the code that’s generated by the php statement.<div class="bannerad"> <!-- Begin Sponsors Carousel --><ul id="mycarousel353304254" class="jcarousel-skin-tango"><li><a target="_blank" id="item" href="" class="jcarousel-item"><img width="75" height="75" src="http://eccdublin2013.com/wp-content/uploads/2013/03/Penthouse-Logo-120x120.jpg" class="attachment-125x75" alt="Penthouse Casino & Card Club" title=""></a></li> <li><a target="_blank" id="item" href="" class="jcarousel-item"><img width="75" height="75" src="http://eccdublin2013.com/wp-content/uploads/2013/03/asl_800pix-150x150.jpg" class="attachment-125x75" alt="ASL Aviation Group" title=""></a></li> </ul> <script type="text/javascript"> jQuery(document).ready(function() {jQuery('#mycarousel353304254').jcarousel({ scroll: 2 ,animation: medium ,wrap: 'circular' ,auto: 6 }); }); </script> <br style="clear: both;"> <!-- End Sponsors Carousel --> </div>here is the screenshot of the carousel also http://imageshack.us/photo/my-images/42/screenshot20130416at110.png/
Yeah I have it on the site but it won’t display properly or start to turn. Not sure what’s wrong with it.
I know I had to change the code on it to get the add images button to display so maybe there’s more code that’s outdated?I’m getting the same problem now on WordPress 3.5.1 with 2.0.2 of sponsors carousel. Any fixes? Have tried it in Chrome, Safari and Firefox.
Forum: Plugins
In reply to: [custom tables] [Plugin: custom tables] Using IF statements on cellsIn the custom tables settins in admin panel. Go into the table you have created and click on view setup then table setup.
This is where you define the layout of your table. I added the if statement here.
Solutions to above.
1.
<td>[if field=”{total_due}” check=”!=”]<font color=”red”>[/if][if field=”{total_due}” check=”>” var=”0″]€[/if]{total_due}[if field=”{total_due}” check=”!=” var=”0″]</font>[/if]</td>2.
<td>[if field=”{total_paid}” check=”>” var=”0″]€[/if]{total_paid}</td>Hope this makes sense and helps
Forum: Plugins
In reply to: [Contact Form 7] Sending emails not workingThanks very much for the link to the other post, I didn’t see that topic at all when looking for a solution.
The problem seems to be with the cPanel MX settings for the Email Routing. It was set to Local Mail Exchanger which means it got lost when it hit the local server. I have since changed it to use Automatically Detect Settings which looks at my MX records and forwards to Google App mail servers straight away.
I have tested it and it seems to be working. I’ll monitor it and report back if it goes again.
Thanks l3l2adForum: Plugins
In reply to: [Contact Form 7] Sending emails not workingGoogle Apps is here – http://www.google.com/enterprise/apps/business/
And these are the settings I only needed to change to make the mail work with Google Apps, I just change the MX Records – http://support.google.com/a/bin/answer.py?hl=en&answer=174125Here is all the plugins I have installed – http://imageshack.us/photo/my-images/843/pluginsscreenshot.png/
Forum: Plugins
In reply to: [Contact Form 7] Sending emails not workingI have a good few other apps but I seemed to have narrowed it down to my email servers but have not resolved the issue.
I can send mails using Contact Form to my hotmail address but the mail settings for my site have been forwarded to Google and I am using Google Apps to host my email. It’s any address on that domain that I have a problem. They don’t even appear in my spam folder.
Any ideas? Thanks for coming back to me on this it’s been hard to try find an answer.Forum: Plugins
In reply to: [custom tables] [Plugin: custom tables] Using IF statements on cellsSorted it!!!
Forum: Plugins
In reply to: [custom tables] [Plugin: custom tables] How to us "if" in entriesDid you ever get a solution to this using IF statements?
Forum: Plugins
In reply to: Add widget to end of pageI had it in the page content that what must have been confusing me but I have placed it in the index.php template and the page.php template and it’s still not appearing. I only want on my home page so was concentrating on index.php template.
Thanks for the support
Forum: Plugins
In reply to: Add widget to end of pageThanks for the reply Carlos
<?php if ( is_active_sidebar( 'homepage-newsfeed' ) ) : ?> <?php dynamic_sidebar( 'homepage-newsfeed' ); ?> <!-- #first .widget-area --> <?php endif; ?>This is what I have on my page and nothing is displayed but when I view the source code for the page I see the following
<p><?php if ( is_active_sidebar( 'homepage-newsfeed' ) ) : ?><br /> <?php dynamic_sidebar( 'homepage-newsfeed' ); ?><br /> <!-- #first .widget-area --><br /> <?php endif; ?></p>Would it seem that the php isn’t being processed?