English Magento Help section

Use nginx and PHP 7 which will give you nearly the same speed as HHVM. Magento 1.9 is more secure than 1.7, performance will be the same. I agree, it is too early too upgrade to 2.0 - too many bugs! You can clean old sales quotes and log tables from the db, I think there is a tool available for free on github.
 
hey guys, do you know what extension for magento to manage inventory? with specific id for each stock

Thanks
 
What do you need to manage exactly? Multiple/separate warehouses? Magento already has a specific ID for each SKU.
 
Is there an easy way to specify image dimensions in magento to boost page loading time?
 
Hi Everyone,
Just wanted to say Hi and thank you all for your amazing works here. I'm a Magento developer and e-eCommerce enthusiastic too.

I'll be sharing some pretty modules, themes, snippets and anything I find useful pretty soon :)

Since the site's first language is Russian and unfortunately my Russian is not that great and tips and helps would be appreciated.

Thank you all and keep up the good work!
 
Hi guys,

Do you know the right settings to use magento with nginx on Plesk 12.5?

I have tried this one but the checkout page does not works.

…………………………………….

## Taken from Для просмотра ссылки Войди или Зарегистрируйся
Код:
# gzip compression

gzip on;

gzip_min_length 1100;

gzip_buffers 4 8k;

gzip_proxied any;

gzip_types text/plain text/css application/x-javascript text/javascript application/json;


############################################

## uncomment next line to enable light API calls processing

#rewrite ^/api/([a-z][0-9a-z_]+)/?$ /api.php?type=$1 break;


############################################

## rewrite API2 calls to api.php (by now it is REST only)

rewrite ^/api/rest /api.php?type=rest last;


############################################

## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

if ($request_method ~ "^TRAC[EK]") {

return 405;

}


############################################

## always send 404 on missing files in these folders

if ($uri !~ "^/(media|skin|js)/") {

set $rewrite_to_index 1;

}


###########################################

## Deny access to release notes to prevent disclosure of the installed Magento version

if ($uri ~* "/RELEASE_NOTES.txt") {

return 404;

}


# Don't rewrite if file exists

if (-e $request_filename) {

set $rewrite_to_index 0;

}


############################################

## rewrite everything else to index.php

if ($rewrite_to_index = "1") {

rewrite / /index.php;

}


############################################

## Prevent character encoding issues from server overrides

## If you still have problems, use the second line instead

charset off;

#charset utf-8;


############################################

## Add default Expires header

## http://developer.yahoo.com/performance/rules.html#expires

expires 365d;


##Taken from http://wiki.nginx.org/Magento

# Hide the system directories

location ~ ^/(app|includes|lib|media/downloadable|pkginfo|report/config.xml|var)/ {

internal;

}


# Hide the hidden files

location /. {

return 404;

}

…………………………………………………….
 
Последнее редактирование модератором:
Hi guys,

Do you know the right settings to use magento with nginx on Plesk 12.5?

I have tried this one but the checkout page does not works.

…………………………………….

## Taken from Для просмотра ссылки Войди или Зарегистрируйся
Код:
# gzip compression

gzip on;

gzip_min_length 1100;

gzip_buffers 4 8k;

gzip_proxied any;

gzip_types text/plain text/css application/x-javascript text/javascript application/json;


############################################

## uncomment next line to enable light API calls processing

#rewrite ^/api/([a-z][0-9a-z_]+)/?$ /api.php?type=$1 break;


############################################

## rewrite API2 calls to api.php (by now it is REST only)

rewrite ^/api/rest /api.php?type=rest last;


############################################

## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

if ($request_method ~ "^TRAC[EK]") {

return 405;

}


############################################

## always send 404 on missing files in these folders

if ($uri !~ "^/(media|skin|js)/") {

set $rewrite_to_index 1;

}


###########################################

## Deny access to release notes to prevent disclosure of the installed Magento version

if ($uri ~* "/RELEASE_NOTES.txt") {

return 404;

}


# Don't rewrite if file exists

if (-e $request_filename) {

set $rewrite_to_index 0;

}


############################################

## rewrite everything else to index.php

if ($rewrite_to_index = "1") {

rewrite / /index.php;

}


############################################

## Prevent character encoding issues from server overrides

## If you still have problems, use the second line instead

charset off;

#charset utf-8;


############################################

## Add default Expires header

## http://developer.yahoo.com/performance/rules.html#expires

expires 365d;


##Taken from http://wiki.nginx.org/Magento

# Hide the system directories

location ~ ^/(app|includes|lib|media/downloadable|pkginfo|report/config.xml|var)/ {

internal;

}


# Hide the hidden files

location /. {

return 404;

}

…………………………………………………….

Do you use a custom template?
 
Последнее редактирование модератором:
No
I have used magento rwd theme for testing.
Turn on the debugging option to see what is the problem.

To do this uncomment line #73 in the index.php file : #ini_set('display_errors', 1);

And in the admin page go to Developer section and turn it on.

Nginx is awesome I know but when it comes to Magento it really doesn't make a big difference compared to Apache.
 
Guys, a few questions:

What's your favorite or the best reporting and analytic extension for Magento and why?

Let's say we have a store like Amazon or NewEgg what are other interesting and most-have extensions to have? For both front-end and back-end.
 
Назад
Сверху