Jump to content

Bit Bayou

Members
  • Posts

    338
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Bit Bayou

  1. 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. Am I misunderstanding something?  If you open the color picker and edit the hex value it changes the color as you're typing it.

    http://screencast.com/t/bz8e505Zk74

     

    Or are you trying to avoid the color picker all together?

     

    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. that's why I put everything in and click save. it shows up then :)

     

    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 have decided to take part in this theme contest. I am using my Chromebook:

     

    Mozilla/5.0 (X11; CrOS i686 5712.61.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.116 Safari/537.36

     

    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!

  5. 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?

  6. 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?

  7. 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

  8. 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?

     

  9. 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

  10. <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?

  11. 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? 

  12.  

    https://api.namecheap.com/xml.response

    <html><head><title>Object moved</title></head><body>
    <h2>Object moved to <a href="/PredefinedResponses/500-UnhandledException.xml?aspxerrorpath=/xml.response">here</a>.</h2>
    </body></html>

     

     

    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 :)

×
×
  • Create New...