Code

Discussion on Digital Downloads Pro

Discussion on Digital Downloads Pro

By
Cart 1,368 sales

gewa13 supports this item

Supported

2927 comments found.

Hello

I wish to use this to sell images I take.

When viewing a product, can the product image be bigger than those in your preview

Also so you think it will work for what I want to use it for?

Yes, you can set the image size from admin configuration

Hi, thanks for the script. Love it.

Every thing is working perfectly. but I have a problem. When I am using the file manager simple. an error says “Entered File Name does not exist.!”. But the files are already in the relevent file directory. But this error shows. I tried in so many ways but it doesn’t work out. Can you please explain me how to use this file manager simple.

Thanks

Yes, I’m working on responsive version as we speak, and hoping to have it done by the end of the month.

thank you.. And i have an opinion. If you can add the credit card payment gateway too. which is similar to this plug in. http://codecanyon.net/item/paypal-pro-credit-card-gateway-for-woocommerce-/1331008?WT.ac=search_thumb&WT.seg_1=search_thumb&WT.z_author=DenonStudio. which the customers can pay with there credit card and the payments will be transferred to our paypal account. I used it for one of my site and got more sales too. it’ll be great if you can add this option to it..

thanks

Paypal already supports cc, why would you want additional cc payment option.

Hi, Because I made some changes in my script…. I want t know if I replace only the files from folders – (admin, gateways and lib) from upgrade.zip – Will PayPal work correct?

Yes it would. Just Make sure while paypal folder is replaced as well as new paypal class in lib/ folder.

Hi gewa,

Internet Explorer 10 ( I do not know about other IE versions) does not work with DDP script. We can not modify any site admin activities in IE 10. Even contact mail can not be sent. Is it a problem with a IE or something else.

For a quick check, you can try to send a contact mail using IE 10 in http://www.wojoscripts.com/ddp/view-content/4/Contact-Us.html. It does not respond, however it works with firefox.

Please check & provide solution.

Thank you Selva Reddy

IE10 works just fine, make sure you are not in compatibility mode.

Hi, i’m considering purchasing, but have 1 question. If someone checks-out with multiple items in their cart, under the Transactions and the Downloads, it looks like each items show up as a separate transaction/download? And how is that handled in the DB? is there a unique ID stored which will let you know all the items that were purchased at the same time (so a separate query could be written to roll up all items purchased at the same time)?

Thanks.

Yes, each items is stored under the same transaction, does not matter if single or multiple items where purchased.

Hello,

How could i put a tooltip on the title and the description of every digital product at the home page? The tooltip will include the whole title ($lrow['title']) and the whole description ($lrow['description']) respectively.

Thanks

Currently tags are just single words, and they are trimmed to 20 characters, in order to increase that you would need to change the number in /lib/class_content.php line 64. As for adding tooltip, just apply class to your link or image element like class="tooltip", than add description in title attribute like title="Your description goes here..."

Hello,

How could i make it at the following source code? I wrote <a class="tooltip" href="<?php echo $url;?>"></a> with no result. Also the description is not a link. I would like on mouse over the title and the description to see the whole title and the whole description as tooltip.

<a href="<?php echo $url;?>"><?php echo sanitize($lrow['title'],100,'');?></a><p><?php echo sanitize(cleanOut($lrow['description']),100);?></p>

Thanks

You need to wrap title or description in title attribute. See here: http://pastebin.com/GptgGxCa

Hi, a pre-buy question: i’d like to sell only mp3 file on my site. In particular i need to list albums and single songs. I’d like to give customers the chance to buy an entire album of songs or even a single song. Would be nice if they can listen a 30 seconds of the songs before buying it. I know the app needs some modification but my question is: do you eventually do it for me? Thank you Tony

Audio preview(mp3) is already available per item.

Hi How can I incorporate Google Adsense into this script? I’m really surprised that the new update didn’t incorporate this, is there any chance of including an ad input field in the future?

Many thanks

Sure, I’m working on responsive version of DDP, and I can include that feature. For now, you would have to insert Adsense code manually.

Hi,

Is there a clever way to transate the front end to greek language?

Thanks.

Hello,

I tried to translate “Most Recent Products” to greek in index.php file and the result in the rendered page was ???????? ??????????? ????????. Any idea on how to resolve this problem?

Thanks

I solved this problem applying the encoding setting “UTF-8 without BOM” to the file.

Yes, just make sure you save it as utf-8 without BOM.

Hi i place a product under a category i create, but no matter where I go, i only see Most Recent Products. How can I do the setting for this?

