Jump to content

Bit Bayou

Members
  • Posts

    338
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Bit Bayou

  1. Bit Bayou

    Soft Launch

    I like! One critique: In your custom CSS file at https://billing.nimblenode.com/app/views/client/bootstrap/css/nimblenode.css you have: /* Google Fonts */ @import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600|Raleway:400,600); Which makes my browser complain about the web page not being 100% secure.. You should be able to make that /* Google Fonts */ @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600|Raleway:400,600); with no problems, and that should fix the problem! All the best!
  2. 1) I didn't know you could edit the vales in the little box inside of the colorpicker because I really just ignoring it since it was being so obtrusive. 2) You are clicking off to the right of the box to close it, like I do, but that's when it opens the colorpicker for the value on the same row that I clicked... <-- this is the part I found most annoying. I'll see if I can screencast it for you later, but I honestly think it's just an issue with my current version of Chrome, and not necessarily something wrong with anything... All of that said, I'd still like the ability to turn the color picker off all together if desired AND the ability to change the value in the textbox (not the colorpicker) and have the color updated--- which is possible using the default colorpicker solution (I do see Blesta made a custom function along the way..), but something along these lines according to the docs: $(document).ready(function() { // Set the color picker for each color field $('li.colors input.color_well').each(function() { $(this).blestaColorPicker().bind('keyup', function(){ $(this).ColorPickerSetColor(this.value); }); }); }); Which would bind the keyup for each box to update the colorpicker (as desired here)
  3. yeah.. I'd enter or change one number, click save, get the error message saying the form was not completed, then repeat. I mean, I was getting around it... Just annoying to do each time
  4. I love the idea, hate the rate limiting! haha Thanks for the link though! Good find! I'd been considering doing a version of this in Node.js with my IRC & Twitter bots, just not a top priority atm..
  5. I have decided to take part in this theme contest. I am using my Chromebook: When creating a new theme, it's more of a copy/paste process instead of actually sliding that thing all around. That said, the text box color doesn't change unless the colorpicker is used. The default text box background is white and text color is white. I can't see what I'm typing. Kind of annoying. Then as I edit a hex value (using the keyboard not the colorpicker), I have to deselect the text field and select it again for the colorpicker thing to update to the new color... but the text box itself still has the old color. To deselect a text box and make the colorpicker disappear, I usually click in the blank area to the right of the boxes, but that apparently is still part of the li/label/field combo. I deselect the box I wanted, but then end up opening the colorpicker on another box unintentionally. Then my OCD kicks in and I start clicking allllllllll over until I can get this darn thing closed!! XD I'd love a toggle option for the colorpicker, so I can just disable it all together if I want. Would also love the box color to update on keypress too, not just clicking! I like the overall idea and process, this current colorpicker setup is just not working with me!
  6. Bit Bayou

    Whois Guard

    While offering Domain Registration, I'd also be interested in offering a Whois privacy type service... This seems an easy task, just keep current contact information on file for each customer. Reselling this kind of service seems dumb, in a basic view of things.. There may be more legal terms involved, but is there a thought on how to offer this kind of service through Blesta?
  7. That is very helpful! I did not know that!! Thanks!! I'd [once again?] like to recommend a "notes" or "help" section for each module, so maybe such helpful tips would have already been in my face?
  8. I'm updating Blesta this weekend, and recently installed the Bitpay payment module to start accepting Bitcoin! I have a quick question: does Blesta automatically update the exchange rates like other currencies? BTC isn't quite official [yet] and I'm not sure Google Finance has that data on hand? Is this automated, or do I need to set my prices based on the current rate, and keep manually keep them updated?
  9. -- https://support.google.com/checkout/sell/answer/42963?hl=en Does the Google Checkout Payment Gateway in Blesta use the updated Google Wallet services and URL(s)? Essentially, I'm sure it's the same thing (for this case at least), but has this been updated or.....? Just curious!
  10. Glad to see themes becoming more accessible and manageable! I appear to be a few days late, but will hopefully get some time to update my dev install and have a go at this!
  11. I've been playing around with load balancing and port sharing using mod_proxy, which may help you out here too? I'd recommend testing it out before sticking it in production use! Assuming you've set up either a CNAME or A record for the support sub domain you want to point it to your server, you'd append something like this to your httpd.conf file: <VirtualHost 10.1.0.101:80> ServerAdmin admin@domain.com ServerName support.domain.com ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy> <Location /> ProxyPass http://blesta.domain.com:80/client/plugin/support_manager/client_main/ ProxyPassReverse http://blesta.domain.com:80/client/plugin/support_manager/client_main/ </Location> </VirtualHost> Which would proxy [forward] http://support.domain/something to http://blesta.domain.com:80/client/plugin/support_manager/client_main/something
  12. I apologize for the double post, but would like to point out the Gist on GitHub @ https://gist.github.com/c0nfused/10970679 because it may help explain a little further as well. The file is essentially a few redirects, that's it. The code itself doesn't change the look of anything. I do hope to complete this very soon, and create a full plugin for account registration too! Will keep you updated!
  13. I've never attempted to do this before so I don't know if it's possible, but I figured I'd ask. I can send emails to one client at a time (Ex URI: /admin/clients/email/1/) Can I send an email to all clients at once?
  14. Well it essentially has no look... Once installed, you'd add a Login with Facebook button to your website, and link it to the included facebook-login/index.php The user will then either see the Facebook authorization page or your Blesta site (either login page or client main page).
  15. I needed something similar recently, so I thought I'd share. I feel it's not yet a complete plugin because it does not allow for Blesta account creation through Facebook graph information, but it is a working addon to allow Blesta clients to login by connecting through Facebook. This addon requires the Shared Login plugin. You will need to either create a new Facebook App or have the APP ID and APP SECRET of an existing one. You can manage your Facebook apps at https://developers.facebook.com/apps Once set up Clients will first be redirected to Facebook to authorize the app to view their email address. If the email address registered with their Facebook account is also the username of their Blesta account, the client will then be redirected back to your Blesta Portal automatically logged in to their account. Quick Instructions Download facebook-login.zip Edit facebook-login/index.php via Notepad or other text editor Upload facebook-login/ folder (does not need to be in the Blesta plugins folder) Link to facebook-login/index.php for client login Complete instructions can be found at http://docs.bitbayou.com/blesta/facebook-login
  16. What's the latest version this should be working in? I tried to install it, but I think it was right around a Blesta update...
  17. Bit Bayou is in the process of enhancing our services and updating our look. We've recently started using a custom Blesta template, and currently in the process of a complete website rebuild. http://bayou.im/portal Would love feedback!
  18. One option would be to create a new support ticket category for general contacting.. and set the default priority to low.
  19. Bit Bayou

    External Login

    That's what I was looking for! I could not find it!! Thx!
  20. Bit Bayou

    External Login

    <form method="post" action="https://blesta.domain/client/login/"> <table cellpadding="5" style="width: 100%;" border="0"> <tr> <td align="center" valign="middle" style="padding: 20px 0 0 0;"><label for="login_username">Username</label></td> <td width="40%" align="center" style="padding: 20px 0 0 0;"><input style="width:85%" type="text" name="username" value="" id="login_username" /></td> </tr><tr> <td align="center" valign="middle" style="padding: 20px 0 0 0;"><label for="login_password">Password</label></td> <td width="40%" align="center" style="padding: 20px 0 0 0;"><input style="width:85%" type="password" name="password" id="login_password" /></td> </tr><tr> <td colspan="2" align="center" valign="top" style="padding: 20px 0 20px 0;"><input type="submit" name="" value="Account Login" style="margin: 5px 15px 0 15px" /></td> </tr> </table> </form> Something along those lines?
  21. Bit Bayou

    External Login

    I'm not trying to get a shared login, I'm simply trying to create a login form to Blesta, but the CSRF tokens don't like that
  22. Bit Bayou

    External Login

    It's been a long night of programming, so I may be a little off this morning. I'm trying to create a login form on my website homepage to my Blesta install. Is there any quick reference for this that I'm missing?
  23. Bit Bayou

    Release 3.1.3

    That was a quick a turnaround between releases this time! Is this more of a quick "Bug Fix" release, or are you just getting that good?
  24. I remember now! I was trying to register ultimate.tattoo which was coming up as "Copyright" and a Namecheap rep told me they don't deal in those cases to avoid the hassle.. so no matter what I did, the domain was not going to register. I eventually got it at enom
  25. Where would that be?
×
×
  • Create New...