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)

cbiweb 08-05-2007 08:04 PM

Quote:

Originally Posted by connkid25 (Post 1309320)
Everything was simple to install and it works perfectly in 3.6.8. Will be buying the pro once my board picks up. Thanks!

Ditto on both counts! This is an excellent add-on.

ymy 08-06-2007 01:58 AM

Quote:

PHP with GD2 and Safe Mode off
Is the PhotoPlog Pro v.2.1.4.6 also should be on Safe Mode off

I want to buy it ?


.

SVTCobraLTD 08-09-2007 12:37 AM

Quote:

Originally Posted by SVTCobraLTD (Post 1307000)
Is there any ways to make a link in the users profile to their photo gallery? Like when you view their profile, there will be a link saying "Users Photo Gallery". Would be even better if it would say the users name and then Photo Gallery. So mine would be "SVTCobraLTD's Photo Gallery".

SVT

Anyone?

SVT

ringleader 08-09-2007 07:54 PM

SVT: if you put
Code:

$photoplog_memberinfo
in the MEMBERINFO template it displays random thumbnails from that user in their profile homepage.

Or were you looking to put a link in the dropdown menu for a user when you click on their username?

To do that:

FIND
Code:

        <tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
        </if>

in postbit and postbit_legacy templates.

AFTER ADD:
Code:

        <tr><td class="vbmenu_option"><a href="photoalbum/index.php?u=$post[userid]"><phrase 1="$post[username]">$vbphrase[photo_x_album]</phrase></a></td></tr>
        </if>

Go to phrases ->
Add the following phrase to postbit, postbit_legacy, and global phrases ->
Varname: $vbphrase[photo_x_album]
Text: View {1}'s Photo Gallery

Hope that solves your problem :D

orkyn 08-10-2007 06:53 AM

Very Nice.... Installed

4nmedia 08-12-2007 11:59 PM

Quite often when my users click the gallery link to go to the photopost lite gallery it logs them out, or they will be logged in then try to upload and it will log them out. Suggestions?

nir 08-14-2007 08:33 AM

I was trying to upload a photo and I got this error:

Warning: move_uploaded_file(/home/admin/domains/xxxxxxxxxxxxx.com/public_html/photoplog/images/1/1_123cmlogo.jpg) [ function.move-uploaded-file]: failed to open stream: Permission denied in /photoplog/upload.php on line 171

Warning: move_uploaded_file() [ function.move-uploaded-file]: Unable to move '/tmp/php5chCSC' to '/home/admin/domains/xxxxxxxxxxxxx.com/public_html/photoplog/images/1/1_123cmlogo.jpg' in /photoplog/upload.php on line 171

Sorry, onone: Bad Type - File is of the Wrong MIME Type

I changed the permission of photoplog/images to 777 but the problems still there. Anyone has any idea what this might be?

SVTCobraLTD 08-15-2007 12:17 PM

Quote:

Originally Posted by ringleader (Post 1313929)
SVT: if you put
Code:

$photoplog_memberinfo
in the MEMBERINFO template it displays random thumbnails from that user in their profile homepage.

Or were you looking to put a link in the dropdown menu for a user when you click on their username?

To do that:

FIND
Code:

        <tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
        </if>

in postbit and postbit_legacy templates.

AFTER ADD:
Code:

        <tr><td class="vbmenu_option"><a href="photoalbum/index.php?u=$post[userid]"><phrase 1="$post[username]">$vbphrase[photo_x_album]</phrase></a></td></tr>
        </if>

Go to phrases ->
Add the following phrase to postbit, postbit_legacy, and global phrases ->
Varname: $vbphrase[photo_x_album]
Text: View {1}'s Photo Gallery

Hope that solves your problem :D


When you view their profile, I would like a link in there to take you to their photos. Do I manually have to edit everyones profile or can I put something in there that will automatically detect their user number to get me to their photos?

SVT

ragtek 08-15-2007 12:25 PM

Quote:

Originally Posted by 4nmedia (Post 1316223)
Quite often when my users click the gallery link to go to the photopost lite gallery it logs them out, or they will be logged in then try to upload and it will log them out. Suggestions?

are the maybe going on your site with this url: site.com and the gallerylink is www.site.com
and you have allowed your cookies just for www.site.com


that could it be maybe

obiefan 08-15-2007 07:49 PM

I've searched the site high and low, as well as photoplog site. This question has no answer anywhere that I can find.

I've checked VB ACP VB Options, Messaging options, and the minimum chars to post is set to 2.

The comment "THIS PICTURE LOOKS NICE" is well beyond 3 characters. What gives?

2 questions:

1) Why do comments not work in wysiwyg editor mode, but does in standard mode?

