Jump to content

seintitus

Members
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by seintitus

  1. I already requested for java and it's currently enabled. Now my question is that the application I am trying to install is Cyclos4 app. I have already downloaded the necessary files from their website: cyclos.org and have uploaded to my public_html. And I am stuck there not sure how to configure
  2. Hello. I am trying to setup my java app but I have no idea how to go about it. I have just uploaded all the files on public_html but I can't figure out how to set it up. Kindly assist. My username is: tchesoen, server: tommy, main domain is: cyclos.za.org
  3. I am running a wordpress theme on my account and it seems to be weighing load on server and thus resulting to my account being suspended. Yesterday you suggested that I try simply static plugin but it's not working. Would you kindly unsuspend my account so that I completely uninstall wordpress theme from my website? My username is: tchesoen , server: tommy and main domain: cyclos.za.org
  4. Hello. I tried to install the plugin you had suggested "simply static" but it's seems that it's not working anymore with wordpress update 5.5.1. Now my account is suspended again. Would you kindly unsuspend my account so that I can completely uninstall the wordpress theme because it seems to me that it's not working well with free hosting?
  5. HelioHost username: tchesoen Server: Tommy HelioHost main domain: http://cyclos.za.org/ I just got an error message that my account is suspended but I don't understand why? Please give me some insights.
  6. Hello I have just started building my new site and today all of a sudden I get an account suspended error. My username is tchesoen, server:tommy. I don't understand why my account was suspended since I believe I have not violated any terms and conditions. Kindly assist me reinstate my account. I love heliohost!
  7. how do i go about setting it as main domain? Regards, Titus
  8. I am trying to add your nameserver to my domain provider and I get an error saying: ERROR: Nameserver ns1.heliohost.org is not authoritative for cyclos.za.org I have contacted my domain provider and they asked me to first add the domain to my heliohost account as that would clear the said error. So I am kindly asking you if you can add this addon domain(cyclos.za.org) to my account. My username is: tchesoen , server: tommy Regards, Titus Chesoen
  9. I find it strange thou because yesterday I installed the same script here and it was working fine but I decided to delete it since I was having slight error with sending email. But now that am trying to reinstall. It has completely refused to work.
  10. What is the current Laravel version on tommy? Regards, Titus
  11. Below I am including the code where it throws the error message: ** * Cleans or flushes output buffers up to target level. * * Resulting level can be greater than target level if a non-removable buffer has been encountered. * * @final */ public static function closeOutputBuffers(int $targetLevel, bool $flush): void { $status = ob_get_status(true); $level = \count($status); $flags = PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? PHP_OUTPUT_HANDLER_FLUSHABLE : PHP_OUTPUT_HANDLER_CLEANABLE); while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) { if ($flush) { ob_end_flush(); } else { ob_end_clean(); } } }
  12. I bet the emails are being blocked from your side because i have just tested the same script with interserver host and the emails are being delivered with no problem. Kindly confirm.
  13. Yes when a new user register an account, they dont receive notification mail. I am using mail() I have tested the script on a different host and the email function works well. Regards, Titus
  14. No i dont get any error message. I have tried to run 2 different scripts on the same account but non can send emails
  15. Hello. I have just uploaded and testing my script on tommy server. My username is tchesoen and my website is damicotrust.heliohost.org. When i register as a new user, i dont get any registration email confirmation. I tested the script on local host and everything is working well. Regards, Titus
  16. Hello. I would like to request that you run the following command: php artisan config:cache my website is: www.damicotrust.com, username: tchesoen and server: tommy. Regards Titus
  17. <?php return [ /* |-------------------------------------------------------------------------- | Mail Driver |-------------------------------------------------------------------------- | | Laravel supports both SMTP and PHP's "mail" function as drivers for the | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | | Supported: "smtp", "sendmail", "mailgun", "ses", | "postmark", "log", "array" | */ 'driver' => env('MAIL_DRIVER', 'smtp'), /* |-------------------------------------------------------------------------- | SMTP Host Address |-------------------------------------------------------------------------- | | Here you may provide the host address of the SMTP server used by your | applications. A default option is provided that is compatible with | the Mailgun mail service which will provide reliable deliveries. | */ 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), /* |-------------------------------------------------------------------------- | SMTP Host Port |-------------------------------------------------------------------------- | | This is the SMTP port used by your application to deliver e-mails to | users of the application. Like the host we have set this value to | stay compatible with the Mailgun e-mail application by default. | */ 'port' => env('MAIL_PORT', 587), /* |-------------------------------------------------------------------------- | Global "From" Address |-------------------------------------------------------------------------- | | You may wish for all e-mails sent by your application to be sent from | the same address. Here, you may specify a name and address that is | used globally for all e-mails that are sent by your application. | */ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 'name' => env('MAIL_FROM_NAME', 'Example'), ], /* |-------------------------------------------------------------------------- | E-Mail Encryption Protocol |-------------------------------------------------------------------------- | | Here you may specify the encryption protocol that should be used when | the application send e-mail messages. A sensible default using the | transport layer security protocol should provide great security. | */ 'encryption' => env('MAIL_ENCRYPTION', 'tls'), /* |-------------------------------------------------------------------------- | SMTP Server Username |-------------------------------------------------------------------------- | | If your SMTP server requires a username for authentication, you should | set it here. This will get used to authenticate with your server on | connection. You may also set the "password" value below this one. | */ 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), /* |-------------------------------------------------------------------------- | Sendmail System Path |-------------------------------------------------------------------------- | | When using the "sendmail" driver to send e-mails, we will need to know | the path to where Sendmail lives on this server. A default path has | been provided here, which will work well on most of your systems. | */ 'sendmail' => '/usr/sbin/sendmail -bs', /* |-------------------------------------------------------------------------- | Markdown Mail Settings |-------------------------------------------------------------------------- | | If you are using Markdown based email rendering, you may configure your | theme and component paths here, allowing you to customize the design | of the emails. Or, you may simply stick with the Laravel defaults! | */ 'markdown' => [ 'theme' => 'default', 'paths' => [ resource_path('views/vendor/mail'), ], ], /* |-------------------------------------------------------------------------- | Log Channel |-------------------------------------------------------------------------- | | If you are using the "log" driver, you may specify the logging channel | if you prefer to keep mail messages separate from other log entries | for simpler reading. Otherwise, the default channel will be used. | */ 'log_channel' => env('MAIL_LOG_CHANNEL'), ]; I am unable to send emails using smtp on my script. I have hereby attached mail.php file. The question is, Do i need to edit info on this file in order for it to work? for instance maybe change host, port, etc?
  18. Hello. Iam Configuring an email client and its asking me for smtp host. What should i write on that part? Regards, Titus
  19. Hello. Kindly send the invite to tchesoen@gmail.com
  20. Hello. PayPal transaction ID is :6UR21791KC5225302 Regards, Titus
×
×
  • Create New...