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)

da420 01-12-2006 07:36 PM

Ok will do... thanks...

da420 01-12-2006 09:13 PM

Installed, and testing......... This looks really nice, thanks!

Club3G 01-12-2006 10:21 PM

Quote:

Originally Posted by da420
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???

Setting 777 can be done either through your FTP client (usually right click -> properties, at least it is in WS_FTP), or via shell.

If you have shell access, the quickest way is to go to the folder above the folder you're trying to change and type:

chmod -R 777 /nameofthefolder

HTH.

Club3G 01-12-2006 10:25 PM

Quote:

Originally Posted by calorie
@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

Thanks much!

Code:

//        if ($parentid < 0)
//        {
//                $list_cats = array("-1" => $vbphrase['photoplog_no_one']);
//        }

Commented that out of functions.php, in case anyone's wondering. :)

karrerax 01-13-2006 12:01 PM

Thanks for this mod :rolleyes:

Sinnie 01-13-2006 12:58 PM

How do i install the dutch language?
:o

tomasn 01-14-2006 08:20 AM

Hi,

i have Vb 3.5.3 on http://subd.domain.com and installed photoplog lite on http://subd.domain.com/photoplog, still i got strange insue, when user goes too http://subd.domain.com/photoplog , session information not works and user gots logging screen.
?
thanks.

Sinnie 01-14-2006 09:08 AM

Make sure you give your usergroups acces to photoplog.

tomasn 01-14-2006 10:43 AM

can you explain more? thanks.

Club3G 01-14-2006 04:44 PM

Quote:

Originally Posted by Belicoso_Fino
Has anyone installed on 3.5.3?

Works OK?

Working just fine on 3.5.3, both the gallery and the CMPS thumbnails:

http://www.seventring.org

I'd just like to be able to get the thumbnails big enough to span the entire cell on the front page.

S@NL - Pascal 01-14-2006 09:57 PM

Quote:

Originally Posted by Belicoso_Fino
Has anyone installed on 3.5.3?

Works OK?

Yes, works ok on 3.5.3. Upgraded from 3.5.1 tot 3.5.3 and photoplog works as expected :)

Marris 01-14-2006 10:00 PM

Yes, working on a fresh install of 3.5.3 along with the included MEMBERINFO Public Profile image block.

bashy 01-15-2006 02:13 PM

I have installed and working well..
With what Marris has said (in quotes) What is this about a
Public Profile image block?

I have been all the way through this thread and not seen anything
with regards to this :(

Either that or i missed it, can anyone advise to this please?

Quote:

Originally Posted by Marris
Yes, working on a fresh install of 3.5.3 along with the included MEMBERINFO Public Profile image block.


evenmonkeys 01-15-2006 10:40 PM

Is there a way to show recent additions by a user in their profile? Like... not just a link... but actually show thumbnails.

MustangLisa 01-16-2006 07:48 AM

Thanks, this worked great!!

Club3G 01-17-2006 03:06 AM

I searched on remote, didn't see this answered -

How can I go about preventing people from remote linking to pics in the Gallery? I don't want to do it site-wide, only for the pics uploaded into Photoplog.

Also, where do I define the max images per member?

Rickie3 01-17-2006 03:30 AM

this is bloody brilliant easy to install,nice addition to my board thankyou *installed*

ChErAbOo 01-17-2006 01:37 PM

Works Great now that I have it set up right, only thing and well I read 32 pages so figure I will just ask it says supports .gif but they are not showing up animated is there a way to change that I did not see the option so figured I would ask my graphic siggy girls use this as a place to store pics ups and customs so would be nice to figure out the animated part but other than that working excellent and I am sure that part is error on me somewhere..

/clicks install

natralis 01-17-2006 07:39 PM

installed perfectly in one go

Cheers m8

excellent work :-)

One small question though
could there be an addon such as last 3 photo's submitted displaying on forumhome?
Cheers

Gizmo5h1t3 01-17-2006 09:50 PM

wow natralis, small world mate...lololol

excellent hack this one......loads better than the other galleries.

calorie 01-18-2006 05:42 PM

Thanks for the thanks. :)

FYI: updated to v.1.0.6.2 (forces a category choice, less overhead to display files). Easy upgrade, FTP a few files, instructions in README.txt file.

Note on Official Support: 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.

redundanthost 01-18-2006 09:30 PM

does it work on 3.5.3

KayDEE 01-18-2006 10:09 PM

@redundanthost

