jaygearhead
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity 2 PDF] Plugin Stopped WorkingI’m not sure what has happened to the developer of this plugin either, but he is basically MIA 🙁 I’ve also reached out about issues with no response for weeks now. Too bad because it is a great plugin, but the lack of support has us doing things other ways now.
BTW- from what I understand, the plugin is dependant on PDFTK that is run on their website and if that site goes down (which it did around the holidays) then merges do not work. My hosting provider does not allow PDFTK to be installed unless we have a dedicated server, which we do not. That seems to be common amongst the more popular PDF creation plugs- Gravity2PDF, Formidable PDF, etc.
Hope this helps, and I hope nothing bad happened to the Gravity2PDF dude…
Forum: Plugins
In reply to: [Gravity 2 PDF] Confirmation EmailI had the same problem on version 2 and the only workaround I could think of was to send the submission to an email field from the Gravity Form. Unfortunately the direct download link is generic and points to the last submission, so if another form (or forms) are submitted in the time it takes for the direct download link to be used then the link will point to the last submission. Hope this helps!
Jason
Forum: Plugins
In reply to: [Gravity 2 PDF] Plugin Update to 2.1.16Thank you for the quick remedy!!
Forum: Plugins
In reply to: [Gravity 2 PDF] Plugin Update to 2.1.16After upgrading from .13 to .16 or .17, this is the message that appears-
The plugin Gravity2PDF copy/GravityMerge.php has been deactivated due to an error: Plugin file does not exist.
Forum: Plugins
In reply to: [Gravity 2 PDF] Formatting CurrencyI’ve done all the above, but the populated PDF is still a non currency number.
Forum: Plugins
In reply to: [Gravity 2 PDF] Plugin Update to 2.1.16We are also having the same issue, also on 2.1.17. Lost all field mappings, re-created merges field mappings do not stick. Rolled back to 2.1.13 but the merges seem to get scrambled with others when users download them using the direct download link. emailed support and waiting to see what’s up!
Forum: Reviews
In reply to: [SAML 2.0 Single Sign-On] Excellent – Works with Multisite and StandaloneThanks for the response. SAML authentication is working ok, I can succesfully login and it is pulling attributes from ADFS. I have the admin dashboard setup in simplesaml already. I found where in the code it is failing, but am unable to troubleshoot this-
private function new_user($attrs)
{
if( array_key_exists($this->settings->get_attribute(‘username’),$attrs) )
{
$login = (array_key_exists($this->settings->get_attribute(‘username’),$attrs)) ? $attrs[$this->settings->get_attribute(‘username’)][0] : ‘NULL’;
$email = (array_key_exists($this->settings->get_attribute(’email’),$attrs)) ? $attrs[$this->settings->get_attribute(’email’)][0] : ”;
$first_name = (array_key_exists($this->settings->get_attribute(‘firstname’),$attrs)) ? $attrs[$this->settings->get_attribute(‘firstname’)][0] : ”;
$last_name = (array_key_exists($this->settings->get_attribute(‘lastname’),$attrs)) ? $attrs[$this->settings->get_attribute(‘lastname’)][0] : ”;
$display_name = $first_name . ‘ ‘ . $last_name;
}
else
{
die(‘A username was not provided.’);
}$role = $this->update_role();
if( $role !== false )
{
$user_opts = array(
‘user_login’ => $login ,
‘user_pass’ => $this->random_password(),
‘user_email’ => $email ,
‘first_name’ => $first_name ,
‘last_name’ => $last_name ,
‘display_name’ => $display_name ,
‘role’ => $role
);
wp_insert_user($user_opts);
$this->simulate_signon($login);
}
else
{
die(‘The website administrator has not given you permission to log in.’);
}
}Thanks in advance for any help!!