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

Pages: [1]
1
Discussion & Troubleshooting / Is this possible???
« on: February 10, 2006, 04:48:55 PM »
I have the image gallery installed and connected to phpbb forum.

Is it possible to only allow say a particular phpbb group to only allow to broswe the image galley..

IE.. if i create a phpbb usergroup called gallery... only people in that group can access the gallery

2
Mods & Plugins (Requests & Discussions) / User Created Galleries?
« on: December 21, 2005, 07:54:29 AM »
Im sorry if I have posted this in the wrong place..

But is there a mod which allows users to create their own galleries? I have had a quick search on here and couldnt see anything..

Cheers

3
Thankyou for that, i did not see the sessions.php in the 4images directory, so i assumed it referred to the one in the phpbb directory

4
Hello.

I have run into some problems with this mod. I basically just get shown a "security violation" message on screen. I am using phpbb 2.0.13

First problem being this.

The code  i have to replace in my phpbb does not match the code found in the installation docs for the following

My Original File

Code: [Select]
define('DELETED', -1);
define('ANONYMOUS', -1);
define('USER', 0);
define('ADMIN', 1);
define('MOD', 2);

your file states to do this

Code: [Select]
Ändere/Change:
       define('GUEST', -1);
       define('USER_AWAITING', 1);
       define('USER', 2);
       define('ADMIN', 9);

     zu/to:
       define('GUEST', -1);
       define('USER_AWAITING', -1);
       define('USER', 0);
       define('ADMIN', 1);
     ---------

The following is not in the code at all...

Code: [Select]
Ändere/Change:
       define('ADMIN_SAFE_LOGIN', 1);

     zu/to:
       define('ADMIN_SAFE_LOGIN', 0);

Has there been a major change in phpbb 2.0.13?

5
Mods & Plugins (Requests & Discussions) / Re: Intermitant Problem
« on: April 04, 2005, 06:09:01 PM »
Right, it seems now to have sorted itself.

however, this is what is happening now

when browsing, the thumb nails and images disappear, if you refresh a couple of times they return

6
Mods & Plugins (Requests & Discussions) / Intermitant Problem
« on: April 04, 2005, 04:19:33 PM »
I have installed the gallery but I having a random problem

When uploading a image i randomly get the following problem:

Warning: move_uploaded_file(): SAFE MODE Restriction in effect. The script whose uid is 10715 is not allowed to access /usr/local/psa/home/vhosts/MyDomanName/httpdocs/4images/data/media/1 owned by uid 2527 in /usr/local/psa/home/vhosts/MyDomainName/httpdocs/4images/includes/upload.php on line 113

I have read that you need to have safe mode turned off, or make sure that the web server has access to the data/media directory, the web host will not turn off safe mode, and they have assured me that the server has access to the directory.

As stated, this is a random message that is returned, sometimes the gallery works, then it doesnt

Pages: [1]