Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43295
Total Topics: 7523
Most Online Today: 230
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 192
Total: 192

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Weathernut

Pages: [1] 2
1
Support / Re: Download Where?
« on: August 19, 2009, 07:46:18 am »
the link for smf gallery lite is down too

2
Site Discussion / Re: question about the downloads hack
« on: March 06, 2009, 07:38:15 am »
Yes it does have category level permissions

wonderful.  thanks

3
Site Discussion / question about the downloads hack
« on: March 06, 2009, 06:13:27 am »
forgive me if this is in the wrong section, and feel free to move it if it is.

I have a quick question on the download hack found here on this site

Can one set permissions for different categories in the downloads section?
Example.  usergroup A has permissions to  download category A while usergroup b has permissions go to to download category B

I wanted to ask before installing.

Thank you!!

4
Support / Re: question about image gallery recent images on index page
« on: March 13, 2008, 09:04:59 pm »
Let me get back with you on this.  My hosting site and I are working on an issue.  When I installed the smfgallery pro, I suddenly lost ALL permissions to the gallery folder and every folder beneath it.  Even the hosting company cannot do anything with it.

So we are working on that issue, and once that is resolved, I may see this issue just go away!  If not, will pop back in with more specifics!

Thanks for the reply!

5
Support / Re: question about image gallery recent images on index page
« on: March 13, 2008, 08:18:25 am »
anyone with an idea on this? 
Thanks

6
Support / Re: ssi support for image gallery pro
« on: March 10, 2008, 02:10:54 pm »
talked to the mkportal guys a bit.
We are close.
Here is the code and what I see.  seems as if the ssi.php is getting in the way of the title show up first.  Not sure why and maybe someone here could answer.
Anyway, the code (screen cap) is below.  Also note, nothing shows up in the block on the main page...
we are getting closer though!


7
Support / question about image gallery recent images on index page
« on: March 09, 2008, 10:14:28 pm »
Ok, everything is working pretty good so far, but I have a question

On the gallery index page.  I have it set to show most recent and most viewed.
The most viewed works ok, but the most recent is incorrect.  It shows it in a descending order it appears.  (in other words, they are the oldest, not the newest images)
Is there a place I can tweak that, or something I may have missed?
Many thanks

8
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 05:50:14 pm »
Note... when you go to create a new block, they give you this information...

Quote
<?php
/*
Write code inserting output inside
variable $content as in following example.
You have DB connection, all global vars
and all MKPortal and Forum functions at your availability
*/

$nome = $mkportals->member['name'];
$content="Hi $nome";

9
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 05:14:54 pm »
I can send or attach the php page that mkportal has for their own gallery.  Would that be useful to edit to work for the smf gallery?

Code: [Select]
<?php
/*
+--------------------------------------------------------------------------
|   MkPortal
|   ========================================
|   by Meo aka Luponero <Amedeo de longis>
|      Don K. Colburn <visiblesoul.net>
|
|   Copyright (c) 2004-2007 mkportal.it
|   http://www.mkportal.it
|   Email: luponero@mclink.it
|
+---------------------------------------------------------------------------
|
|   > MKPortal
|   > Written By Amedeo de longis
|   > Date started: 9.2.2004
|
+--------------------------------------------------------------------------
*/
if (!defined("IN_MKP")) {
    die (
"Sorry !! You cannot access this file directly.");
}

$content "";



$count $this->stats['tot_gallery'];
$start = rand(0, ($count -1));
$query $DB->query("SELECT id, titolo, file FROM mkp_gallery where validate = '1' LIMIT $start, 1");
$foto $DB->fetch_row($query);
$id $foto['id'];
$titolo $foto['titolo'];
$file $foto['file'];
$thumb "t_$file";


if (!file_exists("$this->sitepath/mkportal/modules/gallery/album/$thumb")) {
  
$thumb_mes $this->ResizeImage(120,"$this->sitepath/mkportal/modules/gallery/album/$file");
$content "
<tr>
  <td align=\"center\"><a href=\"
$this->siteurl/index.php?ind=gallery&amp;op=foto_show&amp;ida=$id\"><img src=\"$this->siteurl/mkportal/modules/gallery/album/$file\" border=\"0\" width=\"$thumb_mes[0]\" height=\"$thumb_mes[1]\" alt=\"{$this->lang['gallery_zoom']}\" /></a>
  </td>
</tr>
<tr>
  <td class=\"tdblock\" align=\"center\">
$titolo<br />
  </td>
</tr>
"
;
} else {
$content "
<tr>
  <td align=\"center\"><a href=\"
$this->siteurl/index.php?ind=gallery&amp;op=foto_show&amp;ida=$id\"><img src=\"$this->siteurl/mkportal/modules/gallery/album/$thumb\" border=\"0\" alt=\"{$this->lang['gallery_zoom']}\" /></a>
  </td>
</tr>
<tr>
  <td class=\"tdblock\" align=\"center\">
$titolo<br />
  </td>
</tr>
"
;
}

if(!$id) {
$content "
<tr>
  <td class=\"tdblock\" align=\"center\">
  
{$this->lang['no_galleryim']}
  </td>
</tr>
"
;
}

if(!$mkportals->member['g_access_cp'] && !$this->member['g_access_gallery']) {
$content "
<tr>
  <td class=\"tdblock\" align=\"center\">
  
{$this->lang['gallery_noallow']}
  </td>
</tr>
"
;
}

unset($query);
unset($count);
unset($start);
unset($foto);
unset($id);
unset($titolo);
unset($file);
unset($thumb);

?>


10
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 05:10:00 pm »
Not sure probably would need to do same php script that used for the test page. Have not used mkportal.

And to be honest, I think I mistakenly said I had tp and not mk.
I have tried the test.php script and it did not work either.
Not sure of the hang up.  Any help/suggestions would be appreciated
If you would like to test some things out, I can set you up to do that too.
Many thanks for the prompt replies and patience with this noob  ;D

11
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 05:00:00 pm »
Yeah it just needs ssi_galleryrandom();  inside a php block that's what I use on this site.

hmmm, would that be what is needed for mkportal as well then?

12
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 04:38:52 pm »
ok, did all that
got the test.php file to bring up a random pic
fyi.... your code needed a ; and not a : at the end of ()


so, now that I got that to work... do I add that code as my block in tp?

http://www.weathernut.net/forum/index.php

13
Support / Re: ssi support for image gallery pro
« on: March 08, 2008, 04:35:10 pm »
see below post

14
Support / ssi support for image gallery pro
« on: March 08, 2008, 04:20:15 pm »
my turn to be an idiot....again! ???
I have installed the latest ssi to use with my gallery pro
I have mk portal.
I add a php block
I insert the ssi_galleryrandom():  code
I get nothing.
Here is what I add..
<?php
ssi_galleryrandom();
?>

save the block and get absolutely nothing.  I have made sure to activate the block as well. 
Why are the instructions seeming to be so vague?  There was mention of creating a new php block for mkortal, and just to add a block and to add ssi_galleryrandom();  If I do that, I get nothing as well.
I did install the ssi mod as well.
Any help would be appreciated. 
 

15
Support / Re: Gallery error message
« on: March 07, 2008, 09:45:42 pm »
egads, you mentioned that and I just changed it to reflect the cstrahan part.
Not sure how that changed at all!
It is working now..... 
what a pebcak error!
Thanks for getting back to me so promptly!

Pages: [1] 2

+- Recent Topics

Please Help! by SMFHacks
April 17, 2024, 08:04:55 am

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal