Closed pccomfrank closed 9 years ago
Hi @pccomfrank ,
I used the same method to install beta9, which is successfully installed the sample-data.074.0-beta9
Could you, please, clarify what method did you use?
http://devdocs.magento.com/guides/v1.0/install-gde/install/install-cli-install.html
php bin/magento setup:install --base-url=http://127.0.0.1/magento2/ \ --backend-frontname=admin \ --db-host=localhost --db-name=magento --db-user=magento --db-password=magento \ --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \ --admin-user=admin --admin-password=admin123 --language=en_US \ --currency=USD --timezone=America/Chicago --use-sample-data
Sample data is a module now, as of -beta10. So, be sure you've declared the magento repository and listed the sample data module properly in your config.json BEFORE you run composer install. If you didn't, it's no big deal, but does explain why the data isn't in your database. What you showed above is only a list of tables, and these are installed at the beginning of the install process and not during the data load process, which typically is the LAST thing the system does during install. To load it AFTER you run composer install, try:
composer config repositories.magento composer http://packages.magento.com
and then
composer require magento/sample-data:0.74.0-beta11
After the dependencies are loaded and your command prompt returns enter the following in order:
/path/to/your/magneto2/install dir>/bin magento setup:upgrade /path/to/your/magneto2/install dir>/bin magento sampledata:install
I did all above procedures except the last two. And I did a successful php composer.phar update
When I was trying to ./bin/magento setup:upgrade
I got the following errors: root@bell:/usr/local/www/bell.shopeveryday.us # ./bin/magento setup:upgrade [Magento\Setup\Exception] Can't run this operation: deployment configuration is absent. setup:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]
When I do ./bin/magento sampledata:install
I got the following error: root@bell:/usr/local/www/bell.shopeveryday.us # ./bin/magento sampledata:install [InvalidArgumentException] There are no commands defined in the "sampledata" namespace.
This is my composer.json:
root@bell:/usr/local/www/bell.shopeveryday.us # cat composer.json { "name": "magento/magento2ce", "description": "Magento 2 (Community Edition)", "type": "project", "version": "0.74.0-beta11", "minimum-stability": "beta", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { "php": "~5.5.0|~5.6.0", "zendframework/zend-stdlib": "2.4.0", "zendframework/zend-code": "2.4.0", "zendframework/zend-server": "2.4.0", "zendframework/zend-soap": "2.4.0", "zendframework/zend-uri": "2.4.0", "zendframework/zend-validator": "2.4.0", "zendframework/zend-console": "2.4.0", "zendframework/zend-modulemanager": "2.4.0", "zendframework/zend-mvc": "2.4.0", "zendframework/zend-text": "2.4.0", "zendframework/zend-i18n": "2.4.0", "zendframework/zend-eventmanager": "2.4.0", "zendframework/zend-view": "2.4.0", "zendframework/zend-servicemanager": "2.4.0", "zendframework/zend-json": "2.4.0", "zendframework/zend-config": "2.4.0", "zendframework/zend-form": "2.4.0", "zendframework/zend-di": "2.4.0", "zendframework/zend-serializer": "2.4.0", "zendframework/zend-log": "2.4.0", "zendframework/zend-http": "2.4.0", "magento/zendframework1": "1.12.10", "composer/composer": "1.0.0-alpha9", "monolog/monolog": "1.11.0", "oyejorge/less.php": "1.7.0.3", "tubalmartin/cssmin": "2.4.8-p4", "magento/magento-composer-installer": "_", "symfony/console": "~2.3", "magento/sample-data": "0.74.0-beta11" }, "require-dev": { "phpunit/phpunit": "4.1.0", "squizlabs/phpcodesniffer": "1.5.3", "phpmd/phpmd": "@stable", "pdepend/pdepend": "2.0.6", "lib-libxml": "", "ext-ctype": "", "ext-gd": "", "ext-spl": "", "ext-dom": "", "ext-simplexml": "", "ext-mcrypt": "", "ext-hash": "", "ext-curl": "", "ext-iconv": "", "ext-intl": "", "sjparkinson/static-review": "~4.1", "fabpot/php-cs-fixer": "~1.2", "lusitanian/oauth": "~0.3" }, "replace": { "magento/module-admin-notification": "self.version", "magento/module-authorization": "self.version", "magento/module-backend": "self.version", "magento/module-backup": "self.version", "magento/module-bundle": "self.version", "magento/module-cache-invalidate": "self.version", "magento/module-captcha": "self.version", "magento/module-catalog": "self.version", "magento/module-catalog-import-export": "self.version", "magento/module-catalog-inventory": "self.version", "magento/module-catalog-rule": "self.version", "magento/module-catalog-search": "self.version", "magento/module-catalog-url-rewrite": "self.version", "magento/module-catalog-widget": "self.version", "magento/module-checkout": "self.version", "magento/module-checkout-agreements": "self.version", "magento/module-cms": "self.version", "magento/module-cms-url-rewrite": "self.version", "magento/module-config": "self.version", "magento/module-configurable-import-export": "self.version", "magento/module-configurable-product": "self.version", "magento/module-contact": "self.version", "magento/module-cookie": "self.version", "magento/module-cron": "self.version", "magento/module-currency-symbol": "self.version", "magento/module-customer": "self.version", "magento/module-customer-import-export": "self.version", "magento/module-design-editor": "self.version", "magento/module-developer": "self.version", "magento/module-dhl": "self.version", "magento/module-directory": "self.version", "magento/module-downloadable": "self.version", "magento/module-eav": "self.version", "magento/module-email": "self.version", "magento/module-fedex": "self.version", "magento/module-gift-message": "self.version", "magento/module-google-adwords": "self.version", "magento/module-google-analytics": "self.version", "magento/module-google-optimizer": "self.version", "magento/module-google-shopping": "self.version", "magento/module-grouped-import-export": "self.version", "magento/module-grouped-product": "self.version", "magento/module-import-export": "self.version", "magento/module-indexer": "self.version", "magento/module-integration": "self.version", "magento/module-layered-navigation": "self.version", "magento/module-log": "self.version", "magento/module-media-storage": "self.version", "magento/module-msrp": "self.version", "magento/module-multishipping": "self.version", "magento/module-newsletter": "self.version", "magento/module-offline-payments": "self.version", "magento/module-offline-shipping": "self.version", "magento/module-page-cache": "self.version", "magento/module-payment": "self.version", "magento/module-persistent": "self.version", "magento/module-product-alert": "self.version", "magento/module-quote": "self.version", "magento/module-reports": "self.version", "magento/module-require-js": "self.version", "magento/module-review": "self.version", "magento/module-rss": "self.version", "magento/module-rule": "self.version", "magento/module-sales": "self.version", "magento/module-sales-rule": "self.version", "magento/module-sales-sequence": "self.version", "magento/module-search": "self.version", "magento/module-sendfriend": "self.version", "magento/module-shipping": "self.version", "magento/module-sitemap": "self.version", "magento/module-store": "self.version", "magento/module-tax": "self.version", "magento/module-tax-import-export": "self.version", "magento/module-theme": "self.version", "magento/module-translation": "self.version", "magento/module-ui": "self.version", "magento/module-ups": "self.version", "magento/module-url-rewrite": "self.version", "magento/module-user": "self.version", "magento/module-usps": "self.version", "magento/module-variable": "self.version", "magento/module-version": "self.version", "magento/module-webapi": "self.version", "magento/module-weee": "self.version", "magento/module-widget": "self.version", "magento/module-wishlist": "self.version", "magento/theme-adminhtml-backend": "self.version", "magento/theme-frontend-blank": "self.version", "magento/theme-frontend-luma": "self.version", "magento/language-de_de": "self.version", "magento/language-en_us": "self.version", "magento/language-es_es": "self.version", "magento/language-fr_fr": "self.version", "magento/language-nl_nl": "self.version", "magento/language-pt_br": "self.version", "magento/language-zh_cn": "self.version", "magento/framework": "self.version", "trentrichardson/jquery-timepicker-addon": "1.4.3", "colinmollenhour/cache-backend-redis": "dev-master#193d377b7fb2e88595578b282fa01a62d1185abc", "colinmollenhour/credis": "dev-master#f07bbfd4117294f462f0fb19c49221d350bf396f", "linkorb/jsmin-php": "1.1.2", "phpseclib/phpseclib": "0.2.1", "components/jquery": "1.11.0", "blueimp/jquery-file-upload": "5.6.14", "components/jqueryui": "1.10.4", "twbs/bootstrap": "3.1.0", "tinymce/tinymce": "3.4.7" }, "extra": { "component_paths": { "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", "colinmollenhour/cache-backend-redis": "lib/internal/Cm/Cache/Backend/Redis.php", "colinmollenhour/credis": "lib/internal/Credis", "linkorb/jsmin-php": "lib/internal/JSMin", "phpseclib/phpseclib": "lib/internal/phpseclib", "components/jquery": [ "lib/web/jquery.js", "lib/web/jquery/jquery.min.js", "lib/web/jquery/jquery-migrate.js", "lib/web/jquery/jquery-migrate.min.js" ], "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jqueryui": [ "lib/web/jquery/jquery-ui.js", "lib/web/jquery/jquery-ui.min.js" ], "twbs/bootstrap": [ "lib/web/jquery/jquery.tabs.js" ], "tinymce/tinymce": "lib/web/tiny_mce" } }, "config": { "use-include-path": true }, "autoload": { "psr-4": { "Magento\Framework\": "lib/internal/Magento/Framework/", "Magento\Setup\": "setup/src/Magento/Setup/" } }, "autoload-dev": { "psr-4": { "Magento\Sniffs\": "dev/tests/static/framework/Magento/Sniffs/", "Magento\Tools\": "dev/tools/Magento/Tools/", "Magento\Tools\Sanity\": "dev/build/publication/sanity/Magento/Tools/Sanity/", "Magento\TestFramework\Inspection\": "dev/tests/static/framework/Magento/TestFramework/Inspection/", "Magento\TestFramework\Utility\": "dev/tests/static/framework/Magento/TestFramework/Utility/" } }, "minimum-stability": "alpha", "prefer-stable": true, "repositories": { "magento": { "type": "composer", "url": "http://packages.magento.com" } } }
I got a debug.log instead of install.log after fake successful installation:
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # cat debug.log [2015-05-31 23:16:14] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:16] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:16] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:17] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:17] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:18] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:36] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["catalog_category"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:43] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["catalog_category"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:48] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:48] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:49] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BACKEND_MAINMENU"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:16:52] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:16:55] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["VIEW_FILES_FALLBACK"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["VIEW_FILES_PREPROCESSING"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"},"is_exception":false} [] [2015-05-31 23:17:10] main.DEBUG: cache_invalidate: {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"},"is_exception":false} []
After I visit the home page, I got a system.log
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # cat system.log [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'page.bottom' element cannot be added as child to 'page.bottom.container', because the latter doesn't exist [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'catalog.compare.sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'minicart.subtotal.msrp' element cannot be added as child to 'minicart.subtotal.container', because the latter doesn't exist [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'minicart.subtotal.msrp' tries to reorder itself towards 'minicart.subtotal', but their parents are different: 'minicart.subtotal.container' and '' respectively. [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'sale.reorder.sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'wishlist_sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-05-31 23:25:37] main.CRITICAL: Broken reference: the 'store.settings.currency' tries to reorder itself towards 'store_language', but their parents are different: 'store.settings' and 'header.panel' respectively. [] [] root@bell:/usr/local/www/bell.shopeveryday.us/var/log #
Couple things to check:
Yes. I started working with a new git clone. The old ones(beta9) are still working: http://kerynn.ca:8280. I do not know how to upgrade from beta9 to beta11.
Thanks!
OK, here are a couple more options for you:
'Magento_SampleData' => 1,
If it doesn't, add it here:
'Magento_ConfigurableProduct' => 1, 'Magento_SampleData' => 1, 'Magento_SampleInterception' => 1,
- In your config.json, you have an erroneous entry. Delete the following at the bottom of the file:
"minimum-stability": "alpha",
You already had it changed to beta, which is correct, at the beginning of the file, but you changed it back at the end. Just delete that line.
127.0.0.1/magento2/setup
When you get to the page where modules are installed/loaded, please make sure to check the Sample Data box. Continue with the installation as directed by the system. Be patient when you get to the sample data installation at the 98% complete mark. It can take more than ten minutes to complete this final step.
When I use the browser to install it, the sample data check box dimmed. That is the problem.
It seems that the sample data never installed.
I was trying to run the upgrade and sampledata:install admin command I got errors:
root@bell:/usr/local/www/bell.shopeveryday.us/bin # /usr/local/www/bell.shopeveryday.us/bin/magento setup:upgrade
[Magento\Setup\Exception] Can't run this operation: deployment configuration is absent.
setup:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]
This is the main problem.
So the main problem is that the config.php and env.php files are missing from the git clone.
I'm just curious, based on your comments, did you try ANY of the corrective steps I described?
Yes. But app/etc/config.php and env.php are missing. Cannot follow your steps.
If you git clone magento 2 here, there is no such file called config.php and env.php in app/etc/ directory.
Where did you get them?
@pccomfrank if the app/etc/config.php
and env.php
are missing, it means magento doesnt know which database to connect to (which are specified in env.php). These files are created during installation. Possibly there was an issue during that, so please try re-installing.
@pccomfrank , magento setup:uninstall
removed these config files, so if you ran this command, it's expected that you already don't have them.
Basing on your comments ("There are no commands defined in the "sampledata" namespace." and "the sample data check box dimmed"), it looks like Sample Data module was not installed by Composer. Could you, please, check if you have app/code/Magento/SampleData
folder and if it's not empty? If it doesn't exist or it's empty, please, re-run composer install
. If it doesn't install magento/module-sample-data
, please, try to remove vendor
folder and try composer install
again.
Let me know about the results. Until you have SampleData module, you won't be able to install sample data.
Thanks. I used browser to check readiness then use command to install it.
I got sample data installed , but the images are not showing.
@pccomfrank , hm, looks like all products are not displayed. Do you see products visible in the Admin Panel? So there were no errors during install of sample data? Btw, did you try to clean cache again? Just in case page cache is outdated.
I used command line to install. i never got an install.log. Debug.log instead.
Now there is a big exception.log
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # tail exception.log
root@bell:/usr/local/www/bell.shopeveryday.us/var/log #
cache flushed several times. Products won't show up.
seems products already installed:
mysql> select * from catalog_category_entity; +-----------+------------------+-----------+---------------------+---------------------+--------------+----------+-------+----------------+ | entity_id | attribute_set_id | parent_id | created_at | updated_at | path | position | level | children_count | +-----------+------------------+-----------+---------------------+---------------------+--------------+----------+-------+----------------+ | 1 | 0 | 0 | 2015-06-01 16:48:16 | 2015-06-01 16:48:16 | 1 | 0 | 0 | 39 | | 2 | 3 | 1 | 2015-06-01 16:48:24 | 2015-06-01 16:48:24 | 1/2 | 1 | 1 | 38 | | 3 | 3 | 2 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/3 | 6 | 2 | 0 | | 4 | 3 | 2 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/4 | 1 | 2 | 0 | | 5 | 3 | 2 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/5 | 7 | 2 | 6 | | 6 | 3 | 5 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/5/6 | 1 | 3 | 0 | | 7 | 3 | 5 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/5/7 | 2 | 3 | 0 | | 8 | 3 | 2 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/8 | 4 | 2 | 3 | | 9 | 3 | 8 | 2015-06-01 16:48:58 | 2015-06-01 16:48:58 | 1/2/8/9 | 1 | 3 | 0 | | 10 | 3 | 8 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/8/10 | 2 | 3 | 0 | | 11 | 3 | 8 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/8/11 | 3 | 3 | 0 | | 12 | 3 | 5 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/5/12 | 3 | 3 | 0 | | 13 | 3 | 2 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/13 | 5 | 2 | 1 | | 14 | 3 | 13 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/13/14 | 1 | 3 | 0 | | 15 | 3 | 2 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15 | 3 | 2 | 8 | | 16 | 3 | 15 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/16 | 1 | 3 | 4 | | 17 | 3 | 15 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/17 | 2 | 3 | 2 | | 18 | 3 | 16 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/16/18 | 1 | 4 | 0 | | 19 | 3 | 16 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/16/19 | 2 | 4 | 0 | | 20 | 3 | 16 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/16/20 | 3 | 4 | 0 | | 21 | 3 | 16 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/16/21 | 4 | 4 | 0 | | 22 | 3 | 17 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/17/22 | 1 | 4 | 0 | | 23 | 3 | 17 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/15/17/23 | 2 | 4 | 0 | | 24 | 3 | 2 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24 | 2 | 2 | 8 | | 25 | 3 | 24 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24/25 | 1 | 3 | 4 | | 26 | 3 | 24 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24/26 | 2 | 3 | 2 | | 27 | 3 | 25 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24/25/27 | 1 | 4 | 0 | | 28 | 3 | 25 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24/25/28 | 2 | 4 | 0 | | 29 | 3 | 25 | 2015-06-01 16:48:59 | 2015-06-01 16:48:59 | 1/2/24/25/29 | 3 | 4 | 0 | | 30 | 3 | 25 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/24/25/30 | 4 | 4 | 0 | | 31 | 3 | 26 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/24/26/31 | 1 | 4 | 0 | | 32 | 3 | 26 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/24/26/32 | 2 | 4 | 0 | | 33 | 3 | 2 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/33 | 8 | 2 | 4 | | 34 | 3 | 33 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/33/34 | 1 | 3 | 0 | | 35 | 3 | 33 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/33/35 | 2 | 3 | 0 | | 36 | 3 | 33 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/33/36 | 3 | 3 | 0 | | 37 | 3 | 33 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/33/37 | 4 | 3 | 0 | | 38 | 3 | 5 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/5/38 | 4 | 3 | 0 | | 39 | 3 | 5 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/5/39 | 5 | 3 | 0 | | 40 | 3 | 5 | 2015-06-01 16:49:00 | 2015-06-01 16:49:00 | 1/2/5/40 | 6 | 3 | 0 | +-----------+------------------+-----------+---------------------+---------------------+--------------+----------+-------+----------------+ 40 rows in set (0.00 sec)
@pccomfrank , thanks for the information. Unfortunately, the exception log starts from #68 trace level, while to know the issue, we need the beginning of the whole exception message.
I see that looks like you have the products because there are search criteria for them. Could you, please, try to clean cache? And possibly also run re-indexing (see ./bin/magento indexer:reindex
command).
root@bell:/usr/local/www/bell.shopeveryday.us # ./bin/magento cache:clean Cleaned cache types:
root@bell:/usr/local/www/bell.shopeveryday.us # ./bin/magento indexer:reindex Category Products index has been rebuilt successfully in 00:00:00 Product Categories index has been rebuilt successfully in 00:00:00 Product Price index has been rebuilt successfully in 00:00:02 Product EAV index has been rebuilt successfully in 00:00:03 Stock index has been rebuilt successfully in 00:00:00 Catalog Rule Product index has been rebuilt successfully in 00:00:02 Catalog Product Rule index has been rebuilt successfully in 00:00:03 Catalog Search index has been rebuilt successfully in 00:00:06 root@bell:/usr/local/www/bell.shopeveryday.us #
This is the exception.log:
... Stack trace:
root@bell:/usr/local/www/bell.shopeveryday.us/var/log #
Thanks for the info. Looks like something's wrong with images processing. Could you, please include lines from exception.log that go right before "#0" line?
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # tail -n 200 exception.log ...... [2015-06-02 07:08:31] main.CRITICAL: exception 'Exception' with message 'Warning: getimagesize(/usr/local/www/bell.shopeveryday.us/pub/media/catalog/product/cache/1/small_image/240x300/e9c3970ab036de70892d86c6d221abfe/sample_data/m/b/mb02-gray-0.jpg): failed to open stream: No such file or directory in /usr/local/www/bell.shopeveryday.us/app/code/Magento/Catalog/Model/Product/Image.php on line 936' in /usr/local/www/bell.shopeveryday.us/lib/internal/Magento/Framework/App/ErrorHandler.php:59 Stack trace:
root@bell:/usr/local/www/bell.shopeveryday.us/var/log #
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # php -m [PHP Modules] bz2 Core ctype curl date dba dom ereg fileinfo filter gd hash iconv intl json libxml mbstring mcrypt mhash mssql mysql mysqli mysqlnd odbc openssl pcre PDFlib PDO pdo_mysql PDO_ODBC pdo_pgsql pdo_sqlite pgsql Phar posix Reflection session SimpleXML soap SPL sqlite3 standard tokenizer xml xmlreader xmlwriter Zend OPcache zip zlib
[Zend Modules] Zend OPcache
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # php -i phpinfo() PHP Version => 5.6.9
System => FreeBSD bell.shopeveryday.us 10.1-RELEASE-p10 FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 Build Date => May 30 2015 18:18:02 Configure Command => './configure' '--with-layout=GNU' '--localstatedir=/var' '--with-config-file-scan-dir=/usr/local/etc/php' '--disable-all' '--enable-libxml' '--enable-mysqlnd' '--with-libxml-dir=/usr/local' '--with-pcre-regex=/usr/local' '--with-zlib-dir=/usr' '--program-prefix=' '--enable-fpm' '--with-fpm-user=www' '--with-fpm-group=www' '--with-regex=php' '--with-zend-vm=CALL' '--prefix=/usr/local' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=amd64-portbld-freebsd10.1' 'build_alias=amd64-portbld-freebsd10.1' 'CC=cc' 'CFLAGS=-O2 '-pipe' '-fstack-protector' '-fno-strict-aliasing'' 'LDFLAGS= '-fstack-protector'' 'LIBS=-lpthread' 'CPPFLAGS=' 'CPP=cpp' 'CXX=c++' 'CXXFLAGS=-O2 '-pipe' '-fstack-protector' '-fno-strict-aliasing' Server API => Command Line Interface Virtual Directory Support => disabled Configuration File (php.ini) Path => /usr/local/etc Loaded Configuration File => /usr/local/etc/php.ini Scan this dir for additional .ini files => /usr/local/etc/php Additional .ini files parsed => /usr/local/etc/php/extensions.ini
PHP API => 20131106 PHP Extension => 20131226 Zend Extension => 220131226 Zend Extension Build => API220131226,NTS PHP Extension Build => API20131226,NTS Debug Build => no Thread Safety => disabled Zend Signal Handling => disabled Zend Memory Manager => enabled Zend Multibyte Support => provided by mbstring IPv6 Support => enabled DTrace Support => disabled
Registered PHP Streams => compress.bzip2, php, file, glob, data, http, ftp, https, ftps, compress.zlib, zip, phar Registered Stream Socket Transports => tcp, udp, unix, udg, ssl, sslv3, sslv2, tls, tlsv1.0, tlsv1.1, tlsv1.2 Registered Stream Filters => bzip2._, string.rot13, string.toupper, string.tolower, string.striptags, convert., consumed, dechunk, convert.iconv., mcrypt., mdecrypt., zlib.
This program makes use of the Zend Scripting Language Engine: Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2015, by Zend Technologies
Configuration
bz2
BZip2 Support => Enabled Stream Wrapper support => compress.bzip2:// Stream Filter support => bzip2.decompress, bzip2.compress BZip2 Version => 1.0.6, 6-Sept-2010
Core
PHP Version => 5.6.9
Directive => Local Value => Master Value allow_url_fopen => On => On allow_url_include => Off => Off always_populate_raw_post_data => -1 => -1 arg_separator.input => & => & arg_separator.output => & => & asp_tags => Off => Off auto_append_file => no value => no value auto_globals_jit => On => On auto_prepend_file => no value => no value browscap => no value => no value default_charset => UTF-8 => UTF-8 default_mimetype => text/html => text/html disable_classes => no value => no value disable_functions => no value => no value display_errors => Off => Off display_startup_errors => Off => Off doc_root => no value => no value docref_ext => no value => no value docref_root => no value => no value enable_dl => Off => Off enable_post_data_reading => On => On error_append_string => no value => no value error_log => no value => no value error_prepend_string => no value => no value error_reporting => 22527 => 22527 exit_on_timeout => Off => Off expose_php => On => On extension_dir => /usr/local/lib/php/20131226 => /usr/local/lib/php/20131226 file_uploads => On => On highlight.comment => #FF8000 => #FF8000 highlight.default => #0000BB => #0000BB highlight.html => #000000 => #000000 highlight.keyword => #007700 => #007700 highlight.string => #DD0000 => #DD0000 html_errors => Off => Off ignore_repeated_errors => Off => Off ignore_repeated_source => Off => Off ignore_user_abort => Off => Off implicit_flush => On => On include_path => .:/usr/local/share/pear => .:/usr/local/share/pear input_encoding => no value => no value internal_encoding => no value => no value log_errors => On => On log_errors_max_len => 1024 => 1024 mail.add_x_header => On => On mail.force_extra_parameters => no value => no value mail.log => no value => no value max_execution_time => 0 => 0 max_file_uploads => 20 => 20 max_input_nesting_level => 64 => 64 max_input_time => -1 => -1 max_input_vars => 1000 => 1000 memory_limit => 256M => 256M open_basedir => no value => no value output_buffering => 0 => 0 output_encoding => no value => no value output_handler => no value => no value post_max_size => 8M => 8M precision => 14 => 14 realpath_cache_size => 16K => 16K realpath_cache_ttl => 120 => 120 register_argc_argv => On => On report_memleaks => On => On report_zend_debug => Off => Off request_order => GP => GP sendmail_from => no value => no value sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i serialize_precision => 17 => 17 short_open_tag => Off => Off SMTP => localhost => localhost smtp_port => 25 => 25 sql.safe_mode => Off => Off sys_temp_dir => no value => no value track_errors => Off => Off unserialize_callback_func => no value => no value upload_max_filesize => 2M => 2M upload_tmp_dir => no value => no value user_dir => no value => no value user_ini.cache_ttl => 300 => 300 user_ini.filename => .user.ini => .user.ini variables_order => GPCS => GPCS xmlrpc_error_number => 0 => 0 xmlrpc_errors => Off => Off zend.detect_unicode => On => On zend.enable_gc => On => On zend.multibyte => Off => Off zend.script_encoding => no value => no value
ctype
ctype functions => enabled
curl
cURL support => enabled cURL Information => 7.42.0 Age => 3 Features AsynchDNS => Yes CharConv => No Debug => No GSS-Negotiate => No IDN => No IPv6 => Yes krb4 => No Largefile => Yes libz => Yes NTLM => Yes NTLMWB => Yes SPNEGO => Yes SSL => Yes SSPI => No TLS-SRP => Yes Protocols => dict, file, ftp, ftps, gopher, http, https, imap, imaps, pop3, pop3s, rtsp, smb, smbs, smtp, smtps, telnet, tftp Host => amd64-portbld-freebsd10.1 SSL Version => OpenSSL/1.0.1l ZLib Version => 1.2.8
date
date/time support => enabled "Olson" Timezone Database Version => 2015.4 Timezone Database => internal PHP Warning: Unknown: It is not safe to rely on the system's timezone settings. You are required to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in Unknown on line 0 Default timezone => UTC
Directive => Local Value => Master Value date.default_latitude => 31.7667 => 31.7667 date.default_longitude => 35.2333 => 35.2333 date.sunrise_zenith => 90.583333 => 90.583333 date.sunset_zenith => 90.583333 => 90.583333 date.timezone => no value => no value
dba
DBA support => enabled Supported handlers => cdb cdb_make inifile flatfile
Directive => Local Value => Master Value dba.default_handler => flatfile => flatfile
dom
DOM/XML => enabled DOM/XML API Version => 20031129 libxml Version => 2.9.2 HTML Support => enabled XPath Support => enabled XPointer Support => enabled Schema Support => enabled RelaxNG Support => enabled
ereg
Regex Library => Bundled library enabled
fileinfo
fileinfo support => enabled version => 1.0.5 libmagic => 517
filter
Input Validation and Filtering => enabled Revision => $Id: 86120bba568c551914a35636ec408f1e7e66af32 $
Directive => Local Value => Master Value filter.default => unsafe_raw => unsafe_raw filter.default_flags => no value => no value
gd
GD Support => enabled GD Version => bundled (2.1.0 compatible) FreeType Support => enabled FreeType Linkage => with freetype FreeType Version => 2.5.5 T1Lib Support => enabled GIF Read Support => enabled GIF Create Support => enabled JPEG Support => enabled libJPEG Version => 8 PNG Support => enabled libPNG Version => 1.6.17 WBMP Support => enabled XPM Support => enabled libXpm Version => 30411 XBM Support => enabled
Directive => Local Value => Master Value gd.jpeg_ignore_warning => 0 => 0
hash
hash support => enabled Hashing Engines => md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
iconv
iconv support => enabled iconv implementation => libiconv iconv library version => 1.14
Directive => Local Value => Master Value iconv.input_encoding => no value => no value iconv.internal_encoding => no value => no value iconv.output_encoding => no value => no value
intl
Internationalization support => enabled version => PECL-3.0.0 ICU version => 55.1 ICU Data version => 55.1
Directive => Local Value => Master Value intl.default_locale => no value => no value intl.error_level => 0 => 0 intl.use_exceptions => 0 => 0
json
json support => enabled json version => 1.2.1
libxml
libXML support => active libXML Compiled Version => 2.9.2 libXML Loaded Version => 20902 libXML streams => enabled
mbstring
Multibyte Support => enabled Multibyte string engine => libmbfl HTTP input encoding translation => disabled libmbfl version => 1.3.2
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Multibyte (japanese) regex support => enabled Multibyte regex (oniguruma) version => 4.7.1
Directive => Local Value => Master Value mbstring.detect_order => no value => no value mbstring.encoding_translation => Off => Off mbstring.func_overload => 0 => 0 mbstring.http_input => no value => no value mbstring.http_output => no value => no value mbstring.http_output_conv_mimetypes => ^(text/|application/xhtml+xml) => ^(text/|application/xhtml+xml) mbstring.internal_encoding => no value => no value mbstring.language => neutral => neutral mbstring.strict_detection => Off => Off mbstring.substitute_character => no value => no value
mcrypt
mcrypt support => enabled mcrypt_filter support => enabled Version => 2.5.8 Api No => 20021217 Supported ciphers => cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes Supported modes => cbc cfb ctr ecb ncfb nofb ofb stream
Directive => Local Value => Master Value mcrypt.algorithms_dir => no value => no value mcrypt.modes_dir => no value => no value
mhash
MHASH support => Enabled MHASH API Version => Emulated Support
mssql
MSSQL Support => enabled Active Persistent Links => 0 Active Links => 0 Library version => FreeTDS
Directive => Local Value => Master Value mssql.allow_persistent => On => On mssql.batchsize => 0 => 0 mssql.charset => no value => no value mssql.compatability_mode => Off => Off mssql.compatibility_mode => Off => Off mssql.connect_timeout => 5 => 5 mssql.datetimeconvert => On => On mssql.max_links => Unlimited => Unlimited mssql.max_persistent => Unlimited => Unlimited mssql.max_procs => Unlimited => Unlimited mssql.min_error_severity => 10 => 10 mssql.min_message_severity => 10 => 10 mssql.secure_connection => Off => Off mssql.textlimit => Server default => Server default mssql.textsize => Server default => Server default mssql.timeout => 60 => 60
mysql
MySQL Support => enabled Active Persistent Links => 0 Active Links => 0 Client API version => mysqlnd 5.0.11-dev - 20120503 - $Id: 3c688b6bbc30d36af3ac34fdd4b7b5b787fe5555 $
Directive => Local Value => Master Value mysql.allow_local_infile => On => On mysql.allow_persistent => On => On mysql.connect_timeout => 60 => 60 mysql.default_host => no value => no value mysql.default_password => no value => no value mysql.default_port => no value => no value mysql.default_socket => no value => no value mysql.default_user => no value => no value mysql.max_links => Unlimited => Unlimited mysql.max_persistent => Unlimited => Unlimited mysql.trace_mode => Off => Off
mysqli
MysqlI Support => enabled Client API library version => mysqlnd 5.0.11-dev - 20120503 - $Id: 3c688b6bbc30d36af3ac34fdd4b7b5b787fe5555 $ Active Persistent Links => 0 Inactive Persistent Links => 0 Active Links => 0
Directive => Local Value => Master Value mysqli.allow_local_infile => On => On mysqli.allow_persistent => On => On mysqli.default_host => no value => no value mysqli.default_port => 3306 => 3306 mysqli.default_pw => no value => no value mysqli.default_socket => no value => no value mysqli.default_user => no value => no value mysqli.max_links => Unlimited => Unlimited mysqli.max_persistent => Unlimited => Unlimited mysqli.reconnect => Off => Off mysqli.rollback_on_cached_plink => Off => Off
mysqlnd
mysqlnd => enabled Version => mysqlnd 5.0.11-dev - 20120503 - $Id: 3c688b6bbc30d36af3ac34fdd4b7b5b787fe5555 $ Compression => not supported core SSL => supported extended SSL => not supported Command buffer size => 4096 Read buffer size => 32768 Read timeout => 31536000 Collecting statistics => Yes Collecting memory statistics => No Tracing => n/a Loaded plugins => mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password API Extensions => mysqli,pdo_mysql,mysql
mysqlnd statistics => bytes_sent => 0 bytes_received => 0 packets_sent => 0 packets_received => 0 protocol_overhead_in => 0 protocol_overhead_out => 0 bytes_received_ok_packet => 0 bytes_received_eof_packet => 0 bytes_received_rset_header_packet => 0 bytes_received_rset_field_meta_packet => 0 bytes_received_rset_row_packet => 0 bytes_received_prepare_response_packet => 0 bytes_received_change_user_packet => 0 packets_sent_command => 0 packets_received_ok => 0 packets_received_eof => 0 packets_received_rset_header => 0 packets_received_rset_field_meta => 0 packets_received_rset_row => 0 packets_received_prepare_response => 0 packets_received_change_user => 0 result_set_queries => 0 non_result_set_queries => 0 no_index_used => 0 bad_index_used => 0 slow_queries => 0 buffered_sets => 0 unbuffered_sets => 0 ps_buffered_sets => 0 ps_unbuffered_sets => 0 flushed_normal_sets => 0 flushed_ps_sets => 0 ps_prepared_never_executed => 0 ps_prepared_once_executed => 0 rows_fetched_from_server_normal => 0 rows_fetched_from_server_ps => 0 rows_buffered_from_client_normal => 0 rows_buffered_from_client_ps => 0 rows_fetched_from_client_normal_buffered => 0 rows_fetched_from_client_normal_unbuffered => 0 rows_fetched_from_client_ps_buffered => 0 rows_fetched_from_client_ps_unbuffered => 0 rows_fetched_from_client_ps_cursor => 0 rows_affected_normal => 0 rows_affected_ps => 0 rows_skipped_normal => 0 rows_skipped_ps => 0 copy_on_write_saved => 0 copy_on_write_performed => 0 command_buffer_too_small => 0 connect_success => 0 connect_failure => 0 connection_reused => 0 reconnect => 0 pconnect_success => 0 active_connections => 0 active_persistent_connections => 0 explicit_close => 0 implicit_close => 0 disconnect_close => 0 in_middle_of_command_close => 0 explicit_free_result => 0 implicit_free_result => 0 explicit_stmt_close => 0 implicit_stmt_close => 0 mem_emalloc_count => 0 mem_emalloc_amount => 0 mem_ecalloc_count => 0 mem_ecalloc_amount => 0 mem_erealloc_count => 0 mem_erealloc_amount => 0 mem_efree_count => 0 mem_efree_amount => 0 mem_malloc_count => 0 mem_malloc_amount => 0 mem_calloc_count => 0 mem_calloc_amount => 0 mem_realloc_count => 0 mem_realloc_amount => 0 mem_free_count => 0 mem_free_amount => 0 mem_estrndup_count => 0 mem_strndup_count => 0 mem_estndup_count => 0 mem_strdup_count => 0 proto_text_fetched_null => 0 proto_text_fetched_bit => 0 proto_text_fetched_tinyint => 0 proto_text_fetched_short => 0 proto_text_fetched_int24 => 0 proto_text_fetched_int => 0 proto_text_fetched_bigint => 0 proto_text_fetched_decimal => 0 proto_text_fetched_float => 0 proto_text_fetched_double => 0 proto_text_fetched_date => 0 proto_text_fetched_year => 0 proto_text_fetched_time => 0 proto_text_fetched_datetime => 0 proto_text_fetched_timestamp => 0 proto_text_fetched_string => 0 proto_text_fetched_blob => 0 proto_text_fetched_enum => 0 proto_text_fetched_set => 0 proto_text_fetched_geometry => 0 proto_text_fetched_other => 0 proto_binary_fetched_null => 0 proto_binary_fetched_bit => 0 proto_binary_fetched_tinyint => 0 proto_binary_fetched_short => 0 proto_binary_fetched_int24 => 0 proto_binary_fetched_int => 0 proto_binary_fetched_bigint => 0 proto_binary_fetched_decimal => 0 proto_binary_fetched_float => 0 proto_binary_fetched_double => 0 proto_binary_fetched_date => 0 proto_binary_fetched_year => 0 proto_binary_fetched_time => 0 proto_binary_fetched_datetime => 0 proto_binary_fetched_timestamp => 0 proto_binary_fetched_string => 0 proto_binary_fetched_blob => 0 proto_binary_fetched_enum => 0 proto_binary_fetched_set => 0 proto_binary_fetched_geometry => 0 proto_binary_fetched_other => 0 init_command_executed_count => 0 init_command_failed_count => 0 com_quit => 0 com_init_db => 0 com_query => 0 com_field_list => 0 com_create_db => 0 com_drop_db => 0 com_refresh => 0 com_shutdown => 0 com_statistics => 0 com_process_info => 0 com_connect => 0 com_process_kill => 0 com_debug => 0 com_ping => 0 com_time => 0 com_delayed_insert => 0 com_change_user => 0 com_binlog_dump => 0 com_table_dump => 0 com_connect_out => 0 com_register_slave => 0 com_stmt_prepare => 0 com_stmt_execute => 0 com_stmt_send_long_data => 0 com_stmt_close => 0 com_stmt_reset => 0 com_stmt_set_option => 0 com_stmt_fetch => 0 com_deamon => 0 bytes_received_real_data_normal => 0 bytes_received_real_data_ps => 0
odbc
ODBC Support => enabled Active Persistent Links => 0 Active Links => 0 ODBC library => ODBC_INCLUDE => ODBC_LFLAGS => ODBC_LIBS =>
Directive => Local Value => Master Value odbc.allow_persistent => On => On odbc.check_persistent => On => On odbc.default_cursortype => Static cursor => Static cursor odbc.default_db => no value => no value odbc.default_pw => no value => no value odbc.default_user => no value => no value odbc.defaultbinmode => return as is => return as is odbc.defaultlrl => return up to 4096 bytes => return up to 4096 bytes odbc.max_links => Unlimited => Unlimited odbc.max_persistent => Unlimited => Unlimited
openssl
OpenSSL support => enabled OpenSSL Library Version => OpenSSL 1.0.1l-freebsd 15 Jan 2015 OpenSSL Header Version => OpenSSL 1.0.1l-freebsd 15 Jan 2015
Directive => Local Value => Master Value openssl.cafile => /usr/local/lib/perl5/site_perl/Mozilla/CA/cacert.pem => /usr/local/lib/perl5/site_perl/Mozilla/CA/cacert.pem openssl.capath => no value => no value
pcre
PCRE (Perl Compatible Regular Expressions) Support => enabled PCRE Library Version => 8.35 2014-04-04
Directive => Local Value => Master Value pcre.backtrack_limit => 1000000 => 1000000 pcre.recursion_limit => 100000 => 100000
PDFlib
PDFlib Support => enabled PDFlib GmbH Binary-Version => 7.0.5p3 PECL Version => 3.0.4 Revision => $Revision: 1.80.2.2 $
PDO
PDO support => enabled PDO drivers => mysql, odbc, pgsql, sqlite
pdo_mysql
PDO Driver for MySQL => enabled Client API version => mysqlnd 5.0.11-dev - 20120503 - $Id: 3c688b6bbc30d36af3ac34fdd4b7b5b787fe5555 $
Directive => Local Value => Master Value pdo_mysql.default_socket => /tmp/mysql.sock => /tmp/mysql.sock
PDO_ODBC
PDO Driver for ODBC (unixODBC) => enabled ODBC Connection Pooling => Enabled, strict matching
pdo_pgsql
PDO Driver for PostgreSQL => enabled PostgreSQL(libpq) Version => 9.4.2 Module version => 1.0.2 Revision => $Id: 93432550a76a2298959ec74f40d65c7195a82ad2 $
pdo_sqlite
PDO Driver for SQLite 3.x => enabled SQLite Library => 3.8.9
pgsql
PostgreSQL Support => enabled PostgreSQL(libpq) Version => 9.4.2 PostgreSQL(libpq) => PostgreSQL 9.4.2 on amd64-portbld-freebsd10.1, compiled by FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512, 64-bit Multibyte character support => enabled SSL support => enabled Active Persistent Links => 0 Active Links => 0
Directive => Local Value => Master Value pgsql.allow_persistent => On => On pgsql.auto_reset_persistent => Off => Off pgsql.ignore_notice => Off => Off pgsql.log_notice => Off => Off pgsql.max_links => Unlimited => Unlimited pgsql.max_persistent => Unlimited => Unlimited
Phar
Phar: PHP Archive support => enabled Phar EXT version => 2.0.2 Phar API version => 1.1.1 SVN revision => $Id: a861a034647a6e80ebad0851e018adee293647fb $ Phar-based phar archives => enabled Tar-based phar archives => enabled ZIP-based phar archives => enabled gzip compression => enabled bzip2 compression => enabled OpenSSL support => enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. Directive => Local Value => Master Value phar.cache_list => no value => no value phar.readonly => On => On phar.require_hash => On => On
posix
Revision => $Id: 5d20de77687b7d961b15450873fa23b9e64a136a $
Reflection
Reflection => enabled Version => $Id: eff8bdc65b0beaf8f4ade6f06f848e6d43dfd826 $
session
Session Support => enabled Registered save handlers => files user Registered serializer handlers => php_serialize php php_binary
Directive => Local Value => Master Value session.auto_start => Off => Off session.cache_expire => 180 => 180 session.cache_limiter => nocache => nocache session.cookie_domain => no value => no value session.cookie_httponly => Off => Off session.cookie_lifetime => 0 => 0 session.cookie_path => / => / session.cookie_secure => Off => Off session.entropy_file => /dev/urandom => /dev/urandom session.entropy_length => 32 => 32 session.gc_divisor => 1000 => 1000 session.gc_maxlifetime => 1440 => 1440 session.gc_probability => 1 => 1 session.hash_bits_per_character => 5 => 5 session.hash_function => 0 => 0 session.name => PHPSESSID => PHPSESSID session.referer_check => no value => no value session.save_handler => files => files session.save_path => no value => no value session.serialize_handler => php => php session.upload_progress.cleanup => On => On session.upload_progress.enabled => On => On session.upload_progress.freq => 1% => 1% session.upload_progress.min_freq => 1 => 1 session.upload_progress.name => PHP_SESSION_UPLOAD_PROGRESS => PHP_SESSION_UPLOAD_PROGRESS session.upload_progress.prefix => uploadprogress => uploadprogress session.use_cookies => On => On session.use_only_cookies => On => On session.use_strict_mode => Off => Off session.use_trans_sid => 0 => 0
SimpleXML
Simplexml support => enabled Revision => $Id: e0de6ee7ef8280a12d77d76f1f971a944cbc8090 $ Schema support => enabled
soap
Soap Client => enabled Soap Server => enabled
Directive => Local Value => Master Value soap.wsdl_cache => 1 => 1 soap.wsdl_cache_dir => /tmp => /tmp soap.wsdl_cache_enabled => 1 => 1 soap.wsdl_cache_limit => 5 => 5 soap.wsdl_cache_ttl => 86400 => 86400
SPL
SPL support => enabled Interfaces => Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject Classes => AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException
sqlite3
SQLite3 support => enabled SQLite3 module version => 0.7-dev SQLite Library => 3.8.9
Directive => Local Value => Master Value sqlite3.extension_dir => no value => no value
standard
Dynamic Library Support => enabled Path to sendmail => /usr/sbin/sendmail -t -i
Directive => Local Value => Master Value assert.active => 1 => 1 assert.bail => 0 => 0 assert.callback => no value => no value assert.quiet_eval => 0 => 0 assert.warning => 1 => 1 auto_detect_line_endings => 0 => 0 default_socket_timeout => 60 => 60 from => no value => no value url_rewriter.tags => a=href,area=href,frame=src,input=src,form=fakeentry => a=href,area=href,frame=src,input=src,form=fakeentry user_agent => no value => no value
tokenizer
Tokenizer Support => enabled
xml
XML Support => active XML Namespace Support => active libxml2 Version => 2.9.2
xmlreader
XMLReader => enabled
xmlwriter
XMLWriter => enabled
Zend OPcache
Opcode Caching => Disabled Optimization => Disabled Startup Failed => Opcode Caching is disabled for CLI
Directive => Local Value => Master Value opcache.blacklist_filename => no value => no value opcache.consistency_checks => 0 => 0 opcache.dups_fix => Off => Off opcache.enable => On => On opcache.enable_cli => Off => Off opcache.enable_file_override => Off => Off opcache.error_log => no value => no value opcache.fast_shutdown => 0 => 0 opcache.file_update_protection => 2 => 2 opcache.force_restart_timeout => 180 => 180 opcache.inherited_hack => On => On opcache.interned_strings_buffer => 4 => 4 opcache.load_comments => 1 => 1 opcache.log_verbosity_level => 1 => 1 opcache.max_accelerated_files => 2000 => 2000 opcache.max_file_size => 0 => 0 opcache.max_wasted_percentage => 5 => 5 opcache.memory_consumption => 64 => 64 opcache.optimization_level => 0xFFFFFFFF => 0xFFFFFFFF opcache.preferred_memory_model => no value => no value opcache.protect_memory => 0 => 0 opcache.restrict_api => no value => no value opcache.revalidate_freq => 2 => 2 opcache.revalidate_path => Off => Off opcache.save_comments => 1 => 1 opcache.use_cwd => On => On opcache.validate_timestamps => On => On
zip
Zip => enabled Extension Version => $Id: f9f12af1274212b9f22867472e4aa57eab4bb4cf $ Zip version => 1.12.5 Libzip version => 0.11.2
zlib
ZLib Support => enabled Stream Wrapper => compress.zlib:// Stream Filter => zlib.inflate, zlib.deflate Compiled Version => 1.2.8 Linked Version => 1.2.8
Directive => Local Value => Master Value zlib.output_compression => Off => Off zlib.output_compression_level => -1 => -1 zlib.output_handler => no value => no value
Additional Modules
Module Name
Environment
Variable => Value USER => root LOGNAME => root HOME => /root MAIL => /var/mail/root PATH => /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin TERM => xterm BLOCKSIZE => K SHELL => /bin/csh SSH_CLIENT => 10.0.0.1 53152 9022 SSH_CONNECTION => 10.0.0.1 53152 10.0.0.2 9022 SSH_TTY => /dev/pts/0 HOSTTYPE => FreeBSD VENDOR => amd OSTYPE => FreeBSD MACHTYPE => x86_64 SHLVL => 1 PWD => /usr/local/www/bell.shopeveryday.us/var/log GROUP => wheel HOST => bell.shopeveryday.us REMOTEHOST => 10.0.0.1 EDITOR => vi PAGER => more
PHP Variables
Variable => Value _SERVER["USER"] => root _SERVER["LOGNAME"] => root _SERVER["HOME"] => /root _SERVER["MAIL"] => /var/mail/root _SERVER["PATH"] => /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin _SERVER["TERM"] => xterm _SERVER["BLOCKSIZE"] => K _SERVER["SHELL"] => /bin/csh _SERVER["SSH_CLIENT"] => 10.0.0.1 53152 9022 _SERVER["SSH_CONNECTION"] => 10.0.0.1 53152 10.0.0.2 9022 _SERVER["SSH_TTY"] => /dev/pts/0 _SERVER["HOSTTYPE"] => FreeBSD _SERVER["VENDOR"] => amd _SERVER["OSTYPE"] => FreeBSD _SERVER["MACHTYPE"] => x86_64 _SERVER["SHLVL"] => 1 _SERVER["PWD"] => /usr/local/www/bell.shopeveryday.us/var/log _SERVER["GROUP"] => wheel _SERVER["HOST"] => bell.shopeveryday.us _SERVER["REMOTEHOST"] => 10.0.0.1 _SERVER["EDITOR"] => vi _SERVER["PAGER"] => more _SERVER["PHP_SELF"] => _SERVER["SCRIPT_NAME"] => _SERVER["SCRIPT_FILENAME"] => _SERVER["PATH_TRANSLATED"] => _SERVER["DOCUMENT_ROOT"] => _SERVER["REQUEST_TIME_FLOAT"] => 1433248054.0127 _SERVER["REQUEST_TIME"] => 1433248054 _SERVER["argv"] => Array ( )
_SERVER["argc"] => 0
PHP License This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net. root@bell:/usr/local/www/bell.shopeveryday.us/var/log #
@pccomfrank , thanks for the details. Could you, please, check:
pub/media
folder?pub/media
folder has anything inside? If you have some folder like catalog
, does it have any files in it (see recursively)?And did you have any errors during sample data installation? As I understand, you used command line for it. Or maybe there are some other messages in the exception.log for the time when you were installing sample data? It looks like that by some reason images were not installed, but the exception message shows the error for the case when you open a front-end page already, so it just can't find these images.
Or you can try to make uninstall (./bin/magento setup:uninstall
) and install the application + sample data again. Check for permissions to pub/media
, pub/static
, var
and app/etc
folders. I'd suggest to give them 777
permissions, if it's not a production, just to ensure that it's not the environment issue.
root@bell:/usr/local/www/bell.shopeveryday.us # ./bin/magento setup:uninstall
Are you sure you want to uninstall Magento?[y/N]y
Starting Magento uninstallation:
Recreating database m2bellshopeverydayus
Cache cleared successfully
File system cleanup:
/usr/local/www/bell.shopeveryday.us/pub/static/_requirejs
/usr/local/www/bell.shopeveryday.us/pub/static/adminhtml
/usr/local/www/bell.shopeveryday.us/pub/static/frontend
/usr/local/www/bell.shopeveryday.us/var/cache
/usr/local/www/bell.shopeveryday.us/var/generation
/usr/local/www/bell.shopeveryday.us/var/log
/usr/local/www/bell.shopeveryday.us/var/page_cache
/usr/local/www/bell.shopeveryday.us/var/session
/usr/local/www/bell.shopeveryday.us/app/etc/config.php
/usr/local/www/bell.shopeveryday.us/app/etc/env.php
[SUCCESS]: Magento uninstallation complete.
root@bell:/usr/local/www/bell.shopeveryday.us # chmod -R 777 pub/media pub/static var app/etc
root@bell:/usr/local/www/bell.shopeveryday.us #
root@bell:/usr/local/www/bell.shopeveryday.us # php bin/magento setup:install --base-url=http://bell.shopeveryday.us/ --backend-frontname=admin --db-host=localhost --db-name=m2bellshopeverydayus --db-user=root --db-password=xxxxxxxx --admin-firstname=Frank --admin-lastname=Peng --admin-email=pccom.frank@gmail.com --admin-user=frank --admin-password=xxxxxxx --language=en_US --currency=CAD --timezone=America/Chicago --use-sample-data Starting Magento installation: File permissions check... [Progress: 1 / 272] Enabling Maintenance Mode... [Progress: 2 / 272] Installing deployment configuration... [Progress: 3 / 272] Installing database schema: Schema creation/updates: Module 'Magento_Store': Installing schema.. [Progress: 4 / 272] Module 'Magento_Directory': Installing schema.. [Progress: 5 / 272] Module 'Magento_Backend': [Progress: 6 / 272] Module 'Magento_Backup': [Progress: 7 / 272] Module 'Magento_Theme': Installing schema.. Upgrading schema.. [Progress: 8 / 272] Module 'Magento_CacheInvalidate': [Progress: 9 / 272] Module 'Magento_Eav': Installing schema.. [Progress: 10 / 272] Module 'Magento_Customer': Installing schema.. Upgrading schema.. [Progress: 11 / 272] Module 'Magento_CatalogImportExport': [Progress: 12 / 272] Module 'Magento_Indexer': Installing schema.. [Progress: 13 / 272] Module 'Magento_Cms': Installing schema.. [Progress: 14 / 272] Module 'Magento_Search': Installing schema.. Upgrading schema.. [Progress: 15 / 272] Module 'Magento_Catalog': Installing schema.. Upgrading schema.. [Progress: 16 / 272] Module 'Magento_Rule': [Progress: 17 / 272] Module 'Magento_CatalogInventory': Installing schema.. [Progress: 18 / 272] Module 'Magento_CheckoutAgreements': Installing schema.. [Progress: 19 / 272] Module 'Magento_Payment': [Progress: 20 / 272] Module 'Magento_CmsUrlRewrite': [Progress: 21 / 272] Module 'Magento_Config': Installing schema.. [Progress: 22 / 272] Module 'Magento_ConfigurableImportExport': [Progress: 23 / 272] Module 'Magento_Msrp': [Progress: 24 / 272] Module 'Magento_Contact': [Progress: 25 / 272] Module 'Magento_Cookie': [Progress: 26 / 272] Module 'Magento_Cron': Installing schema.. [Progress: 27 / 272] Module 'Magento_Widget': Installing schema.. [Progress: 28 / 272] Module 'Magento_Bundle': Installing schema.. [Progress: 29 / 272] Module 'Magento_CustomerImportExport': [Progress: 30 / 272] Module 'Magento_DesignEditor': Installing schema.. [Progress: 31 / 272] Module 'Magento_Developer': [Progress: 32 / 272] Module 'Magento_Dhl': [Progress: 33 / 272] Module 'Magento_Authorization': Installing schema.. [Progress: 34 / 272] Module 'Magento_Downloadable': Installing schema.. [Progress: 35 / 272] Module 'Magento_Quote': Installing schema.. [Progress: 36 / 272] Module 'Magento_Email': Installing schema.. [Progress: 37 / 272] Module 'Magento_Fedex': [Progress: 38 / 272] Module 'Magento_SalesSequence': Installing schema.. [Progress: 39 / 272] Module 'Magento_Sales': Installing schema.. Upgrading schema.. [Progress: 40 / 272] Module 'Magento_GoogleAnalytics': [Progress: 41 / 272] Module 'Magento_GoogleOptimizer': Installing schema.. [Progress: 42 / 272] Module 'Magento_GoogleShopping': Installing schema.. [Progress: 43 / 272] Module 'Magento_GroupedImportExport': [Progress: 44 / 272] Module 'Magento_GroupedProduct': [Progress: 45 / 272] Module 'Magento_ImportExport': Installing schema.. [Progress: 46 / 272] Module 'Magento_CatalogRule': Installing schema.. [Progress: 47 / 272] Module 'Magento_User': Installing schema.. [Progress: 48 / 272] Module 'Magento_LayeredNavigation': [Progress: 49 / 272] Module 'Magento_Log': Installing schema.. [Progress: 50 / 272] Module 'Magento_MediaStorage': [Progress: 51 / 272] Module 'Magento_Checkout': [Progress: 52 / 272] Module 'Magento_Multishipping': [Progress: 53 / 272] Module 'Magento_Newsletter': Installing schema.. [Progress: 54 / 272] Module 'Magento_OfflinePayments': [Progress: 55 / 272] Module 'Magento_SalesRule': Installing schema.. [Progress: 56 / 272] Module 'Magento_PageCache': [Progress: 57 / 272] Module 'Magento_Captcha': Installing schema.. [Progress: 58 / 272] Module 'Magento_Persistent': Installing schema.. [Progress: 59 / 272] Module 'Magento_ProductAlert': Installing schema.. [Progress: 60 / 272] Module 'Magento_GoogleAdwords': [Progress: 61 / 272] Module 'Magento_Reports': Installing schema.. [Progress: 62 / 272] Module 'Magento_RequireJs': [Progress: 63 / 272] Module 'Magento_Review': Installing schema.. [Progress: 64 / 272] Module 'Magento_Rss': [Progress: 65 / 272] Module 'Magento_CatalogWidget': [Progress: 66 / 272] Module 'Magento_GiftMessage': Installing schema.. [Progress: 67 / 272] Module 'Magento_OfflineShipping': Installing schema.. [Progress: 68 / 272] Module 'Magento_ConfigurableProduct': Installing schema.. [Progress: 69 / 272] Module 'Magento_SampleData': [Progress: 70 / 272] Module 'Magento_CatalogSearch': Installing schema.. [Progress: 71 / 272] Module 'Magento_Sendfriend': Installing schema.. [Progress: 72 / 272] Module 'Magento_Shipping': [Progress: 73 / 272] Module 'Magento_Sitemap': Installing schema.. [Progress: 74 / 272] Module 'Magento_AdminNotification': Installing schema.. [Progress: 75 / 272] Module 'Magento_Tax': Installing schema.. [Progress: 76 / 272] Module 'Magento_TaxImportExport': [Progress: 77 / 272] Module 'Magento_CatalogUrlRewrite': Installing schema.. [Progress: 78 / 272] Module 'Magento_Translation': Installing schema.. [Progress: 79 / 272] Module 'Magento_Ui': Installing schema.. [Progress: 80 / 272] Module 'Magento_Ups': [Progress: 81 / 272] Module 'Magento_UrlRewrite': Installing schema.. [Progress: 82 / 272] Module 'Magento_Integration': Installing schema.. [Progress: 83 / 272] Module 'Magento_Usps': [Progress: 84 / 272] Module 'Magento_Variable': Installing schema.. [Progress: 85 / 272] Module 'Magento_Version': [Progress: 86 / 272] Module 'Magento_Webapi': [Progress: 87 / 272] Module 'Magento_Weee': Installing schema.. [Progress: 88 / 272] Module 'Magento_CurrencySymbol': [Progress: 89 / 272] Module 'Magento_Wishlist': Installing schema.. [Progress: 90 / 272] Schema post-updates: Module 'Magento_Store': [Progress: 91 / 272] Module 'Magento_Directory': [Progress: 92 / 272] Module 'Magento_Backend': [Progress: 93 / 272] Module 'Magento_Backup': [Progress: 94 / 272] Module 'Magento_Theme': [Progress: 95 / 272] Module 'Magento_CacheInvalidate': [Progress: 96 / 272] Module 'Magento_Eav': [Progress: 97 / 272] Module 'Magento_Customer': [Progress: 98 / 272] Module 'Magento_CatalogImportExport': [Progress: 99 / 272] Module 'Magento_Indexer': [Progress: 100 / 272] Module 'Magento_Cms': [Progress: 101 / 272] Module 'Magento_Search': [Progress: 102 / 272] Module 'Magento_Catalog': [Progress: 103 / 272] Module 'Magento_Rule': [Progress: 104 / 272] Module 'Magento_CatalogInventory': [Progress: 105 / 272] Module 'Magento_CheckoutAgreements': [Progress: 106 / 272] Module 'Magento_Payment': [Progress: 107 / 272] Module 'Magento_CmsUrlRewrite': [Progress: 108 / 272] Module 'Magento_Config': [Progress: 109 / 272] Module 'Magento_ConfigurableImportExport': [Progress: 110 / 272] Module 'Magento_Msrp': [Progress: 111 / 272] Module 'Magento_Contact': [Progress: 112 / 272] Module 'Magento_Cookie': [Progress: 113 / 272] Module 'Magento_Cron': [Progress: 114 / 272] Module 'Magento_Widget': [Progress: 115 / 272] Module 'Magento_Bundle': [Progress: 116 / 272] Module 'Magento_CustomerImportExport': [Progress: 117 / 272] Module 'Magento_DesignEditor': [Progress: 118 / 272] Module 'Magento_Developer': [Progress: 119 / 272] Module 'Magento_Dhl': [Progress: 120 / 272] Module 'Magento_Authorization': [Progress: 121 / 272] Module 'Magento_Downloadable': [Progress: 122 / 272] Module 'Magento_Quote': [Progress: 123 / 272] Module 'Magento_Email': [Progress: 124 / 272] Module 'Magento_Fedex': [Progress: 125 / 272] Module 'Magento_SalesSequence': [Progress: 126 / 272] Module 'Magento_Sales': [Progress: 127 / 272] Module 'Magento_GoogleAnalytics': [Progress: 128 / 272] Module 'Magento_GoogleOptimizer': [Progress: 129 / 272] Module 'Magento_GoogleShopping': [Progress: 130 / 272] Module 'Magento_GroupedImportExport': [Progress: 131 / 272] Module 'Magento_GroupedProduct': [Progress: 132 / 272] Module 'Magento_ImportExport': [Progress: 133 / 272] Module 'Magento_CatalogRule': [Progress: 134 / 272] Module 'Magento_User': [Progress: 135 / 272] Module 'Magento_LayeredNavigation': [Progress: 136 / 272] Module 'Magento_Log': [Progress: 137 / 272] Module 'Magento_MediaStorage': [Progress: 138 / 272] Module 'Magento_Checkout': [Progress: 139 / 272] Module 'Magento_Multishipping': [Progress: 140 / 272] Module 'Magento_Newsletter': [Progress: 141 / 272] Module 'Magento_OfflinePayments': [Progress: 142 / 272] Module 'Magento_SalesRule': [Progress: 143 / 272] Module 'Magento_PageCache': [Progress: 144 / 272] Module 'Magento_Captcha': [Progress: 145 / 272] Module 'Magento_Persistent': [Progress: 146 / 272] Module 'Magento_ProductAlert': [Progress: 147 / 272] Module 'Magento_GoogleAdwords': [Progress: 148 / 272] Module 'Magento_Reports': [Progress: 149 / 272] Module 'Magento_RequireJs': [Progress: 150 / 272] Module 'Magento_Review': [Progress: 151 / 272] Module 'Magento_Rss': [Progress: 152 / 272] Module 'Magento_CatalogWidget': [Progress: 153 / 272] Module 'Magento_GiftMessage': [Progress: 154 / 272] Module 'Magento_OfflineShipping': [Progress: 155 / 272] Module 'Magento_ConfigurableProduct': [Progress: 156 / 272] Module 'Magento_SampleData': [Progress: 157 / 272] Module 'Magento_CatalogSearch': [Progress: 158 / 272] Module 'Magento_Sendfriend': [Progress: 159 / 272] Module 'Magento_Shipping': [Progress: 160 / 272] Module 'Magento_Sitemap': [Progress: 161 / 272] Module 'Magento_AdminNotification': [Progress: 162 / 272] Module 'Magento_Tax': [Progress: 163 / 272] Module 'Magento_TaxImportExport': [Progress: 164 / 272] Module 'Magento_CatalogUrlRewrite': [Progress: 165 / 272] Module 'Magento_Translation': [Progress: 166 / 272] Module 'Magento_Ui': [Progress: 167 / 272] Module 'Magento_Ups': [Progress: 168 / 272] Module 'Magento_UrlRewrite': [Progress: 169 / 272] Module 'Magento_Integration': [Progress: 170 / 272] Module 'Magento_Usps': [Progress: 171 / 272] Module 'Magento_Variable': [Progress: 172 / 272] Module 'Magento_Version': [Progress: 173 / 272] Module 'Magento_Webapi': [Progress: 174 / 272] Module 'Magento_Weee': [Progress: 175 / 272] Module 'Magento_CurrencySymbol': [Progress: 176 / 272] Module 'Magento_Wishlist': [Progress: 177 / 272] [Progress: 178 / 272] Installing user configuration... [Progress: 179 / 272] Installing data... Data install/update: Module 'Magento_Store': [Progress: 180 / 272] Module 'Magento_Directory': Installing data.. [Progress: 181 / 272] Module 'Magento_Backend': [Progress: 182 / 272] Module 'Magento_Backup': [Progress: 183 / 272] Module 'Magento_Theme': Installing data.. [Progress: 184 / 272] Module 'Magento_CacheInvalidate': [Progress: 185 / 272] Module 'Magento_Eav': Installing data.. [Progress: 186 / 272] Module 'Magento_Customer': Installing data.. [Progress: 187 / 272] Module 'Magento_CatalogImportExport': [Progress: 188 / 272] Module 'Magento_Indexer': [Progress: 189 / 272] Module 'Magento_Cms': Installing data.. [Progress: 190 / 272] Module 'Magento_Search': [Progress: 191 / 272] Module 'Magento_Catalog': Installing data.. Upgrading data.. [Progress: 192 / 272] Module 'Magento_Rule': [Progress: 193 / 272] Module 'Magento_CatalogInventory': Installing data.. [Progress: 194 / 272] Module 'Magento_CheckoutAgreements': [Progress: 195 / 272] Module 'Magento_Payment': [Progress: 196 / 272] Module 'Magento_CmsUrlRewrite': [Progress: 197 / 272] Module 'Magento_Config': Installing data.. [Progress: 198 / 272] Module 'Magento_ConfigurableImportExport': [Progress: 199 / 272] Module 'Magento_Msrp': Installing data.. [Progress: 200 / 272] Module 'Magento_Contact': [Progress: 201 / 272] Module 'Magento_Cookie': [Progress: 202 / 272] Module 'Magento_Cron': [Progress: 203 / 272] Module 'Magento_Widget': Installing data.. [Progress: 204 / 272] Module 'Magento_Bundle': Installing data.. [Progress: 205 / 272] Module 'Magento_CustomerImportExport': [Progress: 206 / 272] Module 'Magento_DesignEditor': [Progress: 207 / 272] Module 'Magento_Developer': [Progress: 208 / 272] Module 'Magento_Dhl': Installing data.. [Progress: 209 / 272] Module 'Magento_Authorization': Installing data.. [Progress: 210 / 272] Module 'Magento_Downloadable': Installing data.. [Progress: 211 / 272] Module 'Magento_Quote': Installing data.. [Progress: 212 / 272] Module 'Magento_Email': [Progress: 213 / 272] Module 'Magento_Fedex': Installing data.. [Progress: 214 / 272] Module 'Magento_SalesSequence': Installing data.. [Progress: 215 / 272] Module 'Magento_Sales': Installing data.. [Progress: 216 / 272] Module 'Magento_GoogleAnalytics': [Progress: 217 / 272] Module 'Magento_GoogleOptimizer': [Progress: 218 / 272] Module 'Magento_GoogleShopping': Installing data.. [Progress: 219 / 272] Module 'Magento_GroupedImportExport': [Progress: 220 / 272] Module 'Magento_GroupedProduct': Installing data.. [Progress: 221 / 272] Module 'Magento_ImportExport': [Progress: 222 / 272] Module 'Magento_CatalogRule': Installing data.. [Progress: 223 / 272] Module 'Magento_User': [Progress: 224 / 272] Module 'Magento_LayeredNavigation': [Progress: 225 / 272] Module 'Magento_Log': Installing data.. [Progress: 226 / 272] Module 'Magento_MediaStorage': [Progress: 227 / 272] Module 'Magento_Checkout': Installing data.. [Progress: 228 / 272] Module 'Magento_Multishipping': [Progress: 229 / 272] Module 'Magento_Newsletter': [Progress: 230 / 272] Module 'Magento_OfflinePayments': [Progress: 231 / 272] Module 'Magento_SalesRule': Installing data.. [Progress: 232 / 272] Module 'Magento_PageCache': [Progress: 233 / 272] Module 'Magento_Captcha': [Progress: 234 / 272] Module 'Magento_Persistent': [Progress: 235 / 272] Module 'Magento_ProductAlert': [Progress: 236 / 272] Module 'Magento_GoogleAdwords': [Progress: 237 / 272] Module 'Magento_Reports': Installing data.. [Progress: 238 / 272] Module 'Magento_RequireJs': [Progress: 239 / 272] Module 'Magento_Review': Installing data.. [Progress: 240 / 272] Module 'Magento_Rss': [Progress: 241 / 272] Module 'Magento_CatalogWidget': [Progress: 242 / 272] Module 'Magento_GiftMessage': Installing data.. [Progress: 243 / 272] Module 'Magento_OfflineShipping': [Progress: 244 / 272] Module 'Magento_ConfigurableProduct': Installing data.. [Progress: 245 / 272] Module 'Magento_SampleData': [Progress: 246 / 272] Module 'Magento_CatalogSearch': [Progress: 247 / 272] Module 'Magento_Sendfriend': [Progress: 248 / 272] Module 'Magento_Shipping': [Progress: 249 / 272] Module 'Magento_Sitemap': [Progress: 250 / 272] Module 'Magento_AdminNotification': [Progress: 251 / 272] Module 'Magento_Tax': Installing data.. [Progress: 252 / 272] Module 'Magento_TaxImportExport': [Progress: 253 / 272] Module 'Magento_CatalogUrlRewrite': Installing data.. [Progress: 254 / 272] Module 'Magento_Translation': [Progress: 255 / 272] Module 'Magento_Ui': [Progress: 256 / 272] Module 'Magento_Ups': [Progress: 257 / 272] Module 'Magento_UrlRewrite': [Progress: 258 / 272] Module 'Magento_Integration': [Progress: 259 / 272] Module 'Magento_Usps': Installing data.. [Progress: 260 / 272] Module 'Magento_Variable': [Progress: 261 / 272] Module 'Magento_Version': [Progress: 262 / 272] Module 'Magento_Webapi': [Progress: 263 / 272] Module 'Magento_Weee': Installing data.. [Progress: 264 / 272] Module 'Magento_CurrencySymbol': [Progress: 265 / 272] Module 'Magento_Wishlist': [Progress: 266 / 272] [Progress: 267 / 272] Installing admin user... [Progress: 268 / 272] Enabling caches: Current status: Array ( [config] => 1 [layout] => 1 [block_html] => 1 [view_files_fallback] => 1 [view_files_preprocessing] => 1 [collections] => 1 [db_ddl] => 1 [eav] => 1 [full_page] => 1 [translate] => 1 [config_integration] => 1 [config_integration_api] => 1 [config_webservice] => 1 )
[Progress: 269 / 272] Installing sample data: Installing theme: . Installing customers: . Installing CMS pages: .... Installing catalog attributes: ........................... Installing categories: ......................................... Installing simple products: ............................................ Installing bundle products: . Installing downloadable products: ...... Installing grouped products: . Installing Tablerate: ......... Installing configurable products: ..................................................................................................................................................... Installing taxes: .. Installing CMS blocks: .................. Installing product links: ....................................................................................................................................................................................................................................................................................................................................................................... Installing orders: .. Installing catalog rules: . Installing sales rules: .... Installing product reviews: ............................................................................................................................................................................................................................................................................................................................................................ Installing wishlists: . Installing Widgets: .................. [Progress: 270 / 272] Disabling Maintenance Mode: [Progress: 271 / 272] Post installation file permissions check... For security, remove write permissions from these directories: '/usr/local/www/bell.shopeveryday.us/app/etc' [Progress: 272 / 272] [SUCCESS]: Magento installation complete. root@bell:/usr/local/www/bell.shopeveryday.us #
thank you! It works.
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # ls debug.log system.log
root@bell:/usr/local/www/bell.shopeveryday.us/var/log # cat system.log [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'page.bottom' element cannot be added as child to 'page.bottom.container', because the latter doesn't exist [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'catalog.compare.sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'minicart.subtotal.msrp' element cannot be added as child to 'minicart.subtotal.container', because the latter doesn't exist [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'minicart.subtotal.msrp' tries to reorder itself towards 'minicart.subtotal', but their parents are different: 'minicart.subtotal.container' and '' respectively. [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'sale.reorder.sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'wishlist_sidebar' element cannot be added as child to 'sidebar.additional', because the latter doesn't exist [] [] [2015-06-02 23:04:03] main.CRITICAL: Broken reference: the 'store.settings.currency' tries to reorder itself towards 'store_language', but their parents are different: 'store.settings' and 'header.panel' respectively. [] []
@pccomfrank , so as I understand everything works now? If the installation may have public access or it's on a shared hosting, I'd suggest to play with permissions to the folders, as it may be insecure to give permissions to any user. Maybe these 777
permissions fixed the issue, which means that you were installing magento from a user, which doesn't own or doesn't have write permissions to pub/media
or some other necessary folder.
I was installing the Magento 2 by user root. The directories in var owned by root. Apache24 is owned by user www. user www could not access root's directories in var. I cannot install Magento by user www because I cannot su to www.
root@bell:/usr/local/www/bell.shopeveryday.us/var # su www This account is currently not available.
root@bell:/usr/local/www/bell.shopeveryday.us/var # cat /etc/passwd ...... www:*:80:80:World Wide Web Owner:/nonexistent:/usr/sbin/nologin
To fix this problem, I did root@bell:/usr/local/www/bell.shopeveryday.us # chmod -R 744 pub/media pub/static var app/etc root@bell:/usr/local/www/bell.shopeveryday.us # chown -R www:www pub/media pub/static var app/etc
Hopefully I fixed the problem.
@pccomfrank, can we consider that this issue is resolved?
Yes. Please.
how can you run magento2.0 in the chrome?
can you solve this problem:"One or more of the indexers are not valid. Please add Magento cron file to crontab or launch cron.php manually."? I try to run command the run.php ,but it didn`t work.
You can run cron in a browser or using the command line: http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli-subcommands-cron.html#config-cli-cron-browser
You must run it twice; first time to determine what jobs need to be run and the second time to run them.
Hi,
Any one can help me in this issue,
After reindexing we got an error message for category pages There has been an error processing your request Query catalog_view_container does not exist.
Thanks.
Doesn't help for me.
It seems the data are in the database:
mysql> show tables; +---------------------------------------------+ | Tables_in_m2bellshopeverydayus | +---------------------------------------------+ | admin_system_messages | | admin_user | | adminnotification_inbox | | authorization_role | | authorization_rule | | cache | | cache_tag | | captcha_log | | catalog_category_entity | | catalog_category_entity_datetime | | catalog_category_entity_decimal | | catalog_category_entity_int | | catalog_category_entity_text | | catalog_category_entity_varchar | | catalog_category_product | | catalog_category_product_index | | catalog_category_product_index_tmp | | catalog_compare_item | | catalog_eav_attribute | | catalog_product_bundle_option | | catalog_product_bundle_option_value | | catalog_product_bundle_price_index | | catalog_product_bundle_selection | | catalog_product_bundle_selection_price | | catalog_product_bundle_stock_index | | catalog_product_entity | | catalog_product_entity_datetime | | catalog_product_entity_decimal | | catalog_product_entity_gallery | | catalog_product_entity_group_price | | catalog_product_entity_int | | catalog_product_entity_media_gallery | | catalog_product_entity_media_gallery_value | | catalog_product_entity_text | | catalog_product_entity_tier_price | | catalog_product_entity_varchar | | catalog_product_index_eav | | catalog_product_index_eav_decimal | | catalog_product_index_eav_decimal_idx | | catalog_product_index_eav_decimal_tmp | | catalog_product_index_eav_idx | | catalog_product_index_eav_tmp | | catalog_product_index_group_price | | catalog_product_index_price | | catalog_product_index_price_bundle_idx | | catalog_product_index_price_bundle_opt_idx | | catalog_product_index_price_bundle_opt_tmp | | catalog_product_index_price_bundle_sel_idx | | catalog_product_index_price_bundle_sel_tmp | | catalog_product_index_price_bundle_tmp | | catalog_product_index_price_cfg_opt_agr_idx | | catalog_product_index_price_cfg_opt_agr_tmp | | catalog_product_index_price_cfg_opt_idx | | catalog_product_index_price_cfg_opt_tmp | | catalog_product_index_price_downlod_idx | | catalog_product_index_price_downlod_tmp | | catalog_product_index_price_final_idx | | catalog_product_index_price_final_tmp | | catalog_product_index_price_idx | | catalog_product_index_price_opt_agr_idx | | catalog_product_index_price_opt_agr_tmp | | catalog_product_index_price_opt_idx | | catalog_product_index_price_opt_tmp | | catalog_product_index_price_tmp | | catalog_product_index_tier_price | | catalog_product_index_website | | catalog_product_link | | catalog_product_link_attribute | | catalog_product_link_attribute_decimal | | catalog_product_link_attribute_int | | catalog_product_link_attribute_varchar | | catalog_product_link_type | | catalog_product_option | | catalog_product_option_price | | catalog_product_option_title | | catalog_product_option_type_price | | catalog_product_option_type_title | | catalog_product_option_type_value | | catalog_product_relation | | catalog_product_super_attribute | | catalog_product_super_attribute_label | | catalog_product_super_attribute_pricing | | catalog_product_super_link | | catalog_product_website | | catalog_url_rewrite_product_category | | cataloginventory_stock | | cataloginventory_stock_item | | cataloginventory_stock_status | | cataloginventory_stock_status_idx | | cataloginventory_stock_status_tmp | | catalogrule | | catalogrule_affected_product | | catalogrule_customer_group | | catalogrule_group_website | | catalogrule_product | | catalogrule_product_price | | catalogrule_website | | catalogsearch_fulltext | | checkout_agreement | | checkout_agreement_store | | cms_block | | cms_block_store | | cms_page | | cms_page_store | | core_config_data | | cron_schedule | | customer_address_entity | | customer_address_entity_datetime | | customer_address_entity_decimal | | customer_address_entity_int | | customer_address_entity_text | | customer_address_entity_varchar | | customer_eav_attribute | | customer_eav_attribute_website | | customer_entity | | customer_entity_datetime | | customer_entity_decimal | | customer_entity_int | | customer_entity_text | | customer_entity_varchar | | customer_form_attribute | | customer_group | | customer_log | | customer_visitor | | design_change | | directory_country | | directory_country_format | | directory_country_region | | directory_country_region_name | | directory_currency_rate | | downloadable_link | | downloadable_link_price | | downloadable_link_purchased | | downloadable_link_purchased_item | | downloadable_link_title | | downloadable_sample | | downloadable_sample_title | | eav_attribute | | eav_attribute_group | | eav_attribute_label | | eav_attribute_option | | eav_attribute_option_value | | eav_attribute_set | | eav_entity | | eav_entity_attribute | | eav_entity_datetime | | eav_entity_decimal | | eav_entity_int | | eav_entity_store | | eav_entity_text | | eav_entity_type | | eav_entity_varchar | | eav_form_element | | eav_form_fieldset | | eav_form_fieldset_label | | eav_form_type | | eav_form_type_entity | | email_template | | flag | | gift_message | | googleoptimizer_code | | googleshopping_attributes | | googleshopping_items | | googleshopping_types | | importexport_importdata | | indexer_state | | integration | | layout_link | | layout_update | | log_customer | | log_quote | | log_summary | | log_summary_type | | log_url | | log_url_info | | log_visitor | | log_visitor_info | | log_visitor_online | | mview_state | | newsletter_problem | | newsletter_queue | | newsletter_queue_link | | newsletter_queue_store_link | | newsletter_subscriber | | newsletter_template | | oauth_consumer | | oauth_nonce | | oauth_token | | persistent_session | | product_alert_price | | product_alert_stock | | quote | | quote_address | | quote_address_item | | quote_id_mask | | quote_item | | quote_item_option | | quote_payment | | quote_shipping_rate | | rating | | rating_entity | | rating_option | | rating_option_vote | | rating_option_vote_aggregated | | rating_store | | rating_title | | report_compared_product_index | | report_event | | report_event_types | | report_viewed_product_aggregated_daily | | report_viewed_product_aggregated_monthly | | report_viewed_product_aggregated_yearly | | report_viewed_product_index | | review | | review_detail | | review_entity | | review_entity_summary | | review_status | | review_store | | sales_bestsellers_aggregated_daily | | sales_bestsellers_aggregated_monthly | | sales_bestsellers_aggregated_yearly | | sales_creditmemo | | sales_creditmemo_comment | | sales_creditmemo_grid | | sales_creditmemo_item | | sales_invoice | | sales_invoice_comment | | sales_invoice_grid | | sales_invoice_item | | sales_invoiced_aggregated | | sales_invoiced_aggregated_order | | sales_order | | sales_order_address | | sales_order_aggregated_created | | sales_order_aggregated_updated | | sales_order_grid | | sales_order_item | | sales_order_payment | | sales_order_status | | sales_order_status_history | | sales_order_status_label | | sales_order_status_state | | sales_order_tax | | sales_order_tax_item | | sales_payment_transaction | | sales_refunded_aggregated | | sales_refunded_aggregated_order | | sales_sequence_meta | | sales_sequence_profile | | sales_shipment | | sales_shipment_comment | | sales_shipment_grid | | sales_shipment_item | | sales_shipment_track | | sales_shipping_aggregated | | sales_shipping_aggregated_order | | salesrule | | salesrule_coupon | | salesrule_coupon_aggregated | | salesrule_coupon_aggregated_order | | salesrule_coupon_aggregated_updated | | salesrule_coupon_usage | | salesrule_customer | | salesrule_customer_group | | salesrule_label | | salesrule_product_attribute | | salesrule_website | | search_query | | sendfriend_log | | sequence_creditmemo_0 | | sequence_creditmemo_1 | | sequence_invoice_0 | | sequence_invoice_1 | | sequence_order_0 | | sequence_order_1 | | sequence_shipment_0 | | sequence_shipment_1 | | session | | setup_module | | shipping_tablerate | | sitemap | | store | | store_group | | store_website | | tax_calculation | | tax_calculation_rate | | tax_calculation_rate_title | | tax_calculation_rule | | tax_class | | tax_order_aggregated_created | | tax_order_aggregated_updated | | theme | | theme_file | | translation | | ui_bookmark | | url_rewrite | | variable | | variable_value | | vde_theme_change | | weee_tax | | widget | | widget_instance | | widget_instance_page | | widget_instance_page_layout | | wishlist | | wishlist_item | | wishlist_item_option | +---------------------------------------------+ 308 rows in set (0.00 sec)
mysql>
I used the same method to install beta9, which is successfully installed the sample-data.074.0-beta9.