yes it works with 3.5.3, flawless

@natralis

yes, i've added that kinda option a while ago

open photoplog settings.php
find:
Code:

$photoplog_random_bits = $photoplog_cat_id = $photoplog_subcat_bar = $photoplog_letter_id = '';
below it add:
Code:

$photoplog_latest_bits = $photoplog_cat_id = $photoplog_subcat_bar = $photoplog_letter_id = '';
find:
Code:

// ####################### INITIALIZE LETTER BAR ##########################
above it add:
Code:

// ###################### INITIALIZE LATEST BITS ##########################

$photoplog_latest_bits = '';
if (defined('PHOTOPLOG_LATEST') && !isset($_REQUEST['c']) && !isset($_REQUEST['n']) && !isset($_REQUEST['u']) && !isset($_REQUEST['q']))
{
        $photoplog_file_infos = $db->query_read("SELECT *
                                                FROM photoplog_fileuploads
                                                WHERE moderate = 0
                                                ORDER BY dateline DESC
                                                LIMIT 3
        ");

        $photoplog_cnt_bits = 0;
        $photoplog_row_top = '';
        $photoplog_row_bottom = '';

        while ($photoplog_file_info = $db->fetch_array($photoplog_file_infos))
        {
                $photoplog_cnt_bits++;

                $photoplog_fileid = $photoplog_file_info['fileid'];
                $photoplog_userid = $photoplog_file_info['userid'];
                $photoplog_username = $photoplog_file_info['username'];

                $photoplog_row_top .= "

                        <td class=\"alt2\" nowrap><nobr>
                        <table class=\"alt1\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\">

                        <td class=\"alt2\" align=\"center\" width=\"20%\">
                                <a href=\"".$photoplog_location."/index.php?".$vbulletin->session->vars['sessionurl']."n=".$photoplog_fileid."\">
                                        <img src=\"".$photoplog_location."/file.php?".$vbulletin->session->vars['sessionurl']."n=".$photoplog_fileid."&amp;w=s\" border=\"0\" />
                                </a>
                        </td>

                        </table>
                        </td>

                ";

                $photoplog_row_bottom .= "
                        <td class=\"alt2\" align=\"center\" width=\"20%\">
                                <div class=\"smallfont\">
                                        ".$vbphrase['posted_by']." <a href=\"".$photoplog_location."/index.php?".$vbulletin->session->vars['sessionurl']."u=".$photoplog_userid."\">".$photoplog_username."</a>
                                </div>
                        </td>
                ";
        }

        $db->free_result($photoplog_file_infos);

        $photoplog_table_start = "<table class=\"tborder\" border=\"0\" cellpadding=\"".$stylevar['cellpadding']."\" cellspacing=\"".$stylevar['cellspacing']."\" align=\"center\" width=\"100%\"><tr>

                <td colspan=\"5\" class=\"tcat\"><a style=\"float: ".$stylevar['right'].";\" href=\"#top\" onclick=\"return toggle_collapse('photoplog_latest_bits')\"><img id=\"collapseimg_photoplog_latest_bits\" src=\"".$stylevar['imgdir_button']."/collapse_thead".$vbcollapse['collapseimg_photoplog_latest_bits'].".gif\" alt=\"\" border=\"0\" /></a><span class=\"smallfont\"><strong>Latest Pictures</strong></span></td>

                </tr> <tbody id=\"collapseobj_photoplog_latest_bits\" style=\"".$vbcollapse['collapseobj_photoplog_latest_bits']."\"><tr>";

        $photoplog_table_end = "</tr></tbody></table><br />";

        $photoplog_latest_bits = $photoplog_table_start.$photoplog_row_top."</tr>".$photoplog_table_end;

        if (!$photoplog_cnt_bits)
        {
                $photoplog_latest_bits = '';
        }
}

open photoplog functions.php

find:
Code:

        global $photoplog_random_bits, $photoplog_cat_id, $photoplog_subcat_bar, $photoplog_letter_id;
replace with:
Code:

        global $photoplog_random_bits, $photoplog_latest_bits, $photoplog_cat_id, $photoplog_subcat_bar, $photoplog_letter_id;
open photoplog index.php

find:
Code:

define('PHOTOPLOG_RANDOM','bits');
below it add:
Code:

define('PHOTOPLOG_LATEST','bits');
open template photoplog_file_list

add to top:
Code:

$photoplog_latest_bits
done ... hope i didnt forget anything, i changed and added alotta things on it ;)

