Jump to content

cloudrck

Members
  • Posts

    243
  • Joined

  • Last visited

  • Days Won

    2

cloudrck last won the day on January 16 2018

cloudrck had the most liked content!

Contact Methods

  • Website URL
    http://cloudrck.tech

Profile Information

  • Gender
    Male
  • Location
    USA
  • Interests
    Linux

Recent Profile Visitors

1,798 profile views
  1. It's just the initial email. The staff reply uses the correct email. It really should use the overridden email. I have my email server setup to only allow SMTP through approved domains. And the domain that Blesta picked wasn't one of them.
  2. When someone emails a ticket desk, the sender's 'ticket received' email uses the FROM email that is set in the email template, rather then the override email address set. Even with this set, it ignores it for the person opening the ticket via email. However, the staff assigned to the desk gets an email with the correct overridden email address set. So the bugs is that for people sending emails to open tickets, they receive confirmation with the incorrect FROM address. Blesta v4.3.1 PHP 7.0
  3. This works in Nginx.
  4. What does your Nginx configuration look like? You also shouldn't be accessing Blesta via sub.domain.com/index.php/ unless your Nginx configuration is incorrect. It should be accessible simply via sub.domain.com/ Test using a developer account rather than hoping for it to work correctly.
  5. cloudrck

    Can't Change Theme

    I can't recreate the error. There must be another issue amidst. Did you make the appropriate "cgi.fix_pathinfo = 0;" in php.ini
  6. I've had this issue and it turned out to be an issue with the php.ini for php5-cli not having the entry for mailparse. Have your CRON log errors after you remove the lock from the task in blesta For example, my crontab would look like the following. */5 * * * * /usr/bin/php /var/www/blesta/public_html/index.php cron >> /home/me/blesta.txt 2>&1 Disabiling the task does not halt the task. It's still running as Blesta doesn't halt on failure, it continues to "run". You need to add the code to remove the lock (unless it was changed in v4). When you add the code, you have to wait ~60mins, than a link will appear to halt the task so the cron executes that specific task on next scheduled run, as of now your task is locked. Or you can remove the task manually
  7. What emails are you referring to? There exists logs at URI /admin/tools/logs/email/
  8. Okay, I had honestly never heard of Hugo until you guys posted it. I'd imagine Hugo is faster since it's written in GO. As far as auto-reload, I believe there is a rubygem/Jekyll plugin for such functionality.
  9. Curious, why did you choose Hugo over Jekyll?
  10. This question actually doesn't make sense. Cron has nothing to do with HTTP/S. Cron is a job scheduler, it doesn't care what your script does and it has nothing to do with any protocol. So there is no https or http mode for cron. The problem is either with PHP or your webserver. It's difficult to help since I don't understand what your script is supposed to do. $this->base_url = "http" . (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] != "off" ? "s" : "") . "://" . (isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : nul) . "/"; It looks like you're reading headers from a remote request. Where is this request coming from? Is it coming from a load balancer? Load balancers will sometimes move the variable you're looking for into a different header. Depending on your webserver you may have to check if the connection is over port 443. Also, try checking if the $_SERVER["HTTPS"] is not empty rather than isset.
  11. cloudrck

    Soap_Error2

    Is there more to the error? You check your php/webserver logs? Have you looked at https://www.blesta.com/forums/index.php?/topic/5156-interworx-module-gives-soap-error2/
  12. Check your webserver logs, if the database is too large you may have to tweak settings to compensate for the time it takes for blesta to execute the command. You should have the domain setup with it's own error log file under Nginx. To be honest it might be better to create a shell script that does the backup, and rsync over SSH. I'm looking to implement this on my setup since I'm having issues with Blesta automated backups.
  13. cloudrck

    Backup Automation

    Everything appears as it should be, but the backups are never executed. The user the cron is run under has permission to mysqldump the database. No error logs,
  14. cloudrck

    Backup Automation

    Okay, I can look into it later today. I posted here mainly to verify I was making the correct configuration changes. I will troubleshoot and report back here.
  15. cloudrck

    Backup Automation

    It's set to backup Every Day.
×
×
  • Create New...