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

Pages: [1] 2 3 4 5
1
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: July 24, 2005, 12:55:44 AM »
I see that the vbulletin 2.x integration is ok, but what about the 3.x?

Here's the line in 3.x
$user_id = ($this->read_cookie_data(COOKIE_PREFIX."userid")) ? $this->read_cookie_data(COOKIE_PREFIX."userid") : GUEST;

2
Discussion & Troubleshooting / Re: Searching for users
« on: May 30, 2005, 02:11:33 AM »
Nevermind...with the help of a couple friends we went through all 800 one-by-one. :)

3
Discussion & Troubleshooting / Searching for users
« on: May 29, 2005, 06:32:41 PM »
Is there anyway to search for all users who have never uploaded any images so I could delete them?

4
Discussion & Troubleshooting / Changing & to &?
« on: March 26, 2005, 08:37:53 AM »
Where in the code would I be able to change the & to & (to make my code XHTML validated) when session IDs are added?

5
I'd love to see a mod that would go through all a gallery's pictures and remove all pictures that are not working...this would be very handy. I have a handful whose files don't exist on the server anymore due to moves and such.

6
Discussion & Troubleshooting / Is a mass move possible?
« on: March 15, 2005, 07:14:53 AM »
I'd like to combine a few categories into one and thus have to move all the pictures of some categories to another one. Is there anyway to do this without moving each picture one by one?

I suppose it'd be possible to do this in phpmyadmin with the database. Does anyone know what the query would be to do this?

7
Feedback & Suggestions / Ist eine neue Version geplant ?
« on: April 12, 2003, 07:04:26 AM »
Could someone kindly translate into English? :)

8
Installation, Update & Configuration / Issue with logging in
« on: April 05, 2003, 04:34:49 AM »
I don't have access to the php error log right now. :(

Here's my login.php (just the main content of it):

Code: [Select]
$main_template = 0;

$nozip = 1;
define('ROOT_PATH', './');
include(ROOT_PATH.'global.php');
require(ROOT_PATH.'includes/sessions.php');

$error = 0;
if ($user_info['user_level'] != GUEST || empty($HTTP_POST_VARS['user_name']) || empty($HTTP_POST_VARS['user_password'])) {
  if (!ereg("index.php", $url) && !ereg("login.php", $url) && !ereg("register.php", $url) && !ereg("member.php", $url)) {
    header("Location: ".$site_sess->url($url, "&"));
  }
  else {
    header("Location: ".$site_sess->url(ROOT_PATH."index.php", "&"));
  }
}
else {
  $user_name = trim($HTTP_POST_VARS['user_name']);
  $user_password = trim($HTTP_POST_VARS['user_password']);
  $auto_login = (isset($HTTP_POST_VARS['auto_login']) && $HTTP_POST_VARS['auto_login'] == 1) ? 1 : 0;

  if ($site_sess->login($user_name, $user_password, $auto_login)) {
    if (!ereg("index.php", $url) && !ereg("login.php", $url) && !ereg("register.php", $url) && !ereg("member.php", $url)) {
      header("Location: ".$site_sess->url($url, "&"));
    }
    else {
      header("Location: ".$site_sess->url(ROOT_PATH."index.php", "&"));
    }
  }
  else {
    $error = $lang['invalid_login'];
  }
}
if ($error) {
  $main_template = "error";
  include(ROOT_PATH.'includes/page_header.php');
  show_error_page($error);
}


I didn't do anything that might have caused this, as far as I know.

What host system info should I post?

Thanks!

9
Installation, Update & Configuration / Issue with logging in
« on: April 05, 2003, 04:25:02 AM »
http://www.tailfeathersnetwork.com/gallery/index.php

If you enter an incorrect username and password, then you just get a blank white page.

To check it out, just enter anything as a username and password and then try to login.

Any ideas?

10
Discussion & Troubleshooting / Including PHP Code
« on: February 23, 2003, 09:06:07 PM »
It worked - thanks! :)

11
Discussion & Troubleshooting / Including PHP Code
« on: February 23, 2003, 08:55:41 PM »
Hi everyone,

I want to put a PHP stats tracker on my gallery. However, I can't put the php code for it in a template (since it's .html) and I don't know how to go about putting it in the default php header or footer.

(It's a php include.)

Any ideas?

Thanks. :)

12
Is it possible to allow users to pick the language of the gallery (in a drop-down menu for example) if you have several language packs installed?

Thanks!

13
Chit Chat / Next Release?
« on: January 26, 2003, 02:22:54 AM »
Hi everyone,

I was just curious as to what will be in the next 4images release. Anybody know?

Thanks and keep up the great work. :)

14
Chit Chat / who wants vbulletin 2.2.7 ?
« on: October 27, 2002, 04:50:18 AM »
Yes, it's illegal to distribute the vBulletin code and you could get in quite a bit of trouble if you do it.

15
Mods & Plugins (Requests & Discussions) / Integration with vBulletin
« on: October 01, 2002, 10:51:11 PM »
Thanks! :)

Pages: [1] 2 3 4 5