This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| multisite_drupal | [Fri Mar 13 22:30:59.584102 2020] [php7:notice] [pid 24] [client 172.18.0.1:55790] Error: Cannot create references to/from string offsets in /var/www/html/web/core/lib/Drupal/Component/Utility/NestedArray.php on line 155 #0 /var/www/html/web/core/lib/Drupal/Core/Form/FormBuilder.php(1247): Drupal\\Component\\Utility\\NestedArray::setValue(Array, Array, NULL)\n#1 /var/www/html/web/core/lib/Drupal/Core/Form/FormBuilder.php(992): Drupal\\Core\\Form\\FormBuilder->handleInputElement('node_multisite_...', Array, Object(Drupal\\Core\\Form\\FormState))\n#2 /var/www/html/web/core/lib/Drupal/Core/Form/FormBuilder.php(1062): Drupal\\Core\\Form\\FormBuilder->doBuildForm('node_multisite_...', Array, Object(Drupal\\Core\\Form\\FormState))\n#3 /var/www/html/web/core/lib/Drupal/Core/Form/FormBuilder.php(1062): Drupal\\Core\\Form\\FormBuilder->doBuildForm('node_multisite_...', Array, Object(Drupal\\Core\\Form\\FormState))\n#4 /var/www/html/web/core/lib/Drupal/Core/Form/FormBuilder.php(1062): Drupal\\Core\\F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [mysqld] | |
| disabled_storage_engines="MyISAM,BLACKHOLE,FEDERATED,ARCHIVE,MEMORY" | |
| server_id=1 | |
| gtid_mode=ON | |
| enforce_gtid_consistency=ON | |
| binlog_checksum=NONE | |
| # | |
| log_bin=binlog | |
| log_slave_updates=ON |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: name_mask: all | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: name_mask: host | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: inet_addr_local: configured 3 IPv4 addresses | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: inet_addr_local: configured 0 IPv6 addresses | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: been_here: 127.0.0.1/32: 0 | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: been_here: 192.168.112.4/32: 0 | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: been_here: 192.168.111.11/32: 0 | |
| Aug 12 01:26:06 smtp raygun_postfix/smtpd[4229]: mynetworks_core: 127.0.0.1/32 192.168.112.4/32 192.168.111.11/32 | |
| Aug 12 01:26:06 smtp postfix/submission/smtpd[4229]: process generation: 76 (76) | |
| Aug 12 01:26:06 smtp postfix/submission/smtpd[4229]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? debug_peer_list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2020-08-17T12:57:58,747][INFO ][o.e.n.Node ] [esnode3.example.org] version[7.8.0], pid[19625], build[default/deb/757314695644ea9a1dc2fecd26d1a43856725e65/2020-06-14T19:35:50.234439Z], OS[Linux/4.15.0-112-generic/amd64], JVM[AdoptOpenJDK/OpenJDK 64-Bit Server VM/14.0.1/14.0.1+7] | |
| [2020-08-17T12:57:58,751][INFO ][o.e.n.Node ] [esnode3.example.org] JVM home [/usr/share/elasticsearch/jdk] | |
| [2020-08-17T12:57:58,751][INFO ][o.e.n.Node ] [esnode3.example.org] JVM arguments [-Xshare:auto, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.locale.providers=SPI,COMPAT, -Xms6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| public static function paginate(int $totalItems, int $offset, int $size) | |
| { | |
| $pages = []; | |
| $i = 0; | |
| $pageNumber = 1; | |
| while ($i <= ($totalItems - $size)) { | |
| $page['number'] = $pageNumber; | |
| $page['offset'] = $i; | |
| $page['size'] = $size; |
OlderNewer