Malcolm
Forum Replies Created
-
Forum: Plugins
In reply to: [StageShow] Not showing the trolley properlyI’ve just tried this on my “trial” site and that works correctly, so it does not look as though this is a general problem.
Can I contact you via the “Contact” page on your website, to get an email address to you, so we can follow up in more detail?
Forum: Plugins
In reply to: [StageShow] Update to 10.0 crashed our websiteResolverd in v10.0.2
Only relevant to sites using Stripe …
Forum: Plugins
In reply to: [StageShow] Problem adding a performance to a show with a seating planResolverd in v10.0.2
Forum: Plugins
In reply to: [StageShow] Manual entry of ticket sales for telephone sales not workingResolverd in v10.0.2
Forum: Plugins
In reply to: [StageShow] Manual entry of ticket sales for telephone sales not workingThanks for both of your bug reports.
The “security update” that resulted in suspension of StageShow meant that I was forced to bring the code up to current WordPress codong standards. Much of the code was written more than a decade ago, so it should come as no surprise that a vast number of changs (over two thousand) so it’s not too much of a surprise that the updates could introduce problems.
I’ve reproduced both problems and hope to get a fix out in the next day or two.
Forum: Plugins
In reply to: [StageShow] Update to 10.0 crashed our websiteIt’s a “general problem”. The EventTypes.php file (which is part of the Stripe Payment Gateway library) is missing from the distribution. It’s in my copy of the distribution so I don’t know why it wasn’t uploaded. I’m on it.
Forum: Plugins
In reply to: [GolfSoc] Can’t add user (db error on backoffice)Sorry for the delay getting back to you … missed the email somehow.
Try turning on all error reporting and WP_DEBUG in your wp_config.php file by changing the following line
define( 'WP_DEBUG', false);To
ini_set( 'error_reporting', E_ALL ); define( 'WP_DEBUG', true );Then let me know what error message you get.
Forum: Plugins
In reply to: [StageShow] Sales emails not sendingIt looks like “Mail Integration for Office 365” can’t cope with mixed MIME encoded message (html, text and embedded images).
I’ve tried FluentSMTP with both SMTP and OAuth servers and that worked OK. Might be worth a try.Forum: Plugins
In reply to: [StageShow] WP Mail SMTP/GmailJust tested this plugin with the latest version of StageShow on my test site, and it worked without any problem. So it can work.
Try with the latest version. Go to StageShow->Tools and send an EMail with the “Add Diagnostics” option checked. May give a clue.Forum: Plugins
In reply to: [StageShow] Help PleaseEnable Debug on your WordPress site, so you can get more info on what the error is.
Then update your post with version number of StageShow, WordPress and PHP.
Forum: Plugins
In reply to: [StageShow] Mobile Error: JQuery Call Error: Session Variables not availableThis is usually because cookies are disabled or blocked. Sessions need cookies to work.
Forum: Plugins
In reply to: [StageShow] jQuery Call Error: Session Variables not availableThis is usually because cookies are disabled or blocked. Sessions need cookies to work.
Forum: Plugins
In reply to: [StageShow] Note to sellerThere was a problem with “Note to Seller” and Reservations. This was fixed in v9.7.2
Try updating and then give it another go. All my tests suggest it is working OK.I have website hosting from Hostinger (hostinger.com). It’s the SMTP server for the Email accounts I get with that account.
Here’s what I believe is a complete fix for both binary data and disposition problems identified above:
foreach ($attachments as $attachment) { if ($attachment[5]){ // This is a string/binary attachment /* attachment elements: 0 => string/image 1 => name 2 => name 3 => encoding 4 => type 5 => isStringAttachment (true) 6 => disposition 7 => cid */ $this->phpMailer->addStringEmbeddedImage( $attachment[0], // Image $attachment[7], // CID $attachment[2], // Name $attachment[3], // Encoding $attachment[4], // Type $attachment[6] // Disposition ); } else { // This is a file attachment /* attachment elements: 0 => path 1 => filename 2 => name 3 => encoding 4 => type 5 => isStringAttachment (false) 6 => disposition 7 => name */ $this->phpMailer->addAttachment( $attachment[0], // Path $attachment[2], // Name $attachment[3], // Encoding $attachment[4], // Type $attachment[6] // Disposition ); } }I hope that you find it useful.