Cheers

KayDEE 01-18-2006 10:21 PM

@natralis
oops ... i have misread ... that wont add the 3 latest to forumhome, it adds them to gallery home, sry.

Take it as a small addon for users that want to have 3 latest on gallery home then ;)

Cheers

beebi 01-19-2006 01:29 AM

I realy wish to have Send as e-Card in it

John Diver 01-19-2006 01:25 PM

Hey,
Getting an error that I don't have permissions to view the gallery but I have set it so all usergroups can view the posts.

Is there any permissions for viewing the categories?

Couldn't see any settings I missed.

Thanks :)

funinthesun 01-19-2006 04:20 PM

I've installed but nothing has changed. Any idea of what I might of done wrong? :confused:

funinthesun 01-20-2006 03:36 PM

Anyone? :nervous:

Sinnie 01-20-2006 03:39 PM

When a user is logged in and clicks the photoplog link, he has to log in again. this only happens with IE, not Firefox.
This happend after i upgraded from .61 to .62.
Anyone?

rfonseca 01-20-2006 05:01 PM

Quote:

Originally Posted by funinthesun
Anyone? :nervous:

Quote:

Originally Posted by calorie

Note on Official Support: 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.

FYI: you might get faster responses at:
http://photoplog.com

rf

dartworth 01-22-2006 03:08 AM

PhotoPlog 1.0.6.2

I am trying to install Photoplog Lite on our forum located @ http://cdmaforums.com

Photoplog is located here: http://www.cdmaforums.com/forums/photoplog

The install seems to be correct. However I cannot create categories.

When I click on the Category Manager in the Photoplog ACP I get an Internal Server Error message.
Quote:

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@cdmaforums.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Any ideas?

Thanks

aaron_nimocks 01-22-2006 03:33 AM

Sorry if this has been answered but I read through and didnt see it.

I am looking to modify the <title> to be more SEO friendly. All the titles say "PhotoPlog - View File" I would actually like to put the name of the picture in there.

Any ideas on how to go about this?

Thanks,

Aaron

Guest210212002 01-22-2006 03:40 AM

Quote:

Originally Posted by dartworth
PhotoPlog 1.0.6.2

I am trying to install Photoplog Lite on our forum located @ http://cdmaforums.com

Photoplog is located here: http://www.cdmaforums.com/forums/photoplog

The install seems to be correct. However I cannot create categories.

When I click on the Category Manager in the Photoplog ACP I get an Internal Server Error message.
Any ideas?

Thanks

What are the contents of the email sent to the webmaster? It should (hopefully) tell you a bit more info about what's actually not being found.

shaynehammy 01-22-2006 05:03 AM

I keep getting a blank page yet my config files appear correct..

bashy 01-22-2006 07:12 AM

Hi peeps

There is 1 thing i have noticed with this..

When i am in the gallery, my Extras Menu (in the navbar) dont work.
When i come out of the galery, its fine??

Any ideas please?

ThePimp 01-22-2006 02:36 PM

What is the template name for the forumhome plog variable? I'm looking to remove the <br /> that's at the end of the display table.

Thanks in advance.

dartworth 01-22-2006 10:46 PM

Ok, after a little more work I got the script working...

I have also intergrated it with vBa here: http://cdmaforums.com

The gallery is here: http://www.cdmaforums.com/forums/photoplog/index.php

This is a very nice script. Looking forward to the pro version.

ThePimp 01-22-2006 11:12 PM

I'm having some issues with possibly this script. For some reason, I started getting a TON of database errors, and eventually MySQL dropped for 12 hours. Pre-install, everything worked fine. Afterward, I started getting errors.

Does anyone have an idea as to why this would happen?

I have about 10,000+ members/guests on at any given moment, could it possibly be scripted clunky and causing bottlenecks with a ton of queries or something?

For all I know it may not be this script, but that's how it seemed to happen.

Mythotical 01-23-2006 04:09 AM

Ok I have tried everything described in this thread to rid myself of this error: Sorry, dawurldstpsferme: Bad Open

Safe Mode is not on, GD is installed, I do have permissions to upload, what else could I check, change, or otherwise kill to make this work?

Thanks calorie, good hack.
Steve

Mythotical 01-23-2006 04:27 AM

Fixed


All times are GMT. The time now is 10: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.02749 seconds
  • Memory Usage 1,844KB
  • 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
  • (10)bbcode_code_printable
  • (9)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