vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - PhotoPlog: The Lite Gallery (https://vborg.vbsupport.ru/showthread.php?t=101368)

Code Monkey 01-06-2006 11:10 PM

Quote:

Originally Posted by calorie
That'll only work if PhotoPlog is installed one level inside the forum directory. It won't find the forum directory for when PhotoPlog is installed elsewhere, i.e., it's not a general solution.

That's why you tell then to upload the directory to their forum root. ;)

nitro 01-06-2006 11:22 PM

Quote:

Originally Posted by JumpD
That's why you tell then to upload the directory to their forum root. ;)

Would be ok if it used a hook to integarte say a photoplog.php file to vb's index. I think that would be a huge change now tho.

calorie 01-06-2006 11:35 PM

What about the people who don't want 'everything' in their forum directory? ;)

nitro 01-07-2006 12:19 AM

Quote:

Originally Posted by calorie
What about the people who don't want 'everything' in their forum directory? ;)

I probably didnt quite word the post right. I pretty much agree with you for this addon anyway, but if it was to change I would be ok with it as above ;)

I wouldnt want to be forced to have to have a photoplog directory in forum root & it not be an integrated hook on vb's index.

I really dont see much hardship in editing one line on the rare occasion the photoplogs config.php needs an update or for first install. :)

furst 01-07-2006 01:29 AM

Quote:

Originally Posted by calorie
@furst: in settings.php you could try and set $photoplog_location to whatever link you'd like.

It's already pointed to /index.php.
When I go to the gallery it always redirects me back to the main domain. It doesn't stay in the sub-domain that it's supposed to.

Anything else you can think of? I really want to have a gallery on my site but if I can't get this working then it isn't an option.

calorie 01-07-2006 02:11 AM

@nitro: oops, forgot the @JumpD on that comment. JumpD's code bit would help with the full path questions people have by removing that element, but there might then be 'how to move out of forum directory' questions. I just tried to be as general as possible so PhotoPlog could go in /photoplog, /foobar/photoplog, /forum/photoplog, /forum/foobar/photoplog, etcetera. My preference is to have /forum for the forum and stick other things in their own directories, but if people want to do as JumpD suggests and install in /forum/photoplog, machts nicht to me. ;)

@furst: find the following in PhotoPlog's settings.php file:
Code:

$photoplog_location = $photoplog_schemehost.$vbulletin->options['photoplog_script_dir'];
And try 'hard' setting it to something like follows:
Code:

$photoplog_location = 'http://sub.domain.com'; // OR
$photoplog_location = 'http://sub.domain.com/foo'; // OR
$photoplog_location = 'http://sub.domain.com/foo/bar'; // ETC


utw-Mephisto 01-07-2006 04:26 PM

I have exactly 7 pictures in the gallery and it stopped working.

Now I (actually everybody) gets the error

Sorry, utw-Mephisto: Maximum Number of Allowed File Uploads Exceeded

The Maximum File Limit is even set to 100000

calorie 01-07-2006 07:42 PM

@harry1951: look in the templates for $vbphrase[posts] and stick the links around there or wherever else you'd like them to appear

@utw-Mephisto: atop of upload.php is where max files is checked, probably permissions so try: admincp/index.php?do=buildbitfields

utw-Mephisto 01-07-2006 07:49 PM

