This file contains 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 | |
use Carbon\Carbon; | |
$dt = Carbon::now(); | |
// Global | |
$locale = ('app.locale'); | |
Carbon::setLocale('$locale'); | |
?> | |
{!! Theme::partial('header') !!} |
This file contains 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
.auth-card .form-check .form-check-input { | |
margin-left: 3px; | |
} | |
.form-check-input { | |
position: initial; | |
margin-top: auto; | |
margin-left: auto; | |
} | |
.login-options { | |
text-align: center; |
This file contains 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
INSERT INTO `ec_product_categories` (`id`, `name`, `parent_id`, `description`, `status`, `order`, `image`, `is_featured`, `created_at`, `updated_at`, `icon`, `icon_image`) VALUES | |
(1, 'Animals & Pet Supplies', 0, 'Animals & Pet Supplies', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(8, 'Arts & Entertainment', 0, 'Arts & Entertainment', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(111, 'Business & Industrial', 0, 'Business & Industrial', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(141, 'Cameras & Optics', 0, 'Cameras & Optics', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(166, 'Apparel & Accessories', 0, 'Apparel & Accessories', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(222, 'Electronics', 0, 'Electronics', 'published', 0, NULL, 0, '2023-12-31 21:00:00', '2023-12-31 21:00:00', NULL, NULL), | |
(412, 'Food, Beverage |
This file contains 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
INSERT INTO `ec_product_categories_translations`(`lang_code`, `ec_product_categories_id`, `name`, `description`) VALUES | |
('en_US', 1, 'Animals & Pet Supplies', 'Animals & Pet Supplies'), | |
('en_US', 8, 'en_USts & en_UStertainmen_USt', 'en_USts & en_UStertainmen_USt'), | |
('en_US', 111, 'Business & Industrial', 'Business & Industrial'), | |
('en_US', 141, 'Cameras & Optics', 'Cameras & Optics'), | |
('en_US', 166, 'Appen_USel & Accessories', 'Appen_USel & Accessories'), | |
('en_US', 222, 'Electronics', 'Electronics'), | |
('en_US', 412, 'Food, Beverages & Tobacco', 'Food, Beverages & Tobacco'), | |
('en_US', 436, 'Furniture', 'Furniture'), | |
('en_US', 469, 'Health & Beauty', 'Health & Beauty'), |
This file contains 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
aiohttp==3.9.3 | |
aiohttp-retry==2.8.3 | |
aiosignal==1.3.1 | |
altgraph==0.17.3 | |
appdirs==1.4.4 | |
astor==0.8.1 | |
async-timeout==4.0.2 | |
attrs==23.1.0 | |
Babel==2.9.1 | |
bcrypt==4.0.1 |
This file contains 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
https://skillshop.exceedlms.com/student/catalog/list?category_ids=7781-google-workspace | |
https://skillshop.exceedlms.com/student/catalog/list?category_ids=7782-google-education |
This file contains 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
Package: base-files | |
Pin: release * | |
Pin-Priority: -1 | |
Package: dovecot* | |
Pin: release * | |
Pin-Priority: -1 | |
Package: exim* | |
Pin: release * |
This file contains 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
#https://features.cpanel.net/topic/mail-delivery-reports-wrap-long-text | |
#[Home]/usr/local/cpanel/whostmgr/docroot | |
#mail.css | |
#Lines, 885, 886, 887, 888, 889 | |
.yui-dt-liner { | |
word-wrap: break-word; | |
text-wrap: unrestricted; | |
word-break: break-all; #Add this | |
} | |
#[Home]/usr/local/cpanel/base/webmail/jupiter/css |
This file contains 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
vi /etc/yum.repos.d/ovh-rtm.repo | |
[rtm] | |
name=OVH RTM RHEL/ CentOS $releasever - $basearch | |
baseurl=http://last.public.ovh.rtm.snap.mirrors.ovh.net/centos/$releasever/$basearch/Packages/ | |
enabled=1 | |
repo_gpgcheck=1 | |
gpgkey=http://last.public.ovh.rtm.snap.mirrors.ovh.net/ovh_rtm.pub | |
[metrics] |
This file contains 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
The answer is that there are 3 different .htaccess files: | |
/var/www/app/webroot/.htaccess | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] |
NewerOlder