2) how can I make the comments work in wysiwyg?

I'd be almost more than happy to upgrade to pro version, but it is unclear if this bug happens in the pro version too!

Any help is appreciated!

THANKS!


Quote:

Originally Posted by daddygrim (Post 1207550)
The message you have entered is too short. Please lengthen your message to at least 10 characters.
i added alot of chracters and still get this message.


SVTCobraLTD 08-21-2007 11:49 AM

When trying to add the phrases i get this error
Quote:

The varname you specified for this phrase is invalid. You may only include a-z, A-Z, 0-9, and _ (underscore).
I would think it is due to the $ sign.

SVT

txsbmw 08-21-2007 12:03 PM

Quote:

Originally Posted by SVTCobraLTD (Post 1318055)
When you view their profile, I would like a link in there to take you to their photos. Do I manually have to edit everyones profile or can I put something in there that will automatically detect their user number to get me to their photos?

SVT

Open your MEMBERINFO template and put the following wherever you want the link to show:

Code:

<a href="YOUR LINK TO PHOTOPLOG HERE/index.php?$session[sessionurl]u=$userinfo[userid]">User's Photo Gallery</a>
If you want to phrase it, add the phrase like the other posters suggested

SVTCobraLTD 08-21-2007 12:43 PM

Got it.... just added
Quote:

<a href="http://www.mysite.com/forums/photoplog/index.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[username]'s Photo Gallery</a>
where I wanted it. Thank you.

obiefan 08-21-2007 10:03 PM

I've been trying to get an account on photoplog.com but I never get the authorization email. Additionally I wanted to buy the software, but can't without a valid account.

HELP!

EmpireZ 08-22-2007 04:36 AM

Quote:

Originally Posted by obiefan (Post 1322690)
I've been trying to get an account on photoplog.com but I never get the authorization email. Additionally I wanted to buy the software, but can't without a valid account.

HELP!


Might need to check in your bulk ..
or
http://www.photoplog.com/forum/sendmessage.php

Maddogz420 08-24-2007 07:57 AM

I'm looking to pull a little info so that i can change the navbar in the gallery a bit to work with the profiles better, and was wondering what i could use instead of this. It's not pulling the $userinfo's properly, so the link comes up as "member.php?u= " (with no number) and the link shows up as "Back to 's Profile"

Any ideeers?

Code:

<if condition="$photoplog_view_link"><td class="alt1"><a href="http://www.mischiefsociety.com/vb/member.php?u=$userinfo[userid]">Back to $userinfo[username]'s Profile</a></td></if>
http://www.mischiefsociety.com/vb/ph.../index.php?u=1
I'd like that link to go back to my profile, since its my pictures page

uni_x 08-26-2007 07:22 PM

Any chance of a mod that allows more than one photo to be upload at a time?

inthezone 08-26-2007 07:49 PM

I've been running PhotoPlog Lite for over a year, and all of the sudden, most of my images aren't displaying. The images that file.php?n=X can't access are still on the server, though. Any ideas?

tirol07 08-27-2007 07:10 PM

please help me!

I have a main category and 20 sub-categories, the sub-categories indicated into a line, how can i that change,
I would like 3 sub categories per line.

shipfriends 08-29-2007 04:29 PM

Quote:

Originally Posted by calorie (Post 828203)
Do NOT apply attachments from this thread to PhotoPlog, unless there is a link to them in this post.

Note that the 'Not Available' category has 'off' settings, so move files to a 'real' category in order to do such things as parse BBcode and allow comments.

Use the following to add a link to PhotoPlog in the vB navbar template:
Code:

<!-- change the text in capitals to your site information -->

<a href="http://www.YOUR-DOMAIN.com/YOUR-PHOTOPLOG-DIR/index.php$session[sessionurl_q]">Gallery</a>

<a href="/YOUR-PHOTOPLOG-DIR/index.php$session[sessionurl_q]">Gallery</a>

Use the following to add a link to a user's PhotoPlog gallery in the vB postbit(_legacy) template:
(see the README.txt file, comments section, if using PhotoPlog Lite v.1.0.8+)
Code:

<!-- change the text in capitals to your site information -->

<a href="http://www.YOUR-DOMAIN.com/YOUR-PHOTOPLOG-DIR/index.php?$session[sessionurl]u=$post[userid]">Gallery</a>

<a href="/YOUR-PHOTOPLOG-DIR/index.php?$session[sessionurl]u=$post[userid]">Gallery</a>

Use the following to add a link to a user's PhotoPlog gallery in the vB MEMBERINFO template:
Code:

<!-- change the text in capitals to your site information -->

