Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
add version v6.4.2 for PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Artifacts Builder committed Jul 12, 2022
1 parent dbc8653 commit f51c2b8
Show file tree
Hide file tree
Showing 4,884 changed files with 430,795 additions and 14 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Oxid CE v6.4.2 for PHP 7.4

## date: 2022-07-01 01:10:21
## date: 2022-07-13 01:10:22
This is an artefact made with composer on PHP 7.4. You may upload this artefact to your server and can immediately run into the setup routine of Oxid

## contained packages
Expand Down
4 changes: 4 additions & 0 deletions composer.json
Expand Up @@ -36,6 +36,10 @@
"config": {
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"oxid-esales/oxideshop-composer-plugin": true,
"oxid-esales/oxideshop-unified-namespace-generator": true
}
},
"extra": {
Expand Down
1 change: 1 addition & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 64 additions & 0 deletions source/.htaccess
@@ -0,0 +1,64 @@
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteRule ^graphql/?$ widget.php?cl=graphql&skipSession=1 [QSA,NC,L]

RewriteCond %{REQUEST_URI} config\.inc\.php [NC]
RewriteRule ^config\.inc\.php index\.php [R=301,L]

RewriteCond %{REQUEST_URI} setup [NC]
RewriteRule ^setup(.*)$ Setup$1 [R=301,L]

RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]

RewriteCond %{REQUEST_URI} oxseo\.php$
RewriteCond %{QUERY_STRING} mod_rewrite_module_is=off
RewriteRule oxseo\.php$ oxseo.php?mod_rewrite_module_is=on [L]

RewriteCond %{REQUEST_URI} !(\/admin\/|\/Core\/|\/Application\/|\/export\/|\/modules\/|\/out\/|\/Setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(\.html|\/|\.jpe?g|\.css|\.pdf|\.doc|\.gif|\.png|\.js|\.htc|\.svg)$ %{REQUEST_URI}/ [NC,R=301,L]

RewriteCond %{REQUEST_URI} !(\/admin\/|\/Core\/|\/Application\/|\/export\/|\/modules\/|\/out\/|\/Setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.html|\/)$ oxseo.php


RewriteCond %{REQUEST_URI} (\/out\/pictures\/generated\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.jpe?g|\.gif|\.png|\.svg)$ getimg.php [NC]

RewriteRule ^(vendor/) - [F,L,NC]
RewriteRule ^migration - [R=403,L]
</IfModule>

# disabling log file access from outside
<FilesMatch "(EXCEPTION_LOG\.txt|\.log|\.tpl|pkg\.rev|\.ini|pkg\.info|\.pem|composer\.json|composer\.lock|test_config\.yml)$">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
</IfModule>
</FilesMatch>

# Prevent .ht* files from being sent to outside requests
<Files ~ "^\.ht">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
</IfModule>
</Files>

Options -Indexes
DirectoryIndex index.php index.html
789 changes: 789 additions & 0 deletions source/Application/translations/de/lang.php

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions source/Application/translations/de/translit_lang.php
@@ -0,0 +1,24 @@
<?php

/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/

/**
* Character list for replacement in SEO URL's
* @var array SEO replacement list
*/
$aSeoReplaceChars = [
'ä' => 'ae',
'ö' => 'oe',
'ü' => 'ue',
'Ä' => 'Ae',
'Ö' => 'Oe',
'Ü' => 'Ue',
'ß' => 'ss',
];

$aLang = [
'charset' => "UTF-8",
];
789 changes: 789 additions & 0 deletions source/Application/translations/en/lang.php

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions source/Application/translations/en/translit_lang.php
@@ -0,0 +1,24 @@
<?php

/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/

/**
* Character list for replacement in SEO URL's
* @var array SEO replacement list
*/
$aSeoReplaceChars = [
'ä' => 'ae',
'ö' => 'oe',
'ü' => 'ue',
'Ä' => 'Ae',
'Ö' => 'Oe',
'Ü' => 'Ue',
'ß' => 'ss',
];

$aLang = [
'charset' => "UTF-8",
];
19 changes: 19 additions & 0 deletions source/Application/views/admin/de/cust_lang.php.dist
@@ -0,0 +1,19 @@
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/

$sLangName = "Deutsch";
// -------------------------------
// RESOURCE IDENTIFIER = STRING
// -------------------------------
$aLang = [

'charset' => 'UTF-8',

];

/*
[{ oxmultilang ident="GENERAL_YOUWANTTODELETE" }]
*/
242 changes: 242 additions & 0 deletions source/Application/views/admin/de/help_lang.php

Large diffs are not rendered by default.

0 comments on commit f51c2b8

Please sign in to comment.