Gallery extension
One of the most common requests I receive is an image gallery
for their site. This is a module I made to do that. It uses jQuery.gallerrific, an excellent javascript image gallery. It has an ajax backend to let you easily upload and organize
your images.
Screenshots




How to install
Step 1:
Download the Gallery extension here
Update: this is now available at what is vitiligo treatment
://www.magentocommerce.com/magento-connect/Magic%20Logix/extension/3544/mlogix_gallery”>Magento Connect
Step 2:
Extract it to your Magento directory
You may need to clear your cache if you have it enabled. It will also be available from Magento Connect soon (and I'll add the link here).
Note: if you have jQuery already installed on your Magento, you'll need to delete the one this extension installs at /js/jquery/jquery-1.3.2.js
Using it
Using the extension is very simple. Just go to Admin, and you'll see Gallery->Manage-Items. Here, you can upload and organize your images. Just click Add Item to make new Gallery pictures, and drag and drop them on the left tree to organize them. The extension will figure out automatically what items are categories, and which are pictures.
Then, the gallery can be viewed on the frontend by going to http://www.yoursite.com/gallery/
If you have any feedback, questions, or you find any bugs, please post them in the comments below, and I hope you enjoy your new gallery plugin!
Magento Gallery extension
or from Magento Connect
zp8497586rq

Tags:ajax, extension, free, free image gallery, gallery, image, image gallery, javascript, jquery, magento, module, photo, plugin
Thank you!
Hi
I’m using Magento ver. 1.4.0.1
I’ve loaded the extension and it all works fine in the admin area.
I’ve uploaded some images but when I goto the front end, I get my standard 2 column page but there are no images.
I have cleared my cache several times.
Any help would be appreciated.
Thanks
Mark
Does /gallery/ redirect you to /gallery/album/view/?
after installing I tried to manage items but received an error
Exception printing is disabled by default for security reasons.
Error log record number: 1833739284
also on the frontend an error
could you explain what I do wrong?
using magento: 1.4.0.1
Thanks for this awesome extension. You rock!
@reiniervr
Could you please email me /var/report/1833739284 and I can take a look at it?
email is: brady (a.t) magiclogix (com)
@Brady
Yes it does
Has the theme directory been changed to something other than ‘default’?
Hi Brady,
How do I create a tab link to the gallery page? I tried with a category but it link me to a .html page.
That really depends on the theme you’re using. The easiest way is to just edit the template file itself with
$this->getUrl(‘gallery’)
But depending on your template you can also add links via XML layout updates
Thank you so much Brady, I used your first option. It works like a charm.
Hi Brady,
Great plugin! We have installed but for some reason the mysql table is not being created. We get teh following error:
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘store.gallery’ doesn’t exist
Is it possible for you to provide us with an SQL query to create that table manually or shed some advice?
That’s odd. Do you have table prefixes enabled? There may be a prefix bug I overlooked…
If prefixes aren’t the issue, the SQL query to make the table can be found at app/code/community/MLogix/Gallery/sql/gallery/setup/
or if its easier I can just email you the query
We tried to run that Query but received this error:
ERROR: Unknown Punctuation String @ 20
STR: ->
SQL: CREATE TABLE {$this->getTable(‘gallery’)} (
`gallery_id` int(11) unsigned NOT NULL auto_increment,
`parent_id` int(11) unsigned NOT NULL default ’0′,
`after_id` int(11) unsigned NOT NULL default ’0′,
`item_title` varchar(255) NOT NULL default ”,
`description` varchar(255) NOT NULL default ”,
`filename` varchar(255) NOT NULL default ”,
`alt` varchar(255) NOT NULL default ”,
`status` smallint(6) NOT NULL default ’0′,
`created_time` datetime NULL,
`update_time` datetime NULL,
PRIMARY KEY (`gallery_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
#1064 – You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘{$this->getTable(‘gallery’)} (
`gallery_id` int(11) unsigned NOT NULL auto_in’ at line 1
We were able to get it to work with this particular server using:
CREATE TABLE `gallery` (
`gallery_id` int(11) unsigned NOT NULL auto_increment,
`parent_id` int(11) unsigned NOT NULL DEFAULT ’0′,
`after_id` int(11) unsigned NOT NULL DEFAULT ’0′,
`item_title` varchar(255) NOT NULL DEFAULT ”,
`description` varchar(255) NOT NULL DEFAULT ”,
`filename` varchar(255) NOT NULL DEFAULT ”,
`alt` varchar(255) NOT NULL DEFAULT ”,
`status` smallint(6) NOT NULL DEFAULT ’0′,
`created_time` datetime NULL,
`update_time` datetime NULL,
PRIMARY KEY (`gallery_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
Thanks for your help and of course the great plugin!
Hi Brady,
We have installed the plugin successfully now, but for some reason the getTitle()?> code snippet is not returning anything to the display pages in the Admin Category Tree or on the Frontend Image Detail page. Any ideas? We are happy to email you info to check it out or send screenshots.
I’ve got no idea… that does sound odd. What version of magento are you using?
Hi Brady,
I have a couple of questions for you. The first is how can I change the back ground colour, the font layout, etc. The second is where is the page title coming from as it is displaying magento commerce in the browser tab. Great Extenstion!
The background/font color can be changed by editing /skin/frontend/default/default/css/gallery.css
The background color is on line 211 of gallery.css
.gallery_wrapper .items { background-color: #000; border-color: #222; }The page title “Magento Commerce” is coming from your default settings… you can go to System->Configuration->Design and the tab called “HTML Head” has the default title.
The other way you can change the title is by editing the layout file (gallery.xml)
<gallery_album_view> <reference name="head"> <action method="setTitle"><title>Image Gallery</title></action> </reference> </gallery_album_view>We are using 1.4.0.1, if you like i can send screenshots to an email or allow you access to the backend to review.
Yes, if you could email me some more information I would like to take a look at it
brady (a.t) magiclogix (c.o.m)
Hi Bandy – I installed on Magento ver. 1.4.0.1 – With a custom template and is not redirectling from /gallery/ – Im getting a 404 error – Cleared caches and deleted /js/jquery/jquery-1.3.2.js
Desperate to get this extension working – Any ideas
thx
Todd
Brandy – Fixed – I have multi Stores on my site – Just was looking at the base URL. Once I went to the actual store URL it worked.
Thx
Hi, just installed without problems but when trying to view gallery page there is no nav bar showing which I would like.
Any ideas on how to get it to show?
Do you mean the breadcrumbs bar?
It should show up on a default installation (not shown in screenshots)
Hi, no I mean the actual navigation bar that has all the product categories on it.
Also if I go to the gallery url
http://www.sitename.co.uk/gallery
it redirects to
https://www.sitename.co.uk/index.php/admin/gallery/album/view/
Many thanks
John
To show the left navigation bar, edit
and change both instances of
to
This will show the left column, but depending on your site template, you may need to add your navigation block to the xml.
This is because a default installation generally doesn’t have a left navigation, not at the root category level anyway.
<gallery_album_view> <reference name="left"> <block type="your/navigation" name="your.nav"/> </reference> </gallery_album_view>Minor note: the entire `gallery_index_index` xml block can be removed; it doesn’t do anything.
As for the /admin/ redirect bug… I wasn’t able to reproduce this. That’s certainly unusual, for now I would just recommend linking to /gallery/album/view/ directly, or if you have any more information that may be helpful in identifying what’s causing it, I can try to fix it.
Thank you for building this extension. It looks promising, but I’ve run into three critical issues.
1-Attempting to add an image, I received this error: “Notice: Undefined variable: src_img in /home/heritage/public_html/app/code/community/MLogix/Gallery/Model/Gallery.php on line 514″
2-After adding an image (see item 1), 2 identical entries appear in the Item Manager (idential IDs as well). Deleting one deletes the other. When I check the “gallery” SQL table, there is only one entry per ID
3-No labels appear for the Gallery Categories or images in the Categories sidebar (Admin). Only the icons appear.
Less importantly, I noticed that the Gallery “delete” feature just deletes the database entry and does not delete the file in the media/gallery/ directory.
It should be noted that I have flushed all caches, reindexed all data in Index Management, then logged out and back in again.
Any assistance would be appreciated. Thank you again.
After looking into the undefined variable issue, I tested upper and lowercase versions of the file extension. The error does not occur if the filename extension is lowercase. Uppercase causes the error every time.
Now that I have entered an image, I discovered that the thumbnail images are being generated, but are not displaying because the img src is set to “http://mysite.com/media/gallery/thumbs/”, no filename is included.
Version of Magento is 1.4.0.1
Thank you again.
Hi Mike, thanks for your feedback.
1. Yep, definitely a bug. Will fix in next update. Just use lowercase extensions for now
2+3. One other user also reported something similar. I haven’t identified what’s causing it to break, probably some kind of conflict with another extension. But, what worked for him was to:
In the `gallery` table, change the item_title column to title.
Then in Model/Gallery.php on line 657 change:
return str_replace("\"","%22",parent::getItemTitle());to
return str_replace("\"","%22",parent::getTitle());Then for the issue of the thumbnails not showing up… that’s new. If you like, you can send me some more information at
brady (a.t) magiclogix (c.o.m)
and I’d be happy to take a look at it
Hi Brady,
thanks a lot for this extension. Installation worked out fine and I could make out “Gallery” in the backend. But since I added my first picture, I get the following error in the backend when choosing “gallery”:
Notice: Indirect modification of overloaded property MLogix_Gallery_Model_Gallery::$children has no effect in /var/www/vhosts/afrika-shop24.de/httpdocs/app/code/community/MLogix/Gallery/Model/Gallery.php on line 189
Trace:
#0 /var/www/vhosts/afrika-shop24.de/httpdocs/app/code/community/MLogix/Gallery/Model/Gallery.php(189): mageCoreErrorHandler(8, ‘Indirect modifi…’, ‘/var/www/vhosts…’, 189, Array)
#1 /var/www/vhosts/afrika-shop24.de/httpdocs/app/code/community/MLogix/Gallery/Model/Gallery.php(433): MLogix_Gallery_Model_Gallery->getJsonArray()
#2 /var/www/vhosts/afrika-shop24.de/httpdocs/app/code/community/MLogix/Gallery/Block/Adminht…. (etc – abou 24 lines to follow).
Could you assist me with this, please?
Thanks a lot in advance!
Olaf
What version of PHP are you running? This may be a bug with PHP 5.2.0.
Other than getting a notice, does it still work?
airbox
app/degin/frontend/defalt/your theme/template/gallery/rallery.phtml
line no 50
public function getThumbnail($width=130, $height=120) { $thumbname = $this->makeThumbnail($width, $height); return $this->getMediaUrl() . 'thumbs' . DS . $thumbname; }change into
public function getThumbnail($width=130, $height=120) { $thumbname = $this->makeThumbnail($width, $height); return $this->getMediaUrl() . 'thumbs' . '/' . $thumbname; }Hi,
Thank you for building this free extension which seems awesome !
I tried to install the Gallery extension from Magento Connect, but I have the following error :
“Cannot initialize ‘channel://connect.magentocommerce.com/community/MLogix_Gallery’, invalid or missing package file
Install Errors
Package “channel://connect.magentocommerce.com/community/MLogix_Gallery” is not valid
PEAR ERROR: install failed”
Then I tried by extracting directly the archive content in my magento directory, but have no tab “Gallery” in my administration page.
I am running Magento 1.4, do you have any ideas on how I can install this extension ? Thanks you again.
On your installer page, go to settings and set your Preferred State to “Beta”. Then your installer should be able to do its thing.
I am having an issue with adding categories. I can only add items. I am using the latest version of your extension along with Magento 1.4.0.1
Great extension though!
I can’t get any titles to show up on the frontend or the admin. I think it is just a missing function.
@Matt
You should be able to organize the items into categories by dragging and dropping them on the left.
Once the item has children items, that item becomes a category
@twistedindustries
Quite a few users have been having that problem. It’s a bug with certain versions of PHP. (see this post)
I may just rework that piece of code so it’s not an issue, but for now what you can do is:
Go into your database, and on the ‘gallery’ table, change the ‘item_title’ column to ‘itemtitle’
Then in Model/Gallery.php on line 657 change
public function getTitle() { return str_replace("\"","%22",parent::getItemTitle()); }to
public function getTitle() { return str_replace("\"","%22",parent::getItemtitle()); }Thanks for this great extension. I’m trying to add the Gallery to a CMS page using custom layout update. All good, except the Categories link through to /catalog/category/view/id/6 rather than /gallery/album/view/id/6. Any ideas?
In Block/Gallery.php change
public function getViewUrl($itemId) { return $this->getUrl("*/*/view").'id/'.$itemId; }to
public function getViewUrl($itemId) { return $this->getUrl("gallery/album/view").'id/'.$itemId; }Everything works except for one problem. I created a custom role for my staff. When I checkmark the gallery module box under role resources and hit save, it does not save. The checkmark disappears after saving my custom role resources. All other extensions are not affected. Gallery module is the only extension not saving after checkmarking in the admin area. Can you help? Thanks!
Yep, you’re right. I’ll get around to fixing that Monday or Tuesday
Hi everybody!
we fix the getTitle bug (not retrieve the title) on line 656 of file /app/code/community/MLogix/Gallery/Model/Gallery.php by replacing
return str_replace(“\”",”%22″,parent::getItemTitle());
with:
return str_replace(“\”",”%22″,parent::getData(‘item_title’));
Nice fix!
“Everything works except for one problem. I created a custom role for my staff. When I checkmark the gallery module box under role resources and hit save, it does not save. The checkmark disappears after saving my custom role resources. All other extensions are not affected. Gallery module is the only extension not saving after checkmarking in the admin area. Can you help? Thanks!”
Any fix for this yet?
Just uploaded a fix
Images not resizing correctly ?
Testing this module on a site redesign I’m doing for the missus. Have uploaded three test images and while two display fine the third doesn’t seem to resize properly.
First image is 1731 x 1749 (more or less square) and displays fine.
Second image is 500 x 761 (rectangle taller than it is wide) and it appears to resize to the width of the other two images but length wise it’s running beyond the display area and covering the footer links, etc.. on the page. i.e. orig image is 1.5x taller than it is wide and resized images is too – only the display are appears to be a fixed size so the images ends up covering the footer.
Third image is 2016 x 969 (rectangle wider than it is tall) and again horizontally it resizes to the same width as the other two and as expected the height of the resized images is approx half that of it’s width so it displays fine.
Any ideas ? May just need some css changes.
Dave
Yes, it’s an issue with the way Gallerific’s CSS and JS works together to transition the images.
I tried a few CSS changes that would fix the height issue but then the image transitions looked terrible.
It may be best to fix this in the gallerific JS instead of trying a CSS approach.
i have a problem with getAlt() i have this message in frontend :
Fatal error : Call to undefined method Mage_Core_Model_Abstract::getalt() in /home/gsg/www/app/code/community/MLogix/Gallery/Model/Gallery.php on line 661
can anyone help me??
That’s very strange… on line 661, does it say “parent::getalt()”?
If so, that’s an easy fix. Just change the “getalt” to “getAlt”.
If you downloaded it like that and made no modifications please let me know where you got it from so I can correct the typo.
On the other hand, if it already correctly says “parent::getAlt()” on line 661, there’s probably a bug in your version of PHP causing the error.
If you like, I’d be happy to take a look at it. Just email me at brady (a.t) magiclogix (d.o.t) com
I am running into an issue, in the admin section, when you add an item and place it under something other than the root/default category, it lists a duplicate entry on the main page.
There are not duplicate entries in the DB and the tree list on the left shows correctly.
Somewhere in the code that is displaying the main list, it is pulling a list of entries that have a parent_id greater than 0 and displaying them again.
Any suggestions on how to fix this or where I can look to see how the sql is being executed would be greatly helpful
The template/gallery/gallery.phtml gets the images with the function:
Which then calls the getGallery() function in Block/Gallery.php, which then calls the getGallery() function in Model/Gallery.php, which looks like this:
public function getGallery($parent=0) { $items = $this->getCollection(); $items->addFieldToFilter('status','1'); $items->addFieldToFilter('parent_id',$parent); return $items; }The SQL call is then abstracted through Mage_Core_Model_Mysql4_Collection, and the final SQL would look similar to “select * from gallery where status=1 and parent_id=$parent_id”.
As for how duplicates are showing up… I’ve got no idea. It could be a layout/template problem, but I don’t think the query itself is returning duplicates.
This is the first I’ve heard of it, so it’s a mystery to me… shoot me FTP info at my email and I’d be glad to take a look at it
fab addition to our website – thank you very much!
a few problems with resizing, are the photo’s supposed to automatically resize to fit the gallery box, or do I have to manually resize them to fit myself?
Just a query, otherwise a great gallery!
another query that’s quite important, is there any way of getting the categories to go across instead of down? On the demo shots on this page, the categories are going across, yet on my website they’re going down! Help needed if possible, thanks!
i don’t know if this comment posted earlier, if it did (my apologies, internet is slightly temperamental!) then ignore this, but is there any way to resize photos so they fit automatically into the box? my pictures are too large and the box only shows the top left hand corner of the picture, and i was just wondering if there was a fix for this, or whether all photos would have to be manually changed? cheers!
@naomi
No, currently the images are not resized. The thumbnails are, but the main images are not. It’s on my list of things I’d like to add though.
@ian
The CSS needed to do that is:
.gallery_wrapper .categories .category { float:left; }This probably should have been included with the default CSS; I’ll add it next time I update it
The CSS file is at
/skin/frontend/default/default/gallery.css
As for the images being too large and not showing the entire image… that’s strange because even if the image is gigantic, the width should still be resized on the browser and the whole image should be showing. Do you have a link I could take a look at?
Hi thanks for the plugin it’s great, is there anyway of changing the location of the Gallery for example instead of http://www.xxx.com/gallery
to
http://www.xxx.com/showcase.
Thanks in advance !
Sure, to do that there’s two things you need to change. The first is in app/code/community/Gallery/etc/config.xml, on line 10
Change that to:
There’s a similar looking code block on line 28 but that one is for the admin section, and shouldn’t be changed.
Next, open app/design/frontend/default/default/layout/gallery.xml, and change
to
Clear cache (if needed), and that should be it!
If anything is still linking to /gallery/ at that point there is probably a hardcoded getUrl(‘gallery/something’) somewhere. In which case just change to getUrl(‘showcase/something’) or getUrl(‘*/something’)
Seems good so far, but I am not getting any images to show up on the gallery page. It does redirect…and am using custom template…
ssvtest.info/gallery/
You’ll need to move the gallery layout and template files from /app/design/frontend/default/default/
to either /frontend/{custom}/{custom}/ or /frontend/base/default/
The two things you need to move are:
/frontend/default/default/layout/gallery.css
and the
/frontend/default/default/template/gallery/ directory.
(This will be fixed in next version)
Were the file and folder placed by the extension? And, sorry, but what is the difference between the two destination folders you offered, and do I use my custom template location for {custom}/{custom}/? Thanks for your help.
Yes, you should use your custom template location for {custom}/{custom}. This is where the system will first look for the template files.
If the template files are not found in your custom template folder, the system will then look in the base template folder (“frontend/base/default”).
So the only difference between these two folders is that the “base” folder has a lower priority. The file from “base” will only be used if it can’t be found in your template folder.
If you like, I’d be happy to install it for you – just shoot me an email
Thankyou for your help! We now have categories going across instead of down, fab instructions! The url for our website is http://www.satellitewarehouse.co.uk/gallery, we still have no cure for the photos! Thankyou for your help, superb add-on!
@ian
It seems to be working fine, is there still a problem?
Hi Brady, I can create only item’s. When I push “+ Add Categories” or “Add Item” it always load “Add Item”.
can you help me?
Every category starts off as a regular item. The item becomes a category when it has children items beneath it.
This is done by rearranging the items on the left. (drag and drop)
Or when you click “Add Item” you can see or choose what item it will be placed under. (Parent)
Yes, it works!!! Thanks. Two more questions:
1. Why in admin area each item shows twice?
2. What about localization? Please! !!! (“Play Slideshow”, “Previous Photo”, “Next Photo”, “Photo of “, “Download Original” and “Photo Gallery” in a different languages)
Thank you for your help!
1. I’m not sure. I’ve seen other people report that problem as well but I haven’t been able to reproduce it
2. I’ll for sure add that to my to do list.. it may be a while before I can get around to it though
First of all excellent extension. Congratulations.
I’m having the same two problems as tester:
Each item shows twice.
I need to translate the extension. How can I do that?
The first step in translating the extension is converting the text in the code from “somestring” to Mage::helper(‘gallery’)->__(“somestring”);
The template files that would need to be edited are at /app/design/frontend/default/default/gallery/
Then, in /app/code/community/MLogix/Gallery/etc/config.xml, you would need to add this to the xml:
Note: These two steps will be included in a later update, but for now must be added manually.
Then the last step is to go to /app/locale/(yourlocale)/ and create a MLogix_Gallery.csv file. In here you can make your translations in the format:
“old text”,”new text”
thankyou! it was a simple solution that the photos were just too large for the gallery to resize, when i reduced the size it could then process them and it resizes!
thankyou for all the help, customers have commented on how much they love our gallery function!
thankyou again!
What is the process for upgrading from 1.15? Can it be done without starting from scratch?
You shouldnt need to start from scratch, no. Backup your existing plugin, then install the latest version.
The only files that have changed from 1.15 to 1.17 are config.xml, adminhtml.xml and Model/Gallery.php.
So just copy these files into your old version or vice versa and youre good to go:)
First off great plugin. But I can get any images to show up. Just the thumbnails.
http://chrellisjewelry.com/gallery
can you take a look and let me know what is going on?
Update: I works with the default theme. I moved all the correct files to the theme I am using but it still isn’t working…
For some reason, the /gallery/ url works but /gallery/album/view/ does not. I don’t know what would cause this to happen. If you like, you can email me ftp info at brady(at)magiclogix(dot)com, and I can look further into it
after extracting the files when i click on Gallery->manage items, i get an error saying operation aborted. plz can anyone guide me to fix this…
Hi. I have Magento 1.4.1.0. I set it up using magento connect, I deleted the js file, and succesfully added a few pictures. I see the thumbnail, but I it won’t load the main picture. It loading symbol goes around and around but no picture. Any ideas?
Hi I’m trying to set up the gallery, and everything works except that it doesn’t show the large image. It shows the thumbnails perfectly fine, but the loading symbol keeps loading and never comes off. I set it up using magento connect and I deleted the js file. Any ideas? Thanks
I have found the following bugs:
in admin
1) Save and continue edit button does not work
2) in gridview each item that is not a root category is shown twice
in frontend
images are now shown
You you could change the webpage subject title Plugin: Gallery | Magento Advisor to more suited for your webpage you create. I enjoyed the post nevertheless.
Is there any way to change the default url? I am trying to put this in a client site, but I need the url to say something other than mysite.com/gallery
When draggin to re-order the refresh wheel spins but if I leave that admin page then return the gallery order is back to the previous order state.
I just noticed something hopefully someone can post a fix.
Everything works wonderfully in firefox, first of all. I just opened my site up in IE8, and it seems something isn’t working well with the way the gallery resizes images.
In firefox, when you click on an album, it loads the horizontal line of images with the first image ‘resized’ below on the left. When i view the same in IE8, the image on the left below the horizontal line of images is in full size and gets cut off by the description area on the right.
This is what I’m talking about:
As viewed in IE:
http://i11.photobucket.com/albums/a151/steveshaar/29cec12f.jpg
As viewed in Firefox:
http://i11.photobucket.com/albums/a151/steveshaar/f96a4f06.jpg
Hi I’m using Magento v 1.4.0.1 and used extension manager to install. Gallery tab is on the CMS, but when i click on manage items i get the following error:
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘alessade_magento.gallery’ doesn’t exist
Thought maybe it’s because I have a custom theme and the files were all in the default folders so i moved all of them to my theme folders and still getting the error, please help!
category and image sort is not working. please help to fix this.
in gridview on the right all item that are not root categories are shown twice how can i fix this issue many thanks
Hello,
I have a custom template and admin works fine but when i try to access /gallery it redirects to /gallery/album/view/ and it shows me nothing but the default 3 column template with nothing on it.
Any help would be appreciated,
Thanks,
Andre
It installed fine and I am able to see the options and use them in the admin section. However, accessing /gallery just takes me to a sample 3 column layout without content.
Any help?
Thanks
Hi I am using your extension on a site. crystals925.co.uk/ and the gallery images do not seem to be appearing.
thanks
Luke
Hi, My images are uploaded (though they have doubled themselves )but my GALLERY page is blank? I am using MOXY template. Any ideas? I’ve read through previous posts. Quite a newbie here. thanks.
I am still getting the error
“Notice: Undefined variable: src_img…” while adding the images with titles like “Magic Logix” etc.
tried with the solutions suggested above but not yet resolved the issue.
Does this support Multi-Site Installs? A gallery for each site independent of the other?
Thanks.
“Hi. I have Magento 1.4.1.0. I set it up using magento connect, I deleted the js file, and succesfully added a few pictures. I see the thumbnail, but I it won’t load the main picture. It loading symbol goes around and around but no picture. Any ideas?”
Same problem…. any idea what I need to change?
Hi Brady
I have istalled the Gallery on a site and it is working perfectly, however the large images will not display on IE8. All is fine on Firefox, Chrome, etc.
Any ideas?
Many thanks
Thank you!! Works perfectly fine
Installed the plugin through magento connect.thumbnails are shown in frontend but the larger images are not shown and the loader symbol keeps on loading.Help me to fix this.Thanks for the Great Plugin.
DOES IT WORK IN 1.5.X?
Hi,
I also have the problem with my items showing twice in the backend. I use Magento 1.5.1.0.
Does anyone already have a fix for this?
And also, I can’t seem to change the /gallery/ -url. I tried the method provided in comment Comment 214, but also it simply redirects to /gallery/album/view/
For the double items in the admin list, here’s the fix:
in Gallery/Block/Adminhtml/Gallery/Grid.php, add this empty function to the class:
public function getMultipleRowColumns() { }Hmm how do i get it to work in another theme i tryed change it to instread of default/defualt
to Default/themename
In app and skin
But it still dosent work
Downloaded the plugin fine – thanks for making it an easy download. But it’s not showing up on /gallery page – looks like my custom theme is overriding it b/c the page that loads at /gallery is themed but no content. Any suggestions on how to get the gallery to load?
thanks,
Thanks for the great Plug-in. There is nothing out there like it. I am having issues getting it working correctly. Could you please let me know what I am doing wrong. Check it out. http://www.lorenzogiles.com/HOM/index.php/gallery/album/view/id/1
Thank you
Lorenzo
I’m looking for a way to resize the thumbnails proportionately? Maybe by setting a $maxwidth and $maxheight somewhere. I came across http://blog.chapagain.com.np/magento-resize-image/ and have come very close to getting it to work, but the answer continues to allude me. Thanks for the awesome plugin.
Has anyone got this working on 1.4.2 by any chance?
Hi
I’m using Magento ver. 1.4.0.1
I’ve loaded the extension and it all works fine in the admin area.
I’ve uploaded some images but when I goto the front end, I get my standard 2 column page but there are no images.
Thanks
Hi,
I installed the extension and the display is coming up pretty funny.
If you can have a look.
maneamerica.com/gallery
Exception printing is disabled by default for security reasons.
Error log record number: 950864014
This is front view after installation admin look s is good.
I am using 1.4.0.1 Magneto Please help me any
Ashutosh
Hi,
Brady,
Thanks for making good extention,
I am getting blank page in admin.
When I click on menu Gallery> Manage Items, it give me blank page, you have any idea.
thanks in advance.
Hi,
I’ve uploaded the files, but in admincp I can’t see anithing about “Gallery”… Solutions?
I like your extension – many thanks!
Unfortunately I come across the following problem: Chrome works fine, IE7 does not show image (jpg), while firefox does not show thumbnails (png). Any clue on how to resolve this?
Hi,
The actual image and the description doesn’t appear. Can you help me on this? thanks
Any idea why when using SSL the gallery always uses a secure page?
Hi
I used it in magento 1.6 its work fine But in magento 1.5.1.0 in admin section this module is enable but not work even nothing display.Its seems that no change in admin area..
Any idea why this reason.
Thanks,
Starjahid
great magento extension, I installed it on my localhost and it works fine but my problem is when I installed it on my website hosted by godaddy the feature for gallery->manage items seem look different, and i dont know how to do it.
hello to all, I already fix my first post problem, and now I got this sql error : SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘WHERE (gallery_id=’ynode-5′)’ at line 1, when saving the image item, your help much appreciated.
Hi. Doesn´t work for me in 1.6.1
Not found the images and when you click over the place where the image should be tle link is:
http://*******/gallery/album/view/getViewUrl($item->GetId())?>
Any suggestion? Thanks
The exact link is:
getViewUrl($item->getId())?>
thanks again
Hello,
I downloaded the gallery.zip
logged into my magento manager
browsed in in “upload package file” and uploaded the zip file.
After changing the setting from stable to beta AND alpha…I still get this message in the console:
CONNECT ERROR: Package file is invalid
Invalid package name, allowed: [a-zA-Z0-9_-] chars
Invalid version, should be like: x.x.x
Invalid stability
Invalid date, should be YYYY-DD-MM
Invalid channel URL
Empty authors section
Empty package contents section
I have logged in and out and cleared my cache. Can anyone help?
I was ondering how to call this module in a CMS page.
I’ve tried both these methods but none seem to work.
{{block type=”mlogix_gallery/gallery”}}
{{block type=”core/template” template=”gallery/gallery.phtml”}}
anyone have an ideas?
installed it with no problems through magento connect, uploaded few categories and few items. In the frontend was always black and had that waiting icon going round and round.
Thanks! this has helped me a lot
How can I the gallery popup turn into light box
What is the process I need to go through to Extract it to your Magento directory??
I apologise for the silly question, but as I am new to this web design stuff, the most basic web-lingo is confusing!!
Please help! Many thanks in advance
Hi,
I have installed gallery plugin and added the images. But i have one query. How to add to Gallery menu in front page.
For example : If i click Gallery link in menu will display all the images which we have uploaded into gallery.
If anyone is seeing getAlt()?> in the gallery template and the server is not correctly echoing the image paths, alt tags, or titles then the problem is with your server’s PHP shorthand settings.
You can open the file (if you are using the default template) app/design/frontend/default/default/template/gallery/gallery.phtml
You will need to replace the PHP shorthand echo command with the normal echo command.
Find all instances of ‘<?=' and replace with '<?php echo ' in the file gallery.phtml. Make sure you include a space after the 'echo' statement. This should fix your gallery.phtml file.