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 - tmacisnbr1

Pages: [1] 2
1
Well, you can either disable no right click, (look in the faqs section for a how-to). Or, there is a way around the no right click without having to disable it.

To get to url to just the image (which is what i think you want) you must right click the image when uploaded, and go to properties and get the link there. So to right click it and get this...do the following:

Right click the image, and hold down the right mouse button (even when the message pops up about no right clicks, keep the mouse button held down). When the message pops up, hit enter on the keyboard so the message goes away, and then once its gone, let go of the mouse button and your normal right click options will come up.

2
dude, jsut got to the modifications section on here and look through the different ones. All the "stickied" topics are working mods. The name of them are pretty self-explainitory. And most have a link to a demo in them, and all have a description, not that hard..stop being lazy :)

3
just for future reference...that is also how you edit anything like that.

So say if there was something you didnt want on your homepage, you would delete the tag that corresponds the whatever it is that you dont want. The templates are easy to tell which is which...ex: home.html is your homepage, categories.html is the page that it goes to when you click a category, etc. Just look at the names. You can also move tags around to change where things are shown.

4
Discussion & Troubleshooting / Permissions
« on: June 08, 2003, 02:49:19 AM »
thanks V@no! thats where i was going wrong, wasnt setting categories to private!

5
Discussion & Troubleshooting / Permissions
« on: June 08, 2003, 02:26:14 AM »
Ok, im like totally lost. How can you set permissions for specific users? Like, if i want specific permissions for a specific user, how do i go about setting that? Im not sure how to work/setup usergroups.

6
Not sure if you can by category, but to limit upload size, go to admin control panel and click settings. Look for the upload file size limits there and set it what you want.

7
Ok, i will keeping trying to look. What i mean by most in another language, where i see the scripts, its in another language so i cant tell what is going on, but i will try harder.

8
Im sorry, i cant speak most of that language, so would you be able to tell me if this is the script?

<?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File: random_full.php                                      *
 *        Copyright: (C) 2002 Jan Sorgalla                                *
 *            Email: jan@4homepages.de                                    *
 *              Web: http://www.4homepages.de                             *
 *    Scriptversion: 1.0 for 4images 1.6.1                                *
 *                                                                        *
 *    Never released without support from: Nicky (http://www.nicky.net)   *
 *                                                                        *
 **************************************************************************
 *                                                                        *
 *    Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz-       *
 *    bedingungen (http://www.4homepages.de/4images/lizenz.php) für       *
 *    weitere Informationen.                                              *
 *    ---------------------------------------------------------------     *
 *    This script is NOT freeware! Please read the Copyright Notice       *
 *    (http://www.4homepages.de/4images/lizenz_e.php) for further         *
 *    information.                                                        *
 *                                                                        *
 *************************************************************************/

// PATH TO YOUR 4images Gallery
define('ROOT_PATH', './4images/');

include(ROOT_PATH.'config.php');
include(ROOT_PATH.'includes/db_mysql.php');
include(ROOT_PATH.'includes/constants.php');


$site_db = new Db($db_host, $db_user, $db_password, $db_name);
function is_remote($file_name) {
  return (preg_match('#^https?\\:\\/\\/[a-z0-9\-]+\.([a-z0-9\-]+\.)?[a-z]+#i', $file_name)) ? 1 : 0;
}

$sql = "SELECT COUNT(*) as total_images
        FROM ".IMAGES_TABLE." a, ".CATEGORIES_TABLE." b
        WHERE a.image_active=1
        AND a.cat_id = b.cat_id
        AND b.auth_viewcat=".AUTH_ALL."
        AND b.auth_viewimage=".AUTH_ALL."
        ";
$row = $site_db->query_firstrow($sql);
$total_images = $row['total_images'];

mt_srand((double)microtime() * 1000000);
$number = ($total_images > 1) ? mt_rand(0, $total_images - 1) : 0;

$sql = "SELECT a.image_id, a.cat_id, a.image_name, a.image_active, a.image_media_file, a.image_comments
        FROM ".IMAGES_TABLE." a, ".CATEGORIES_TABLE." b
        WHERE a.image_active=1
        AND a.cat_id = b.cat_id
        AND b.auth_viewcat=".AUTH_ALL."
        AND b.auth_viewimage=".AUTH_ALL."
        LIMIT $number, 1";
$row = $site_db->query_firstrow($sql);
$image_id = $row['image_id'];
$cat_id = $row['cat_id'];
$image_name = $row['image_name'];
$image_comments = $row['image_comments'];
$full_src = (is_remote($row['image_media_file'])) ? $row['image_media_file'] : ROOT_PATH.MEDIA_DIR."/".$cat_id."/".$row['image_media_file'];

echo "<a href=\"".ROOT_PATH."details.php?image_id=$image_id\"><img src=\"".$full_src."\" border=\"1\" alt=\"$image_name\"></a><br>\n";
?>

9
Is there a way to put have a page that shows just a buncha (maybe 6 or so) random images?

Thanks!

10
Mods & Plugins (Releases & Support) / [Mod] Latest News and Archive
« on: May 31, 2003, 06:31:44 PM »
Thank you so much!!!

11
Ive tried it already, but no one pays attention to it.

Sorry, ill make sure of that next time.

12
You could just stick an image in the category and jsut have it says "links" and just make a comment for each link you post.

13
Is it possible to have the news header mod show who posted the comment of the news?

14
Mods & Plugins (Releases & Support) / [Mod] Latest News and Archive
« on: May 30, 2003, 05:25:30 AM »
Is there a way to make it so that it shows the name of the user that posted the comment in the news header?

15
I know there is the mod to keep track of what each user has downloaded, but what about a mod that does the following:

Click on the image, and it shows a list of all the users that have downloaded the skins.

Would this be possible?

Thanks, Alex

Pages: [1] 2