drtduarte Posted February 25, 2008 Share Posted February 25, 2008 Well, I'm really stuck with this. I was preparing to batch digitally sign invoices on my pc and upload them to the server, so users can download them with a custom dynamic link. I was doing this on whmap, the problem here is that I can't change pdf invoice title on fpdfconfig to include an md5 hash string to avoid users to be able to download others invoices... I'm so sad 0 Quote Link to comment Share on other sites More sharing options...
jonathanjab Posted February 26, 2008 Share Posted February 26, 2008 Have you looked at $pdf->SetTitle()? 0 Quote Link to comment Share on other sites More sharing options...
charliez Posted July 15, 2008 Share Posted July 15, 2008 Any progress on this? Really useful stuff... 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted August 22, 2008 Share Posted August 22, 2008 I need digitally signed invoices, too. What about this SMTP Gateway Service?! http://www.smskaufen.com/sms/index.php?seite=siginfo http://translate.google.de/translate?u=http%3A%2F%2Fwww.smskaufen.com%2Fsms%2Findex.php%3Fseite%3Dsiginfo&hl=de&ie=UTF8&sl=de&tl=en 0 Quote Link to comment Share on other sites More sharing options...
numPhoenix Posted September 7, 2008 Share Posted September 7, 2008 http://www.1t3xt.com/docs/book.php 0 Quote Link to comment Share on other sites More sharing options...
numPhoenix Posted September 7, 2008 Share Posted September 7, 2008 http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf PDF Signature Example http://www.tecnick.com/pagefiles/tcpdf/example_016.phps 0 Quote Link to comment Share on other sites More sharing options...
minadreapta Posted November 14, 2008 Share Posted November 14, 2008 bump bump 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted November 14, 2008 Share Posted November 14, 2008 I've implemented a 3rd party solution. It's beta stadium but works very fine, until now. http://www.smskaufen.com/sms/index.php?seite=siginfo http://translate.google.de/translate 0 Quote Link to comment Share on other sites More sharing options...
alesf77 Posted November 15, 2008 Share Posted November 15, 2008 Hi! I cheched in read the web page you provided. Can you write a but more how did you manage to connect whmcs and smskaufen APIs to word together? Is there a modul or action hook you got? I've implemented a 3rd party solution. It's beta stadium but works very fine, until now. http://www.smskaufen.com/sms/index.php?seite=siginfo http://translate.google.de/translate 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted November 15, 2008 Share Posted November 15, 2008 I used an action hook and created 2 new files. I use this method now for more than 2 weeks and there wasn't an error yet. If you are interested i'll release a commercial modul for all people... - Other gateway services shouldn't be a problem, too. 0 Quote Link to comment Share on other sites More sharing options...
minadreapta Posted November 15, 2008 Share Posted November 15, 2008 well, the google translation is awfull ... anyway, smskaufen means "buy sms"... is this correct? you have to pay 14 cents for each signature? 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted November 15, 2008 Share Posted November 15, 2008 Yes, that's right. smskaufen.de is a service provider for different services like PDF signing, mass sms mailings, post letter mailings, etc... 14 Cent (without VAT) per PDF is correct. If you have more than 500 invoices per month than you can request a quote. If you need another signing provider, i'll try to integrate it for you. 0 Quote Link to comment Share on other sites More sharing options...
alesf77 Posted November 15, 2008 Share Posted November 15, 2008 Sounds as a good sollution. Can you send me or post here a sample invoice digitally signed? I used an action hook and created 2 new files. I use this method now for more than 2 weeks and there wasn't an error yet. If you are interested i'll release a commercial modul for all people... - Other gateway services shouldn't be a problem, too. 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted November 17, 2008 Share Posted November 17, 2008 Send me a PM with your email address please. 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted January 13, 2009 Share Posted January 13, 2009 Anyone is using some of this gateways with success? 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted January 13, 2009 Share Posted January 13, 2009 I'll post my solution tomorrow. I'm very sorry, i was very busy today. 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted January 14, 2009 Share Posted January 14, 2009 I understand you well, my friend. I can wait 0 Quote Link to comment Share on other sites More sharing options...
com2 Posted January 15, 2009 Share Posted January 15, 2009 I just sent WHMCS a request how much Spanish Direct debit would cost, together with electronically signed PDF invoices using iTEXT. People interested should contact me via PM so we can share the cost. 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted January 15, 2009 Share Posted January 15, 2009 (edited) Sorry for my late answer, but we have many requests this days... Here's my tutorial to send signed invoices to your customers: 1.) Sign up at http://www.smskaufen.com/ (They provide many services, PDF signing also) 2.) Create this folders: whmcs/invoices/pdf/ whmcs/invoices/signed/ 3.) Unpack attachment and edit files (<---) 4.) Copy all files from attachment to whmcs/invoices/ 5.) Edit whmcs/includes/actionhooks.php function actionhook_InvoicePaid($vars) { # This function runs when an invoice is fully paid and therefore the services renewed # $vars["InvoiceID"] $ch = curl_init('https://example.com/whmcs/invoices/hook_paid.php?id='.$vars["InvoiceID"]); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HEADER, TRUE); $rueck = curl_exec($ch); curl_close($ch); } 6.) Check everything. - If you get an payment and set an invoice to "paid" an signed invoice will automatically send to your customer. signit.zip Edited January 15, 2009 by rack::SPEED 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted January 15, 2009 Share Posted January 15, 2009 Whoww, I'm impressed... awsome. Just two questions. The pdf invoice is emailed to the customer, and is it also stored signed on the whmcs/invoices/pdf folder? I need that to be that way so the customer can access it at any time on the customer area. Can I have different email languages based on the customer language? 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted January 15, 2009 Share Posted January 15, 2009 It was not easy get it working, but know it works without any problem... Signed eMails are stored in whmcs/invoices/signed/ - So you can link it from there into your customer area or burn it for your finance office. Don't forget to secure your new directories from unfriendly people. I did it with some .htaccess files, otherwise an any person can access your signit.php file and spam your customers... Different languages are not supported at this time, but i'll add this feature in some weeks because of our new customers. It's easy but i'm too busy this days... :-/ 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted January 20, 2009 Share Posted January 20, 2009 I just sent WHMCS a request how much Spanish Direct debit would cost, together with electronically signed PDF invoices using iTEXT. People interested should contact me via PM so we can share the cost. I'm waiting for your reply to my PM... 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted May 7, 2009 Share Posted May 7, 2009 Hello rackspeed, Have you already tested your script with V4? Regards 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted May 7, 2009 Share Posted May 7, 2009 I've scheduled whmcs update for next weekend. I'll post some notes here when i'm finished... 0 Quote Link to comment Share on other sites More sharing options...
rack::SPEED Posted May 10, 2009 Share Posted May 10, 2009 I've tested my digital invoice module with V4. There is only one small file (s. attachment) you must upload to whmcs/includes/hooks/ Dont't forget to correct the path in the script... - Every thing will work fine. Have a great day! Regards, Maik signinvoice.zip 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.