Jump to content

jpkelly

Member
  • Posts

    41
  • Joined

  • Last visited

Everything posted by jpkelly

  1. Anyone know of or use services that provide support for StarDevelop LiveHelp? I am looking for a service that can provide technical support for WHMCS and Plesk users. Hopefully as a pay per incident service.
  2. Dear WHMCS. What is the possibility of you creating a patching tool to automatically install patches and upgrades?
  3. I applied the 5.2.13 patch to my 5.2.12 installation and now all my pages come up blank. HELP!
  4. So I applied the patch and now all WHMCS pages are coming up blank. HELP!
  5. I am running 5.2.12. I want to upgrade. This is a major pain because of the customization I have done and the 5.2.13 upgrade seems to modify 90% of the WHMCS files. Now I see there is a 5.2.14 patch as well. Should I wait for the dust to settle and do the 5.2.15 upgrade? 5.2.16? This is frustrating!
  6. I upgraded to 5.1.2 and now my admin area is really slow. The browser locks up completely when making changes to the home page layout. Initial login takes a very long time now.
  7. Is there a way to have the Enom balance appear on the admin home page?
  8. I had to disable position: relative on line 22 of style.css to be able to use your form.
  9. I want to check this out but cant download it. The registration detail fields are grayed out/disabled and I really don't like the idea of having to give my credit card info for a free download.
  10. If I understand correctly when a user pays an invoice after the due date via PayPal he is not presented with a create subscription button but only a Pay Now button. If this is true what is the logic for preventing subscription creation after the due date? How can a user create a subscription after the due date?
  11. The option to display the clients website is there in this version (as well as email address).
  12. Here is the latest version with the fix for the database problem. client_reviews_1.1.zip
  13. The database create code was not inserting the field I added for the show website option. To fix, drop the table "mod_comments" from your whmcs database. Open the file client_reviews.php file in modules/admin/client_reviews. search for: `emailvisible` tinyint(1) NOT NULL default '0', add after that line of code the following line: `websitevisible` tinyint(1) NOT NULL DEFAULT '0', So that section of code should look like this: if(isset($_GET['createdb'])) { mysql_query("CREATE TABLE IF NOT EXISTS `mod_comments` ( `id` int(10) NOT NULL auto_increment, `userid` int(10) NOT NULL, `comment` longtext NOT NULL, `approved` tinyint(1) NOT NULL default '0', `surnamevisible` tinyint(1) NOT NULL default '0', `emailvisible` tinyint(1) NOT NULL default '0', `websitevisible` tinyint(1) NOT NULL DEFAULT '0', `date` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM;"); header("Location: addonmodules.php?module=client_reviews"); exit(); } Go to your WHMCS Admin>Addons>Client Reviews and click the create database link. This should fix it. I will post an updated zip file with the fix.
  14. Oh yeah, and it also includes a show website option.
  15. Here is a modified version of the module. I have translated the variables and db table to English as best I can. The code included the pagination mod and the line break to <br> tag mod. Enjoy! client_reviews.zip
  16. What is the logic for this behavior? Why cant users create a subscription after the due date? Is there a way to allow them to create a subscription after the due date?
  17. some of your images are gigantic. you might want to optimize them to speed your page loading.
  18. I found that this function in main.js controls the properties of fixedFloatWrapper and changing absolute to inherit in two places fixed it for me. $(document).ready(function(){ recalcsummary(); (function ($) { $.fn.basketFloat = function () { $me = this; var position = this.position(); var yPos; $me.wrap('<div id="fixedFloatWrapper" style="position:inherit;left:' + position.left + 'px;" />'); $(window).scroll(function () { yPos = $(window).scrollTop(); if (yPos >= position.top) { $me.css('position', 'fixed').css('top', '5px'); } else { $me.removeAttr("style"); } }); $(window).resize(function () { $('#fixedFloatWrapper').css('position', 'static'); $me.removeAttr("style"); position = $me.position(); $('#fixedFloatWrapper').css({ 'position': 'inherit', 'left': position.left + 'px' }); if (yPos >= position.top) { $me.css('position', 'fixed').css('top', '0'); } else { $me.removeAttr("style"); } }); }; })(jQuery); jQuery('#cartsummary').basketFloat(); });
  19. Same here... Well actually it vanishes when it gets to the top.
  20. Yes this solved the blank (no http) page issue. Thanks!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated