Jump to content

serge

Members
  • Posts

    695
  • Joined

  • Last visited

  • Days Won

    6

Reputation Activity

  1. Like
    serge reacted to Tyson in Get Client_Id Value In Client_Main_Custom_Fields.pdt   
    The user ID and client ID reference different tables in the database and represent different records. While it's possible the user ID and client ID can be the same for some users, it is not reliable to assume this to be the case. You should reference the correct ID for what you're trying to do.
     
    user ID = user login information
    client ID = client information
     
    Every client has a user, but not every user is a client.
  2. Like
    serge got a reaction from Blesta Addons in Feedback About Nmap Security Scanner ?   
    Are you using it on your server, and if yes, what's your feedback
     
    https://nmap.org/
  3. Like
    serge got a reaction from Paul in Debian 8 (Jessie)   
    I solved my issue, by the way, since OS upgrade, server switched in maintenance mode (single-user-mode) at boot, but I did not figured before, so I corrected
  4. Like
    serge reacted to Paul in Feedback About Nmap Security Scanner ?   
    I use nmap all of the time, it's even good for checking a variety of different things, including what SSL/TLS versions and ciphers are supported by a web server. Good for making sure you have SSL v2 and v3 disabled. Of course ssllabs.com is great too.
  5. Like
    serge reacted to mrrsm in Feedback About Nmap Security Scanner ?   
    I've used it many times when scanning a LAN and for seeing what ports and services are available on a given machine.  There isn't much need to have it on most servers but it is almost always installed on my laptops.
  6. Like
    serge got a reaction from evolvewh in Issues With Piping   
    it's will help you for your blesta email be not assimillated as spam or a spammer simulate being you, if you have some DNS TXT records like:
    1/ A TXT DNS RECORD to definite allowed sender, so you will list your server IP(s):"v=spf1 ip4:85.214.93.191 ip4:85.214.149.150 -all" 2/ A TXT DNS RECORD FOR DKIM
     
     
    Other, regarding your permission level on the pipe file, there should not have relation as said Paul, but your mail box (mail server) is on the same server as your Blesta install?  If not it's explain you needed 777 level, but using piping is only when all is on same server.
     
    if you are well on same sever, if you needed 777 for that work, it's could mean you user/group didn't own any right on the piping file and that really bad to solve it by giving full right to anybody
  7. Like
    serge reacted to Blesta Addons in Client Theme.css Generator   
    Hello
     
    when i was playing with a custom theme , i have found that the ClientTheme always use the theme.css of the bootsrap template .  and normally it should fetch them file from the client set template .
     
    in admin side i have set a custom template , normally it should fetch this file from this custom template .
    // Set the path to the custom theme style sheet     $theme_loc = VIEWDIR . "client" . DS . "bootstrap" . DS . "css" . DS . $dir . "theme.css"; a simple fix
    // Set the path to the custom theme style sheet     $theme_loc = VIEWDIR . "client" . DS . $this->layout . DS . "css" . DS . $dir . "theme.css";
  8. Like
    serge reacted to PauloV in [Gateway] Sofort Banking 1.0.0   
    Hello Blestars
    Once again free content for all
    This time one of the best Banking gateway in Europe, SOFORT Banking - https://www.sofort.com/
    Teaser 1:

    Teaser 2:

    Just set your merchant acccount https://www.sofort.com/, create a "Project" and set your URL's, copy your "Configuration Key" of your "Project" and your are done!
    How to Install
    1º- Download the Sofort Payment Module here: updated 05-09-2015
    2º- Uncompress, and upload the folder "sofort" to blesta /components/gateways/nonmerchant/ directory.
    3º- Go to Blesta Admin, and click on Setings->Company->Payment Gateways->Available and it will list the "Sofort" module, just Click on "Install"
    4º- Now Add your Sofort.com Config Key, and select your Currency.
    5º- Got to your Order Forms in Packages->Order Forms and edit and select your new Payment Sofort, below.
    How to Upgrade
    1º- Download the Sofort Payment Module here: updated 05-09-2015
    2º- Uncompress, and upload the folder "sofort" to blesta /components/gateways/nonmerchant/ directory and replace all files.
    3º- Go to Blesta Admin, and click on Setings->Company->Payment Gateways and it will list the "Sofort" module, just Click on "Upgrade"
    4º- Now test it
    How to Uninstall
    Go to Blesta Admin, and click on Setings->Company->Payment Gateways and it will list the "Sofort" module, just Click on "UNINSTALL"
    Any problem just say
    Regards,
    PV
  9. Like
    serge reacted to Tyson in Get Client_Id Value In Client_Main_Custom_Fields.pdt   
    This is the user ID. The client ID would be available with:
    $vars->client_id However, the content of $vars changes based on post data. For example, if there was an error on the page, the page would be shown again and $vars would not contain the client ID any longer.
  10. Like
    serge reacted to Blesta Addons in Get Client_Id Value In Client_Main_Custom_Fields.pdt   
    you need it without hacking the core file ?
    $vars->id
  11. Like
    serge reacted to Michael in Effective Emails?   
    Make a client test account or make yourself one in your name... I do that
  12. Like
    serge reacted to Max in At Customer Registration Or Edit Detail: Check If The User/ Mailbox Really Exist   
    Should send an e-mail with verification verification code.
    Testing if a mail box exist is not reliable, e.g. will not work if the mail server has grey listing enabled. Nor does it guarantee the e-mail address belongs to the person that signed up.
    It is also a requirement when doing domain registrations that you verified the address, at many tlds.
  13. Like
    serge reacted to Michael in At Customer Registration Or Edit Detail: Check If The User/ Mailbox Really Exist   
    Blesta only checks the valid domain... they are planing to send a verify link for resets so maybe add to it to verify account.... but Max has an edit on the forum to verify emails.
    https://dev.blesta.com/browse/CORE-1725
    http://www.blesta.com/forums/index.php?/topic/2013-registration-form-vat-number-and-e-mail-address-verification/
  14. Like
    serge got a reaction from Michael in Blesta Install Compromised   
    I do not understand, you receive a spam (email) and you presume your blesta install is compromised, but what is the relation?
  15. Like
    serge reacted to Michael in User Registration   
    sounds like you aren't using my way but registering on a order form when buying a product.
  16. Like
    serge reacted to Blesta Addons in Transaction Gateway Not Recorded   
    From the code exit in the no marchent gateway php file  se that is in first , before ading any transaction , it search if the the transaction ID exist already .  so duplicated transaction is not stored . like paypal send some notification more than  twice .
     
    the solution that you have posted is also accepted ,"passing the transaction that was created in the callback to the return URL"  is another approuch .i love to see those added as soon as possible .
  17. Like
    serge reacted to Blesta Addons in Transaction Gateway Not Recorded   
    i have describe this in my post #3 .
     
    the resume of the problem .
     
    validate function = transaction are stored in database , no response to the view , it return no data to the (received view ).
    success function = transaction not stored in database , it send the response to the view (received view )
     
    Solution .
     
    return_url (received view ) should also store transaction response in database .
     
    is really strange why blesta is not implemented this .
     
    a sample case to reflex with it , let say paypal gateway. when the client make the payment with paypal gateway and is something prevent the payment from be accepted , the client will not know it immediately , as blesta will always show just a processing message . and not handling the response status is success or declined . all the other software specially e-commerce is doing this by native .
     
    blesta should accept that
     
    - Not all the gateway has a notification system .
    - The client should see the result of the transaction he made in the blesta system also .
    - We should provide to the client a transaction id to store it for later use ( claims , late in processing order ...ect ) when the payment has been done (no matter for the status is it) . smething like what activa suggest in post #6 .
     
    the only solution for all this case is to make the processReceived() work as processNotification() .
  18. Like
    serge got a reaction from Michael in At What Table Blesta Store User Email Address?   
    I was schearching before any any tables but not in CONTACTS where it was really
  19. Like
    serge reacted to Michael in At What Table Blesta Store User Email Address?   
    contact, staff and users
  20. Like
    serge got a reaction from ariq01 in Error Smtp (Mail Settings) On Blesta   
    it's seem not a conection issue (port, protocol, firewall), but more an authentication issue, so your login credential could be wrong or you have to mention at mandril account the ip/hostname of the remote server (blesta) for it's be allowed.
     
    try also to re-generate your credential at mandrill
     
    also have you white listed mandril ip(s) at your firewall, and flush all previous ip blocked
  21. Like
    serge reacted to Michael in Error Smtp (Mail Settings) On Blesta   
    I bet any money it's the password you are using.
  22. Like
    serge reacted to Fantasma in [Plugin] BlestaCMS   
    Does this work for multiple companies? (IE: each company can have its own unique links/setup?)
  23. Like
    serge reacted to Blesta Addons in New Plugins In The Road   
    digital module is done .
     
    what do you except that it can do ?
     
    as now , you can create package , upload file and asign it to that package . the client can download the file from the service manage tab .
     
    next release , assign more than 1 file to a package ( like zip file , file for documentation ect ... )
  24. Like
    serge reacted to Paul in [Gateway] Braintree   
    The merchant gateway Braintree is now available for Blesta, and will be included in the next release. The gateway requires PHP 5.4 so, don't install it if you aren't running PHP 5.4 or greater.
     
    To install, download the attached braintree.zip, unzip and upload the braintree directory to ~/components/gateways/merchant/
     
    Then, follow the directions in the documentation at https://docs.blesta.com/display/user/Braintree
     
    braintree.zip
  25. Like
    serge reacted to activa in 1 (One) Minute Cron Jobs :)   
    also for me, if we put activation instantly in our website , it should instantly  
     
    my request goes for activating order and sending email . is a pain wait 5 minute or less to do it .
×
×
  • Create New...