Did not work I am afraid :(

calorie 01-07-2006 09:05 PM

Okay, go run the following query in say phpMyAdmin and see if it returns a count:
[sql]
SELECT COUNT(*) FROM photoplog_fileuploads WHERE userid = 1;
[/sql]

centers 01-08-2006 12:33 AM

Hey first i wane say WHAT A GREAT HACK hehe but i have a problem everything is working but if i click upload i get this message Sorry, center: Bad File center is my board username, my image dir is 777 what im doing wrong please help me man..

nitro 01-08-2006 12:37 AM

File is probably outside the size limits for your vb usergroup think its in permissions you can change it.

centers 01-08-2006 12:50 AM

Is not working too, im trying and trying for 4 hours now lol

calorie 01-08-2006 01:58 AM

It's either file size like nitro said, or it could be that your /tmp directory is not accessible, assuming you are trying to upload a gif, jpg, or png image.

utw-Mephisto 01-08-2006 02:01 AM

Quote:

Originally Posted by calorie
Okay, go run the following query in say phpMyAdmin and see if it returns a count:
[sql]
SELECT COUNT(*) FROM photoplog_fileuploads WHERE userid = 1;
[/sql]

Count = 1 :(

Since Userid 1 is me and I just uploaded one file it is true

calorie 01-08-2006 02:12 AM

In PhotoPlog's upload.php file find the following near the top:
Code:

require_once('./settings.php');
And afterwards place the following code temporarily:
Code:

echo "x".$permissions['photoplogmaxfilelimit']."x<br />";
echo "x".intval($permissions['photoplogmaxfilelimit'])."x<br />";
$temp_check = $db->query_first("SELECT COUNT(*) AS cnt
        FROM photoplog_fileuploads
        WHERE userid = ".intval($vbulletin->userinfo['userid'])."
");
echo "x".$temp_check['cnt']."x<br />";
exit();

Then call PhotoPlog's upload.php from a browser. What do you see?

utw-Mephisto 01-08-2006 02:14 AM

Quote:

Originally Posted by calorie
In PhotoPlog's upload.php file find the following near the top:
Code:

require_once('./settings.php');
And afterwards place the following code temporarily:
Code:

echo "x".$permissions['photoplogmaxfilelimit']."x<br />";
echo "x".intval($permissions['photoplogmaxfilelimit'])."x<br />";
$temp_check = $db->query_first("SELECT COUNT(*) AS cnt
        FROM photoplog_fileuploads
        WHERE userid = ".intval($vbulletin->userinfo['userid'])."
");
echo "x".$temp_check['cnt']."x<br />";
exit();

Then call PhotoPlog's upload.php from a browser. What do you see?


Quote:

x0x
x0x
x1x
Thats all I see

calorie 01-08-2006 02:24 AM

What is your Maximum File Limit set to for your usergroup? Still 100000? If so, run the following query. What do you see?
[sql]
SELECT usergroupid, photoplogmaxfilelimit FROM vb3_usergroup;
[/sql]

utw-Mephisto 01-08-2006 02:30 AM

Quote:

Originally Posted by calorie
What is your Maximum File Limit set to for your usergroup? Still 100000? If so, run the following query. What do you see?
[sql]
SELECT usergroupid, photoplogmaxfilelimit FROM vb3_usergroup;
[/sql]

Sorry for all your trouble and thanks for the support. However, the problem is solved.

We have several usergroups and one secondary usergroup had the setting to 0 ..

But shouldn't be the primary usergroup above the secondary permission wise ?

But again, thanks for the fast support ..

calorie 01-08-2006 03:05 AM

With primary and secondary usergroups and PhotoPlog, zero is like a buzzkill, overriding the other permission. If you change the zero to a one, the greater permission should then apply.

utw-Mephisto 01-08-2006 03:08 AM

ok :)

Thanks anyway, great mod !!

Rakehel 01-08-2006 01:10 PM

I'm just about at wits end after trying every possible path listing, what am I doing wrong here please calorie? I'm attempting to have Photoplog set up in the /forum/photoplog directory and tried hardcoding the domain name and path into the location line. Do I still have the incorrect path in config.php?:

Quote:

Warning: chdir(): No such file or directory (errno 2) in /home/xxx/public_html/forum/photoplog/settings.php on line 85

Warning: main(./global.php): failed to open stream: No such file or directory in /home/xxx/public_html/forum/photoplog/settings.php on line 86

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxx/public_html/forum/photoplog/settings.php on line 86

calorie 01-08-2006 06:09 PM

See post3:
Code:

define('PHOTOPLOG_FWD','/home/xxx/public_html/forum');

centers 01-08-2006 07:14 PM

SQL-query: Documentatie

SELECT usergroupid, photoplogmaxfilelimit
FROM vb3_usergroup
LIMIT 0 , 30

MySQL retourneerde: Documentatie
#1146 - Table 'CN20051353_test.vb3_usergroup' doesn't exist

jancarlo 01-08-2006 08:27 PM

Warning: chdir(): No such file or directory (errno 2) in /home/site/public_html/photoplog/settings.php on line 85

Warning: main(./global.php): failed to open stream: No such file or directory in /home/site/public_html/photoplog/settings.php on line 86

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/site/public_html/photoplog/settings.php on line 86

???

grazie
jancarlo

calorie 01-08-2006 09:37 PM

@centers: replace vb3_ with your vB TABLE_PREFIX

@jancarlo: see post622 and post623, and also post3

rfonseca 01-11-2006 01:20 AM

Calorie,
thnx for doing photoplog. I've got a strange problem and hope you can give me some insight. I have two usergroups set to unmoderated. Both of these groups still end up in the moderation que and the users are not able to see their images until I approve them.

I created a test user for one of these usergroups and I am able to upload without moderation (so it's working for my test user account). I can't figure out why the users that were in these groups prior to installing photoplog are unable to upload without moderation. Any help you can throw my way would be greatly appreciated.

thanks again,
rf

calorie 01-11-2006 05:03 AM

Are any of these members in secondary usergroups where moderation is on?

rfonseca 01-11-2006 11:04 AM

Quote:

Originally Posted by calorie
Are any of these members in secondary usergroups where moderation is on?

Ahh! Ok, I will edit those. Thanks!

rf

andreamarucci 01-11-2006 12:41 PM

A stupid question, I know, But I've to ask....

Is Photoplog the solution to let some users have their personal gallery? I'm searching for a solution integrated with VB so that I can allow some people to have personal gallery visible to everyone.

Any suggestion?

msimonds 01-11-2006 12:55 PM

calorie -

i installed this mod on my test 3.5.3 forums and everything went fine.

I created a category and I am trying to upload but i am not getting anything, the pic does not get ulploaded

I changed the permissions on the admins and users not logged in /unregistered.

I have chmoded the "images" folder to 777 and checked and re-checked the paths, they are all correct.

http://www.sportsrant.com/sto/member-gallery/upload.php

can you try and ulpload a picture to see if you can get it to work, I am at a loss here

TIA and nice mod sir

Mike
Sportsrant.com

msimonds 01-11-2006 01:29 PM

i found out it was this in my site root:
Quote:

RewriteCond %{HTTP_HOST} !^www\.sportsrant\.com
RewriteRule (.*) http://www.sportsrant.com/$1 [R=301,L]
is there a way to modify that so it works, if not, no big deal

also in IE, i am getting image path errros and my config paths are correct, i have double checked those

Mike

Club3G 01-11-2006 02:49 PM

/me clicks install.

Club3G 01-11-2006 03:17 PM

Is there a way to get this to require a category? Not Available by default will mean that about 90% of my members won't bother to pick one.

calorie 01-11-2006 05:32 PM

@andreamarucci: see post557 for how to view a specific user's gallery by the userid

@msimonds: try sto.sportsrant.com/member-gallery/ or see post606 to set your link

@Club3G: see post523 and post526 for how to prevent uploads with no set category

calorie 01-11-2006 05:48 PM

With 40 some pages, assuming 15 posts per page, and over 600 posts, all in one thread, official support for this mod is now held off-site. Apologies in advance for possibly having to register at yet another forum, but IMHO support would be better served elsewhere at this point.

John Diver 01-12-2006 01:51 AM

Just a quick question, can users create their own section in the gallery?
I want to use this so users can create their own gallery of portfolio images and do it automatically so their username shows as the name of the catgory.

Thanks, looks great.

da420 01-12-2006 06:10 PM

How do you set 777 permisions???

da420 01-12-2006 06:25 PM

I have done everything but set 777 permisions or whatever, and I have set the admin group to be able to use and see the gallery. But I don't even know how or where to access it. Wouldn't it be on the navbar, but it's not???

kash2k 01-12-2006 07:01 PM

After a few hiccups due to my server playing tricks, this is running a dream now

*k click's install

@ John Diver - All users have their own gallery, that's the way this works. It groups by category and by user. It's like an SQL query where you can view all pics by a user (their gallery) or in a category. Quite neat

@da420 - The authour has requested you use the photplog site for support issues. I did and it's quick response and very helpful. It also doesn't hammer vbulletin.org's resources


All times are GMT. The time now is 05:43 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02615 seconds
  • Memory Usage 1,831KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete