Q1. My "Today" and "Archive" links stop working when I am in the NP_gallery photo gallery!
A1. the solution will have to be a hack, because of the way np_gallery works, np_gallery is a SEPERATE blog, so as any seperate blog would do, it would have a "today" page. but in the context of NP_gallery, "today" doesnt make any sense. you will have to go into the skin template (like header.inc) and edit the links to be static instead of <% ... %> like nucleus would like.
Q2. I and error that looks like this:
mySQL error with query create temporary table temptableview (tempid int unsigned not null auto_increment primary key) select pictureid, thumb_filename from nucleus_plug_gallery_picture where albumid=2 order by pictureid ASC: Access denied for user: 'u1000855_phalcon@' to database 'db1000855_phalcon'
mySQL error with query select tempid from temptableview where pictureid=2: Table 'db1000855_phalcon.temptableview' doesn't exist
A2. Find the line
sql_query('create temporary table temptableview (tempid int unsigned not null auto_increment primary key) '.$this->query);
in picture_class.php and change to (around line 157)
sql_query('create table temptableview (tempid int unsigned not null auto_increment primary key) '.$this->query);
this is due to your server having temporary SQL tables turned off. this fix simply makes the table not temporary and would leave a trash table in your database, but its okay, it gets overwritten everytime its needed again.
Q3. why is there an empty space where my sidebar used to be on my photo gallery pages?
A3. this is a common problem when you use a skin with a sidebar such as leaf. what is happening is that even though you removed the sidebar from the main index template, the container and content are sell leaving room for a side bar.
Quote: |
#container{ width: 100%; float: left; margin-right: -230px; } #content{ margin-right: 230px; padding: 25px 0; } #sidebar{ width: 230px; float: right; padding: 25px 0; text-align: left; } |
what you can do to fix this is put in an inline css style to override the css file. ( you dont want to change the css file because that would screw up the rest of your site, naturally)
so go into the NPGallery skin (the clone you made of leaf) find the main index template, and take a look at the code I made below
Code: |
<%parsedinclude(head.inc)%> <!--header.inc--> <%parsedinclude(header.inc)%> <!--Start Main Index--> <div id="container"> <div id="content" style="width:700px"> <div class="contentdiv" style="width:700px"> <h2 class="weblog">Weblog</h2> <div class="divweblog"> <!--Database Generated Content--> <%gallery(gnoo/short,10)%> <!--End Database Generated Content--> </div> </div> </div> </div> <!--sidebar.inc--> <!--footer.inc--> <%parsedinclude(footer.inc)%> |
notice the two inline styles for contentdiv and content
style="width:700px"
go and add that to the main index template of your NPGallery skin (change the 700px to the actual width for your skin, I think it is actually 700px for leaf, but you can make it a little smaller, like 690px to avoid some IE6 bugs. keep tweaking it until its just right because its different for everyone)
Q4. I've enabled fancyurls on my blog and everything works fine except the gallery.
A4. fancy URLs dont work unless your nucleus site root is the same at the site root.