<a href="http://www.YOUR-DOMAIN.com/YOUR-PHOTOPLOG-DIR/index.php?$session[sessionurl]u=$userinfo[userid]">Gallery</a>

<a href="/YOUR-PHOTOPLOG-DIR/index.php?$session[sessionurl]u=$userinfo[userid]">Gallery</a>


is it possible to have a script or a plugin which would do these updates/edits to my selected template automatically?
I am asking since these are going to be too much to do for every version update that vbulletin gives out.

thanks

JTS2005 09-01-2007 07:17 PM

ok has anyone figured this out?

Bad Type - File is of the Wrong MIME Type

i have tried all file types and no luck and permissions are fine. i have searched this entire thread with no answer.

fsbmax 09-01-2007 11:53 PM

how do i change the page title to not say photoplog?

BeeWeeNL 09-02-2007 11:29 AM

Quote:

Originally Posted by inthezone (Post 1326222)
I've been running PhotoPlog Lite for over a year, and all of the sudden, most of my images aren't displaying. The images that file.php?n=X can't access are still on the server, though. Any ideas?

Same problem here...anyone with a solution?

amazigh_rif 09-04-2007 12:24 PM

Quote:

Originally Posted by tirol07 (Post 1326906)
please help me!

I have a main category and 20 sub-categories, the sub-categories indicated into a line, how can i that change,
I would like 3 sub categories per line.

Go to admincp / photoplog / edit templates / and edit your photoplog_cat_list template

Find:
Code:

<td class="thead" nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Replace is with:
Code:

<td class="thead" width="250 nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
I added a width of 250, but it might be 240 or 260 for your forum. It depends on the length of your album name. Judging by your attachment i I think 250 is OK.

One more thing.

If you edit only the photoplog_cat_list template you will get this view:


Sub-Categories: Album1 Album2
Album 3 Album 4 Album 5
Album 6 Album 7 Album 8

As you can see Album1 start right after "Sub-Categories:"

I didnt like that since I wanted:

Sub-Categories:

Album 1 Album 2 Album3
Album 4 Album 5 Album 6
Album 7 Album 8 Album 9


So I had to add 2 "go to next line" html codes (<BR>).

Download from your server /photoplog/categery.php

Edit categories.php and find :

Code:

\">&nbsp;".$vbphrase['photoplog_sub_categories'].":".$
Replace it with:

Code:

\">&nbsp;".$vbphrase['photoplog_sub_categories'].":<BR><BR>".$
Upload it back to your photoplog folder on your servr.

Keep an original copy of catogeries.php in case you screw things up. :D

Good luck.

TheWhite 09-10-2007 05:11 AM

My forum index (under navbar) thumb sizes show up 150 x 150 how can I can set them at 100x100 instead???

Regards

TheWhite 09-13-2007 04:26 AM

nothing huh?

shipfriends 09-13-2007 06:03 AM

Moderating by moderators.... I tried this solution but didn't work. Mods can see the images in the gallery but cannot approove anything from the modcp.....

anyone any ideas?

Bounce 09-14-2007 07:45 PM

Anyway that I can add a script to stop users from stealing the images that are uploaded ??

slmoney 09-15-2007 02:41 AM

Quote:

Originally Posted by hIBEES (Post 1339108)
Anyway that I can add a script to stop users from stealing the images that are uploaded ??

You can enable hotlink protection for the images via your CPanel.

There is a script somewhere that disallows right clicking...I'll search for that too.

Steve

Bounce 09-15-2007 08:07 AM

Quote:

Originally Posted by slmoney (Post 1339292)
You can enable hotlink protection for the images via your CPanel.

There is a script somewhere that disallows right clicking...I'll search for that too.

Steve

Thanks

Had a look in my CP panel but can't see that setting :erm:? Where would one find it? That would be ideal

rfikki 09-16-2007 12:45 PM

I have been running it for months no problem all the sudden no images are visible but they are actually there as files. permissions are set properly and liberally to 777, the only thing that has changed is that my system was updated to php5. If I post a new image I can see it. All previously posted images are not displaying. It seems to be only the thumbnails that do not display.

Any help appreciated:
http://www.junobeachpier.net/photoplog/

Examples:
1)
This does not display:
http://www.junobeachpier.net/photoplog/index.php?n=128
but the picture is here:
http://www.junobeachpier.net/photopl...rge/2_bony.gif
2)
This does not display:
http://www.junobeachpier.net/photoplog/index.php?n=112
but the picture is here:
http://www.junobeachpier.net/photopl...nut_action.jpg


And so on for all pictures submitted before 15 Sep 2007
Take a look at the above.....

tirol07 09-17-2007 04:11 PM

Quote:

