Skip to content

Commit d19f0e1

Browse files
author
Magento Mirror
committed
Import Magento Release 1.1.1
0 parents  commit d19f0e1

File tree

7,382 files changed

+874860
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,382 files changed

+874860
-0
lines changed

.htaccess

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
############################################
2+
## uncomment these lines for CGI mode
3+
## make sure to specify the correct cgi php binary file name
4+
## it might be /cgi-bin/php-cgi
5+
6+
# Action php5-cgi /cgi-bin/php5-cgi
7+
# AddHandler php5-cgi .php
8+
9+
############################################
10+
## GoDaddy specific options
11+
12+
# Options -MultiViews
13+
14+
## you might also need to add this line to php.ini
15+
## cgi.fix_pathinfo = 1
16+
## if it still doesn't work, rename php.ini to php5.ini
17+
18+
############################################
19+
## this line is specific for 1and1 hosting
20+
21+
#AddType x-mapp-php5 .php
22+
#AddHandler x-mapp-php5 .php
23+
24+
############################################
25+
## default index file
26+
27+
DirectoryIndex index.php
28+
29+
<IfModule mod_php5.c>
30+
31+
############################################
32+
## adjust memory limit
33+
34+
# php_value memory_limit 64M
35+
php_value memory_limit 128M
36+
php_value max_execution_time 18000
37+
38+
############################################
39+
## disable magic quotes for php request vars
40+
41+
php_flag magic_quotes_gpc off
42+
43+
############################################
44+
## disable automatic session start
45+
## before autoload was initialized
46+
47+
php_flag session.auto_start off
48+
49+
############################################
50+
## enable resulting html compression
51+
52+
#php_flag zlib.output_compression on
53+
54+
###########################################
55+
# disable user agent verification to not break multiple image upload
56+
57+
php_flag suhosin.session.cryptua off
58+
59+
###########################################
60+
# turn off compatibility with PHP4 when dealing with objects
61+
62+
php_flag zend.ze1_compatibility_mode Off
63+
64+
</IfModule>
65+
66+
<IfModule mod_security.c>
67+
###########################################
68+
# disable POST processing to not break multiple image upload
69+
70+
SecFilterEngine Off
71+
SecFilterScanPOST Off
72+
</IfModule>
73+
74+
<IfModule mod_deflate.c>
75+
76+
############################################
77+
## enable apache served files compression
78+
## http://developer.yahoo.com/performance/rules.html#gzip
79+
80+
# Insert filter
81+
#SetOutputFilter DEFLATE
82+
83+
# Netscape 4.x has some problems...
84+
#BrowserMatch ^Mozilla/4 gzip-only-text/html
85+
86+
# Netscape 4.06-4.08 have some more problems
87+
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
88+
89+
# MSIE masquerades as Netscape, but it is fine
90+
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
91+
# Don't compress images
92+
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
93+
94+
# Make sure proxies don't deliver the wrong content
95+
#Header append Vary User-Agent env=!dont-vary
96+
97+
</IfModule>
98+
99+
<IfModule mod_ssl.c>
100+
101+
############################################
102+
## make HTTPS env vars available for CGI mode
103+
104+
SSLOptions StdEnvVars
105+
106+
</IfModule>
107+
108+
<IfModule mod_rewrite.c>
109+
110+
############################################
111+
## enable rewrites
112+
113+
Options +FollowSymLinks
114+
RewriteEngine on
115+
116+
############################################
117+
## you can put here your magento root folder
118+
## path relative to web root
119+
120+
#RewriteBase /magento/
121+
122+
############################################
123+
## workaround for HTTP authorization
124+
## in CGI environment
125+
126+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
127+
128+
############################################
129+
## always send 404 on missing files in these folders
130+
131+
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
132+
133+
############################################
134+
## never rewrite for existing files, directories and links
135+
136+
RewriteCond %{REQUEST_FILENAME} !-f
137+
RewriteCond %{REQUEST_FILENAME} !-d
138+
RewriteCond %{REQUEST_FILENAME} !-l
139+
140+
############################################
141+
## rewrite everything else to index.php
142+
143+
RewriteRule .* index.php [L]
144+
145+
</IfModule>
146+
147+
148+
############################################
149+
## Prevent character encoding issues from server overrides
150+
## If you still have problems, use the second line instead
151+
152+
AddDefaultCharset Off
153+
#AddDefaultCharset UTF-8
154+
155+
<IfModule mod_expires.c>
156+
157+
############################################
158+
## Add default Expires header
159+
## http://developer.yahoo.com/performance/rules.html#expires
160+
161+
ExpiresDefault "access plus 1 year"
162+
163+
</IfModule>
164+
165+
############################################
166+
## By default allow all access
167+
168+
Order allow,deny
169+
Allow from all
170+
171+
############################################
172+
## If running in cluster environment, uncomment this
173+
## http://developer.yahoo.com/performance/rules.html#etags
174+
175+
#FileETag none
176+

