Shahriar

Forum Replies Created

Viewing 25 posts - 5,526 through 5,550 (of 12,513 total)
Jun 28, 2018 at 11:37 am
#79805
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Jun 28, 2018 at 11:30 am
#79804
Moderator
Shahriar
Staff OP

Please go to the Downloads Settings Updates tab and log in to your WPDM account. Let me know if that doesn’t remove these warnings.

Jun 28, 2018 at 11:25 am
#79803
Moderator
Shahriar
Staff OP

@shadowrunner, Please try now. Install the latest version if still getting the invalid key error.

Jun 28, 2018 at 11:20 am
#79801
Moderator
Shahriar
Staff OP

Please replace the get_post($id) with $_POST in do_action call ( line 294 )

Then you can work with all post data from functions.php using the following code

function edit_package_frontend( $pack_id, $post_data ){
    // Your code
}
add_action('edit_package_frontend','edit_package_frontend', 10, 2);

We will update the class.Apply.php on our side too for the next update.

Jun 27, 2018 at 10:36 am
#79749
Moderator
Shahriar
Staff OP

Hi,

It is not possible to download the whole ( all attached files compressed in a single zip ) package when you attach file Google drive or any other third party server.

The zip option works only when files are in your server.

Thanks.

Jun 27, 2018 at 10:32 am
#79748
Moderator
Shahriar
Staff OP

Hi,

Maybe you are using an older version of Download Manager Pro. The latest version of WPDM is 4.7.6

Please check if you have it. You can download latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Best regards.

Jun 27, 2018 at 10:28 am
#79746
Moderator
Shahriar
Staff OP

Sorry, guess I misunderstood your bulk email feature. Do you want to export/collect subscribers email list from frontend?

It is possible through WPDM customized solution without the third-party plugin.

Jun 27, 2018 at 10:11 am
#79741
Moderator
Shahriar
Staff OP

Looks like you are hosting on Siteground. Please add the following rule in your .htaccess file to fix the saving issue,

<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>

Jun 27, 2018 at 9:06 am
#79736
Moderator
Shahriar
Staff OP

It is possible to add any custom link in details page using custom template tag. Where do you want the user to go back from details page?

Jun 27, 2018 at 8:47 am
#79734
Moderator
Shahriar
Staff OP

After the plugin update, you have to re-do the step 2 I posted above. Just add the custom code in marked position.

You can also keep a backup of wpdm_decrypt_legacy function I added in your theme’s functions.php file. Because this function will be gone if you update the theme.

Jun 27, 2018 at 8:43 am
#79733
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Jun 27, 2018 at 8:13 am
#79726
Moderator
Shahriar
Staff OP

I can’t think of any other reason behind this issue. However, if this happens again ask the user to reload the page to check if they are logged in or not.

Jun 27, 2018 at 7:39 am
#79723
Moderator
Shahriar
Staff OP

Where did you add the code? I couldn’t find it in your theme’s / child theme’s functions.php file. However, I added it on the child theme. Username is rendered correctly now.

https://www.evernote.com/l/AUdakJXtoCNPGLQAeHRNGFsTRknNFrrY4CwB/image.png

Jun 26, 2018 at 2:02 pm
#79639
Moderator
Shahriar
Staff OP

Download Manager doesn’t have any influence in this matter. I think your package/download page was indexed before adding the meta description. I do see the meta description in your page now. Re-indexing the page may fix the issue.

Jun 26, 2018 at 1:45 pm
#79637
Moderator
Shahriar
Staff OP

Hi Christine,

Your key is linked to conproco.com If you are having the license issue there, please install the latest version of Download Manager. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Deactivate and delete the old version before installing the new one. You won’t lose any data.

If you are trying to move the license to another site then I have to unlock it from conproco.com Let me know in that case.

Thanks.

Jun 26, 2018 at 1:40 pm
#79635
Moderator
Shahriar
Staff OP

WordPress has the auto-logout feature which logs out idle users periodically ( Default time is 48 hours but using plugins you can increase or decrease it ).

So, if a user opens the accordion page and doesn’t do anything right after opening it. After some time ( the period is greater than the auto logout time ) the user comes back to the accordion page he opened before but WordPress already logged him out. Now clicking the accordion will return -1 because he doesn’t have access to it anymore.

If the user reloaded the page before clicking accordion it won’t show the page content in your case because the user doesn’t have access without login.

You can test it by opening the accordion page and logging out from another browser tab. Then clicking the accordion will return -1.

Jun 26, 2018 at 1:05 pm
#79630
Moderator
Shahriar
Staff OP

Looks like your link template is not set correctly. Does your shortcode have this part link_template="link-template-panel-1-3"? You can send temporary wp-admin login info in private reply if you want me to check there.

Jun 26, 2018 at 12:55 pm
#79628
Moderator
Shahriar
Staff OP

The URL is generated by the [download_url] template tag. But it doesn’t generate the index.html in the download link. wget is setting this name as there is no static file name is URL.

You can modify the tag output if you want using this filter hook, https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/

Jun 26, 2018 at 12:39 pm
#79626
Moderator
Shahriar
Staff OP

Next version is coming within next 1 or 2 week. Fix will be shipped with it.

Jun 26, 2018 at 12:19 pm
#79624
Moderator
Shahriar
Staff OP

I checked the /download-manager-files/ dir. Those files don’t exist there. That’s why the file-not-found.txt is being served.

Jun 26, 2018 at 10:58 am
#79613
Moderator
Shahriar
Staff OP

No, I think it works only on the backend. Btw, if you want this bulk import user feature implemented from frontend we can do it and just requires more customization time.

Jun 26, 2018 at 10:53 am
#79612
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Jun 26, 2018 at 10:45 am
#79609
Moderator
Shahriar
Staff OP

1 ) Added a new function wpdm_decrypt_legacy in your theme’s functions.php file.

2 ) Added some custom code in /download-manager/wpdm-start-download.php file.

if( $indfile == '' ){
        if (isset($_GET['ind'])) {
            $indfile = isset($files[esc_attr($_GET['ind'])]) ? $files[esc_attr($_GET['ind'])] : wpdm_decrypt_legacy(esc_attr($_GET['ind']));

        } else if ($fileCount == 1) {
            $indfile = array_shift($files);
        }
    }

https://www.evernote.com/l/AUeFGTYbxM5BgZ9SxlmqrvJ9iq3VYd9Ir20B/image.png

Now old file download links are working too.

Jun 26, 2018 at 10:23 am
#79607
Moderator
Shahriar
Staff OP

Please share the email template you are using there. Are you sure you have the [#username#] tag there?
Or,
Please send temporary wp-admin login info in private reply for faster resolution.

Jun 26, 2018 at 10:02 am
#79604
Moderator
Shahriar
Staff OP

Hi Loni,

Thanks for reporting this issue. We will resolve the issue in next release.

Best wishes.

Viewing 25 posts - 5,526 through 5,550 (of 12,513 total)