Originally Posted by amazigh_rif (Post 1332108)
Go to admincp / photoplog / edit templates / and edit your photoplog_cat_list template

Find:
Code:

<td class="thead" nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Replace is with:
Code:

<td class="thead" width="250 nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
I added a width of 250, but it might be 240 or 260 for your forum. It depends on the length of your album name. Judging by your attachment i I think 250 is OK.

One more thing.

If you edit only the photoplog_cat_list template you will get this view:


Sub-Categories: Album1 Album2
Album 3 Album 4 Album 5
Album 6 Album 7 Album 8

As you can see Album1 start right after "Sub-Categories:"

I didnt like that since I wanted:

Sub-Categories:

Album 1 Album 2 Album3
Album 4 Album 5 Album 6
Album 7 Album 8 Album 9


So I had to add 2 "go to next line" html codes (<BR>).

Download from your server /photoplog/categery.php

Edit categories.php and find :

Code:

\">&nbsp;".$vbphrase['photoplog_sub_categories'].":".$
Replace it with:

Code:

\">&nbsp;".$vbphrase['photoplog_sub_categories'].":<BR><BR>".$
Upload it back to your photoplog folder on your servr.

Keep an original copy of catogeries.php in case you screw things up. :D

Good luck.

Hello thanks for your assistance, but it does not function yet!

amazigh_rif 09-17-2007 05:18 PM

Quote:

Originally Posted by tirol07 (Post 1340938)
Hello thanks for your assistance, but it does not function yet!

How come that it doesnt function? You could not find the template in admincp, or you couldnt find the phrase that you had to replace?

Anyway, you didnt edit the template.

Edit your photoplog_cat_list template, follow the exact instructions that I wrote in earlier post.


Find:

Code:

<td class="thead" nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Replace it with:

Code:

<td class="thead" width="250 nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Its only a matter of 10 mouse clicks, you can copy/paste from here.

tirol07 09-20-2007 07:39 PM

Quote:

Originally Posted by amazigh_rif (Post 1340998)
How come that it doesnt function? You could not find the template in admincp, or you couldnt find the phrase that you had to replace?

Anyway, you didnt edit the template.

Edit your photoplog_cat_list template, follow the exact instructions that I wrote in earlier post.


Find:

Code:

<td class="thead" nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Replace it with:

Code:

<td class="thead" width="250 nowrap="nowrap">$vbphrase[photoplog_main_categories]</td>
Its only a matter of 10 mouse clicks, you can copy/paste from here.

Hi;

Sure i did it, but it does not function yet! what am I to now do? do you have a notion,
why it does not function?

thanks

amazigh_rif 09-21-2007 11:01 AM

Quote:

Originally Posted by tirol07 (Post 1343345)
Hi;

Sure i did it, but it does not function yet! what am I to now do? do you have a notion,
why it does not function?

thanks

Did you run the latest version of photoplog (v 2.0.6) ?

tirol07 09-21-2007 07:44 PM

Quote:

Originally Posted by amazigh_rif (Post 1343760)
Did you run the latest version of photoplog (v 2.0.6) ?

Yes it is the latest version of photoplog!

lifesourcerec 09-22-2007 08:13 PM

Changed hosts and now images doesn't appear. Get this error.

The requested URL /photoplog//index.php?n=130 does not exist.

lifesourcerec 09-22-2007 10:13 PM

Quote:

Originally Posted by lifesourcerec (Post 1344784)
Changed hosts and now images doesn't appear. Get this error.

The requested URL /photoplog//index.php?n=130 does not exist.

Ok, that's fixed, now this.

Fatal error: Call to undefined function: imagetypes() in /home/wherever/public_html/photoplog/file.php on line 189

baby41 09-30-2007 09:44 AM

Quote:

Originally Posted by calorie (Post 828204)
  • Onscreen Error
    Code:

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

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

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

    It means that the full path set in the PhotoPlog config file is incorrect. Run this script in your main forum directory to help determine the correct path.
    Code:

    <?php
    echo getcwd();
    ?>


Can you tell me where I do insert this bit of code to help me finding the correct path,regards.

amazigh_rif 09-30-2007 04:38 PM

Quote:

Originally Posted by baby41 (Post 1350120)
Can you tell me where I do insert this bit of code to help me finding the correct path,regards.


Code:

<?php
echo getcwd();
?>

Copy paste above code into an editor and save the file as "path.php". Then upload path.php into your root dir, and open yoururl.com/path.php

You will get a response like /home/baby41/domains/yoururl.com/public_html
That would be your full path to your root dir.


All times are GMT. The time now is 12:53 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.04391 seconds
  • Memory Usage 1,875KB
  • 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
  • (26)bbcode_code_printable
  • (23)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