.htaccess.sample

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
############################################
2+
## uncomment these lines for CGI mode
3+
## make sure to specify the correct cgi php binary file name
4+
## it might be /cgi-bin/php-cgi
5+
6+
# Action php5-cgi /cgi-bin/php5-cgi
7+
# AddHandler php5-cgi .php
8+
9+
############################################
10+
## GoDaddy specific options
11+
12+
# Options -MultiViews
13+
14+
## you might also need to add this line to php.ini
15+
## cgi.fix_pathinfo = 1
16+
## if it still doesn't work, rename php.ini to php5.ini
17+
18+
############################################
19+
## this line is specific for 1and1 hosting
20+
21+
#AddType x-mapp-php5 .php
22+
#AddHandler x-mapp-php5 .php
23+
24+
############################################
25+
## default index file
26+
27+
DirectoryIndex index.php
28+
29+
<IfModule mod_php5.c>
30+
31+
############################################
32+
## adjust memory limit
33+
34+
php_value memory_limit 64M
35+
php_value max_execution_time 18000
36+
37+
############################################
38+
## disable magic quotes for php request vars
39+
40+
php_flag magic_quotes_gpc off
41+
42+
############################################
43+
## disable automatic session start
44+
## before autoload was initialized
45+
46+
php_flag session.auto_start off
47+
48+
############################################
49+
## enable resulting html compression
50+
51+
#php_flag zlib.output_compression on
52+
53+
###########################################
54+
# disable user agent verification to not break multiple image upload
55+
56+
php_flag suhosin.session.cryptua off
57+
58+
###########################################
59+
# turn off compatibility with PHP4 when dealing with objects
60+
61+
php_flag zend.ze1_compatibility_mode Off
62+
63+
</IfModule>
64+
65+
<IfModule mod_security.c>
66+
###########################################
67+
# disable POST processing to not break multiple image upload
68+
69+
SecFilterEngine Off
70+
SecFilterScanPOST Off
71+
</IfModule>
72+
73+
<IfModule mod_deflate.c>
74+
75+
############################################
76+
## enable apache served files compression
77+
## http://developer.yahoo.com/performance/rules.html#gzip
78+
79+
# Insert filter
80+
#SetOutputFilter DEFLATE
81+
82+
# Netscape 4.x has some problems...
83+
#BrowserMatch ^Mozilla/4 gzip-only-text/html
84+
85+
# Netscape 4.06-4.08 have some more problems
86+
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
87+
88+
# MSIE masquerades as Netscape, but it is fine
89+
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
90+
# Don't compress images
91+
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
92+
93+
# Make sure proxies don't deliver the wrong content
94+
#Header append Vary User-Agent env=!dont-vary
95+
96+
</IfModule>
97+
98+
<IfModule mod_ssl.c>
99+
100+
############################################
101+
## make HTTPS env vars available for CGI mode
102+
103+
SSLOptions StdEnvVars
104+
105+
</IfModule>
106+
107+
<IfModule mod_rewrite.c>
108+
109+
############################################
110+
## enable rewrites
111+
112+
Options +FollowSymLinks
113+
RewriteEngine on
114+
115+
############################################
116+
## you can put here your magento root folder
117+
## path relative to web root
118+
119+
#RewriteBase /magento/
120+
121+
############################################
122+
## workaround for HTTP authorization
123+
## in CGI environment
124+
125+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
126+
127+
############################################
128+
## always send 404 on missing files in these folders
129+
130+
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
131+
132+
############################################
133+
## never rewrite for existing files, directories and links
134+
135+
RewriteCond %{REQUEST_FILENAME} !-f
136+
RewriteCond %{REQUEST_FILENAME} !-d
137+
RewriteCond %{REQUEST_FILENAME} !-l
138+
139+
############################################
140+
## rewrite everything else to index.php
141+
142+
RewriteRule .* index.php [L]
143+
144+
</IfModule>
145+
146+
147+
############################################
148+
## Prevent character encoding issues from server overrides
149+
## If you still have problems, use the second line instead
150+
151+
AddDefaultCharset Off
152+
#AddDefaultCharset UTF-8
153+
154+
<IfModule mod_expires.c>
155+
156+
############################################
157+
## Add default Expires header
158+
## http://developer.yahoo.com/performance/rules.html#expires
159+
160+
ExpiresDefault "access plus 1 year"
161+
162+
</IfModule>
163+
164+
############################################
165+
## By default allow all access
166+
167+
Order allow,deny
168+
Allow from all
169+
170+
############################################
171+
## If running in cluster environment, uncomment this
172+
## http://developer.yahoo.com/performance/rules.html#etags
173+
174+
#FileETag none
175+

404/index.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* Magento
4+
*
5+
* NOTICE OF LICENSE
6+
*
7+
* This source file is subject to the Open Software License (OSL 3.0)
8+
* that is bundled with this package in the file LICENSE.txt.
9+
* It is also available through the world-wide-web at this URL:
10+
* http://opensource.org/licenses/osl-3.0.php
11+
* If you did not receive a copy of the license and are unable to
12+
* obtain it through the world-wide-web, please send an email
13+
* to [email protected] so we can send you a copy immediately.
14+
*
15+
* @category Mage
16+
* @package Mage_Core
17+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
18+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19+
*/
20+
21+
$baseUrl = dirname(dirname($_SERVER['PHP_SELF']));
22+
$store = 'default';
23+
24+
include_once ('skin/'.$store.'/index.phtml');

404/skin/default/images/404.gif

26 KB
Loading

404/skin/default/images/body_bg.gif

72 Bytes
Loading
1013 Bytes
Loading

404/skin/default/images/favicon.ico

1.12 KB
Binary file not shown.
Loading

404/skin/default/images/logo.gif

3.64 KB
Loading

404/skin/default/images/main_bg.gif

31.8 KB
Loading
7.45 KB
Loading

0 commit comments

Comments
 (0)