Jump to content

Micahel Yoon

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Micahel Yoon

  1. Expire date issue after domain renewed. Domain registration for 1 year. Regist Date : 2023-05-29 Renewal Date : 2024-05-29 Expiration Date : 2024-05-29 Renew domain for 1 year. Regist Date : 2023-05-29 Renewal Date : 2025-05-29 Expiration Date : 2024-05-29
  2. There is a problem with the user function of the ispconfig module. Blesta 5.5.3 ISPConfig 1.9.0 If you click the Statistics menu of the service, the following error appears. https://~/client/services/manage/[ServiceNo]/tabClientStats/ Something went wrong. Undefined property: stdClass::$type. Undefined property: stdClass::$type on line 1192 in 1181 public function tabClientStats($package, $service, array $get = null, array $post = null, array $files = null) 1182 { 1183 $this->view = new View('tab_client_stats', 'default'); 1184 1185 // Load the helpers required for this view 1186 Loader::loadHelpers($this, ['Form', 'Html']); 1187 1188 $stats = $this->getStats($package, $service); 1189 1190 $this->view->set('stats', $stats); 1191 1192 $this->view->set('user_type', $package->meta->type); 1193 1194 $this->view->setDefaultView('components' . DS . 'modules' . DS . 'ispconfig' . DS); 1195 1196 return $this->view->fetch(); 1197 } If you dump the data at that location, there is actually no type in the meta data. ./blesta/components/modules/ispconfig/ispconfig.php 1192 file_put_contents('/logs_blesta/dump.log',print_r($package, TRUE), FILE_APPEND); 1193 //$this->view->set('user_type', $package->meta->type); >> Dump data stdClass Object ( [package] => 0 [php_options] => Array ( [php-fpm] => php-fpm ) [ssh_options] => Array ( [no] => no ) ) If you comment out the code, it works normally. Am I missing data($type) because of what I did wrong? Or is it something else? I have been studying and modifying for nearly a year to use Blesta. It's fun, but now is the time to use it.
  3. I am so grateful for all your help.
  4. Problem with the renewal of the period of the universal module. https://dev.blesta.com/browse/CORE-4703 I have identified the cause of the renew issue in the universal module. The universal module's service option values are not transferred to the service_changes table. If the required values are put in the data field value of the service_chaneges table, the update is performed normally. DB Table [service_changes] Period renewal data automatically generated by Blesta. service_changes.data {"date_renews":"2023-05-05 00:00:00","date_last_renewed":"2023-04-04 15:00:00","date_canceled":null} service_changes.status : pending -> error The value entered by me. {"date_renews":"2023-05-05 00:00:00","date_last_renewed":"2023-04-04 15:00:00","date_canceled":null,"account":"","dbname":"","dbpass":"","hostname":"test.com","password":"","set_db":"localhost","set_host":"lnx2","set_mx":"mx1"} service_changes.status : pending -> completed Can you please tell me how to enable the value to be passed to the service_changes.data field when the service period is extended. https://dev.blesta.com/browse/CORE-4703 I've been waiting 5 months already. Please process it quickly. Thank you.
×
×
  • Create New...