RRowley

Forum Replies Created

Viewing 15 posts - 241 through 255 (of 301 total)
  • Author
    Posts
  • in reply to: prepopulation of invoice fields not working #754
    RRowley
    Participant

    Don’t think there is any way to do this via the new invoice url.

    in reply to: Currency symbol displaying as HTML code #750
    RRowley
    Participant

    Fix display to handle HTML codes. Update is available on github.com. Version 2019.2.14 20200114.

    in reply to: Emailing error #747
    RRowley
    Participant

    Do you really have localhost email server setup and running? If so, what is it?

    You can use a remote server like gmail if you have and gmail account. Here are the settings for that>

    email.host = smtp.gmail.com
    email.smtp_auth = true
    email.username = your-gmail-username
    email.password = your-gmail-password
    email.smtpport = 465
    email.secure = SSL
    email.ack = false
    email.use_local_sendmail = false

    in reply to: Emailing error #745
    RRowley
    Participant

    Typically a set up issue. Without giving me your username and password, what are the other settings for email in the config/custom.config.php file?

    in reply to: Decimal places for products #743
    RRowley
    Participant

    I tried your set up. Correct that amount is truncated to two decimal places but that truncated amount does print on the invoice correctly.

    in reply to: Decimal places for products #740
    RRowley
    Participant

    Why include taxes in the unit price? What is the reason you can’t use the taxes feature of SI?

    in reply to: Nebraska theme template – modified #736
    RRowley
    Participant

    Concern about the fax field. It is a field with a specific function. Believe it or not, fax capability still exists and is used. A better field would be to use a custom field. These are user defined, and if you use field 1 but another user already used field 1, then they could easily update their form to use field 2, etc.

    in reply to: Nebraska theme template – modified #734
    RRowley
    Participant

    This is a beautiful template. It also worked first try after loading it. There are two ways I can think of to include it. One is to make it the new default template. The other is to modify the .gitignore file to allow specific template directories to be included in the package. I’m inclined to do the later. One, it doesn’t disrupt people using the default who are satisfied with it. Second and more important, it is a way to allow others who want to contribute professional templates to the package to have them included. So I plan on including it as a directory option that can be selected in place of the default. Thank you again for this contribution.

    in reply to: Nebraska theme template – modified #733
    RRowley
    Participant

    Thank you for your contribution. I’ll review what you’ve provided and see how it might best be shared.

    in reply to: Fatal error: Uncaught PdoDbException: [0]: PdoDb rollback() #727
    RRowley
    Participant

    I encourage you to use the master_2019.2 version to make sure you have the most current corrections as well as working with a version that more easily supported. That said, is there additional information about this error in the tmp/log/php.log file?

    in reply to: Decimal point is comma #723
    RRowley
    Participant

    Please be specific as to the items set and the values they were set to so I can replicate and test it.

    in reply to: Recurrence error #721
    RRowley
    Participant

    In the templates/default/cron/add.tpl file on line 114. Remove the “/” before the terminating “>” sign. So this:
    <input type=”hidden” name=”domain_id” value={if isset($domain_id)}{$domain_id}{/if}/>
    becomes this:
    <input type=”hidden” name=”domain_id” value={if isset($domain_id)}{$domain_id}{/if}>

    in reply to: I can’t update clients #717
    RRowley
    Participant

    There is some database setting the is not allowing an empty string to work as the same as the numeric 0 default value for a field. The si_customers table default_invoice field is int type and has a default value of 0. The update command was sending in an empty string (”) when this field was not set. This caused an error to be thrown. This default works on my database but not yours which is why I think it is some DB setting that differs on you set up vs mine.

    I updated the customer update screen to send a 0 in for this field. This change has been uploaded to the SI version github. The new SI version is 2019.2.11. You can copy the templates/default/customers/details.tpl file from github and replace the one on your install. See if that helps. If so, you should pull the entire update and replace what you have so the the version and other info gets updated also.

    While this might fix the customer update, you might encounter a similar issue on other screens. So determining the database setting that lets mine work and yours not, will be the best all around solution. I’ll keep checking to see if I can find this.

    in reply to: Pdf Logo doesn’t work #713
    RRowley
    Participant

    When you say “master release for php 5.2,” are you talking about a fearless359 version of SI or the original version of SI? The fearless359 master version has a version number of 2018.2.8_1 in the config/config.php file. If you are using the fearless359 master version, you should use php 5.6 as a minimum level.

    If you can update to php 7.2 or higher, then you should consider upgrading to master_2019 or master_2019.2

    in reply to: Mail not working #711
    RRowley
    Participant

    #3 above shows the error comes from a call of line 113 in the Inc/Claz/Email.php file. This does not match the current version of this source currently checked into github. Please download and install the current version of Fearless359 SI and test again. There was a specific change to the email security logic that was in version 2019.2.7.

    If you have a gmail account, you might try routing through it. Here are the settings I use for testing sans username and password.

    email.host = smtp.gmail.com
    email.smtp_auth = true
    email.smtpport = 465
    email.secure = SSL

    If the problem persists, excluding the username and password, send me the settings you have in custom.config.php for the email configuration.

Viewing 15 posts - 241 through 255 (of 301 total)