Sorry, I don’t fully understand your question. Can you please explain?

Hi,

When i check the text inside the database, i notice that every greek character is saved like this: &alpha, &tau, &mu…. Why is this happening? Doesn’ t it take up a lot of space in mysql to save big text in that way?

Thanks.

Make sure your database table collation as well as database is set to utf-8. Even if the characters are saved as html entities, you don’t need to worry about space

Pre purchase question. I’m interested in your script but am wondering how it could be implemented on a Wordpress site.

Sorry, you can not do that. DDP is standalone script.

Hi Alex I’m having trouble upgrading. When I attempt to unzip the upgrade.zip file it appears to go through the motions… meaning the archive utility opens briefly… but nothing happens. No addition files/folders appear in the directory. Any ideas? Thanks.

You need to upload content from zip file into your DDP directory and overwrite the existing files, than point your browser to upgrade.php to complete upgrade process.

Sent a request for the upgrade file to your email. Thanks.

Reply sent.

Sorry if this is a re-post Hi, Are you planning on integrating an social media links ? sale are going great, niche script 8-)

thank you

http://psd2img.com

Sure, I can do that. It would not require any major modification. Just one single file.

Dear gewa,

Could You please direct me on how upgrade to version 2.1? Thanks

Just download package from your codecanyon downloads section, and follow upgrade instructions.

Tell me, please. In your script has the ability to add an unlimited number of properties of the product?

Yes it does. You can add as many products as you need.

You have not correctly understood. I asked whether it is possible to add additional fields to the product. Such as playing time, genre, year of release, etc.

Sorry about that. In order to add additional fields to product page, some php/html skills would be needed.

Hello gewa,

Today I received the following from paypal. Do I need to do anything:

Thanks gewa..

Action Required before October 7, 2013

Merchants need to update their IPN and/or PDT scripts to use HTTP 1.1, and include the “Host” and “Connection: close” HTTP header in the IPN postback script.

Example with Host as www.paypal.com (please make necessary changes if you are using ipnpb.paypal.com):

ASP //Set values for the request back req.Method=”POST”; req.Host=”’www.paypal.com’”; req.ContentType=”application/x-www-form-urlencoded”;

Perl $req=HTTP::Request->new(‘POST’, ‘https://www.paypal.com/cgi-bin/webscr'); $req->content_type(‘application/x-www-form-urlencoded’); $req->header(Host=> ‘www.paypal.com’); $req->header(Connection=> ‘close’); PHP // post back to PayPal system to validate $header=”POST /cgi-bin/webscr HTTP/1.1\r\n”; $header .=”Content-Type: application/x-www-form-urlencoded\r\n”; $header .=”Host: www.paypal.com\r\n”; $header .=”Connection: close\r\n\r\n”;

Java HttpsURLConnection uc=(HttpsURLConnection) u.openConnection(); uc.setDoOutput(true); uc.setRequestProperty(“Content-Type”,”application/x-www-form-urlencoded”); uc.setRequestProperty(“Host”, “www.paypal.com”); uc.setRequestProperty(“Connection”, “Close”);

The PayPal Sandbox has been configured to reject any HTTP requests without the “Host” header with HTTP 400 error. Merchants can use the Sandbox environment to certify the changes to their IPN and PDT scripts.

For more information on PDT and IPN, please refer to http://www.paypal.com/pdt and http://www.paypal.com/ipn. For additional information or questions about this change, please contact PayPal’s Merchant Technical Support team via https://www.paypal.com/mt

DDP it’s already updated with the latest paypal api. Just make sure you have the latest version.

How do I check which version of DDP that I bought? If my version of DDP had not been updated yet, do I need to purchase the newer version? Thanks

All updates are free of charge. Go to admin panel and in footer area you will see current version.

On Purchase Summary. Select Payment Method: it is coming up with blank white boxes and “javascript:void() Had a clean install with all green ticks. Whats the ERROR?

Hey Don’t worry worked out the problem…the PayPal.png files needed to be lower case i.e paypal.png. I Recommend you update that for new downloads.

Thanks for pointing out. I will fix it.

what is this error ? Warning: mysql_connect(): Can’t connect to local MySQL server through socket ’/var/lib/mysql/mysql.sock’ (11) in /home/.../public_html/lib/class_db.php on line 85

Seems like your database credentials are incorrect, or mysql server is down. Check with your hosting company first, and make sure that mysql server is up and running.

Sir can we use CCavenue Payment gateway for this if yes i am ready to buy

Sorry, no CCavenue support at this time.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey