«media» 태그된 질문

3
제품 컬렉션에 미디어 이미지를 빠르게로드하는 방법
TL; DR : 전체 제품을로드하지 않고 어떻게 제품 이미지 / 갤러리를로드합니까? 제품에 이미지를로드하고 싶습니다. .phtml 에서 내가하는 일 $_popularCollection = $this->getPopularCollection(); foreach ($_popularCollection as $_product): // the rest $mediaGallery = $_product->getMediaGalleryImages(); endforeach; //the rest 내가 블록 클래스에서 무엇을 : public function getPopularCollection() { // http://magento.stackexchange.com/q/5838/3089 // no category if ( …

6
Amazon S3의 마 젠토 미디어 자산
Amazon S3에 모든 마 젠토 미디어 자산을 저장하는 방법을 묻습니다. https://github.com/punkave/aS3StreamWrapper 와 같은 PHP 스트림 래퍼 사용에 대해 생각 하고 미디어 폴더를 s3 : \ mybucket \ mediaFolder로 설정하십시오. 누구든지 이것에 경험이 있습니까? 또는 다음과 같이 더 잘 사용하십시오 : https://github.com/sstoiana/magento-s3 그러나이 확장은 좋지 않습니다. 다른 권장 사항이 있습니까?


4
Magento 2 WYSIWYG admin url을 사용하는 미디어 이미지 지시어
magento 2가 관리자 URL을 사용하여 미디어 이미지에 대한 지시문을 작성하는 이유는 무엇입니까? 예를 들어 카테고리 페이지 WYSIWYG에 이미지를 추가하면 추가됩니다. <img src="{{media url="wysiwyg/image.jpg"}}" alt="" /> 그러나 magento는 프론트 엔드를 위해 파싱하고 다음과 같습니다. <img src="https://domain.co.uk/admin/cms/wysiwyg/directive/___directive/e3ttZWRpYSB1cmw9Ind5c2l3eWcvQ29udmV5b3JfYmVsdHNfZmFzdF9kZWxpdmVyeS5qcGcifX0,/key/b67d0a8069ef28a8443e0bad6d912512704213d60e1d9021b1ec2b9dd34bf390/" alt=""> 브라우저에 관리자에게 링크되는 유일한 방법은 관리자에 로그인 한 경우입니다. 또한 프런트 엔드의 관리 경로를 …

4
magento 2의 phtml 파일에서 미디어 디렉토리 경로를 얻는 방법은 무엇입니까?
미디어 디렉토리 경로 를 얻기 위해 아래 방법을 사용 했지만 오류를 반환합니다. $om = \Magento\Core\Model\ObjectManager::getInstance(); $directoryList = $om->get(\Magento\App\Filesystem\DirectoryList::class); $pubMediaDir = $directoryList->getPath(\Magento\App\Filesystem\DirectoryList::MEDIA); 해결책을 찾도록 도와주세요.


4
get.php 및 / 또는`core / file_storage_database`가 생성 된 이유는 무엇입니까?
버전 1.5 또는 1.6 이후로 Magento는 루트 폴더에 파일 이름이 get.php이었습니다. core/file_storage_data모델을 사용하는이 파일을 사용 하면 Magento 시스템 소유자 는 파일 시스템에 이미지 파일이 없어도 데이터베이스의 Blob 열에서 직접 제품 미디어 파일을 제공 할 수 있습니다. PHP는 파일 전송을 처리 #File: get.php function sendFile($file) { if (file_exists($file) || is_readable($file)) { …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.