PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > General Forums > General Discussion

General Discussion General use discussion forum for PhotoPost products.

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old April 12th, 2008, 06:08 AM   #1 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
blank author on comments

I know I had this discussion in the past, and got some it resolved with the name for unregistered users.

My comments on the index page shows 'unregistered', but the comments under the pics under author show nothing.. what can I do to get 'guest' in that spot?
skidpics is offline   Reply With Quote
Old April 12th, 2008, 10:39 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
In image-inc.php you can add this line

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old April 12th, 2008, 07:45 PM   #3 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
didn't do the trick..
skidpics is offline   Reply With Quote
Old April 12th, 2008, 08:00 PM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
Yes it should on new photos. Try uploading a new photo
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old April 12th, 2008, 11:44 PM   #5 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
the issue is not with the photos, rather the comments that are listed having nothing listed on the 'author'

I did as instructed, uploaded a new photo and added another comment, with no difference..
skidpics is offline   Reply With Quote
Old April 13th, 2008, 10:08 AM   #6 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
IN your language file what do you have for this language string?

$ucuser[$itemnum] = $Globals['pp_lang']['unreg'];


You can edit showphoto.php and find this line and above it add the line in bold but i dont see why your array does not load the string noted above if cuname is empty

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old May 16th, 2008, 06:13 AM   #7 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
Quote:
$ucuser[$itemnum] = $Globals['pp_lang']['unreg'];
is NOT found in my language file. english.php
skidpics is offline   Reply With Quote
Old May 16th, 2008, 06:19 AM   #8 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
Quote:
Originally Posted by Chuck S View Post
In image-inc.php you can add this line

Code:
Content visible to verified customers only.

I just added this tweak to the upgraded version, since it wasn't included, and it made my uploads go to unregistered for logged in user. It will show unregistered, but the link will go to the uploaders profile.

here is a link to a pic, check out the uploader:

http://skidpics.com/showphoto.php/photo/5380
skidpics is offline   Reply With Quote
Old May 16th, 2008, 10:11 AM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
You can run the tool in admin to update photo and comment names.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old May 16th, 2008, 07:50 PM   #10 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
Quote:
Originally Posted by Chuck S View Post
You can run the tool in admin to update photo and comment names.
that works, but should the upload for a logged in user remain unregistered until I run the utility each time? That is what it is doing now..
skidpics is offline   Reply With Quote
Old May 16th, 2008, 08:23 PM   #11 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
well I would ask why what integration is this?
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old May 17th, 2008, 04:18 PM   #12 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
Quote:
Originally Posted by Chuck S View Post
well I would ask why what integration is this?
What do you mean by integration? It is a standalone PP..
skidpics is offline   Reply With Quote
Old May 17th, 2008, 07:59 PM   #13 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
The users username should be entered on a comment.

Url and test login.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old January 16th, 2009, 09:47 PM   #14 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
I think this conversation was left in the dust, but I also noticed this issue was never taken care of in any updates, which of course where the tweaks were lost..

Reading the thread, is it the language string we are missing to show 'unregistered' or 'guest' on the blank upload names? Or is there something else?
skidpics is offline   Reply With Quote
Old January 16th, 2009, 09:49 PM   #15 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
How about something like this in image-inc?

if ( $upuserid != 0 )
{
list( $tmpid, $tmpuname, $tmail ) = get_userinfo("", $upuserid);
$User['username'] = $tmpuname;
if ( empty($User) )
{
$User = 'guest';
}

}
skidpics is offline   Reply With Quote
Old January 17th, 2009, 09:24 AM   #16 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
The line you posted in your post is wrong

Code:
Content visible to verified customers only.
this is more like it

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old January 17th, 2009, 09:26 AM   #17 (permalink)
Ultimate Member
 
Join Date: Jun 2007
Posts: 1,340
Thanks Chuck - I used that for general terms.

I will update the files once the server upgrades are complete.
skidpics is offline   Reply With Quote
Old January 17th, 2009, 09:27 AM   #18 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
yeah I am just running through this thread looking for errors in posts
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Review Author not displaying KenDude ReviewPost Bug Reports 3 December 24th, 2007 08:11 AM
Hide author name NicolasB Before You Buy 1 October 2nd, 2006 08:06 AM
Comments Author Name not showing MortysTW Photopost Pro How Do I...? 6 August 28th, 2006 07:54 AM
Editing Author column in Comments thread aacircle Photopost Pro How Do I...? 2 January 29th, 2006 08:34 AM
Missing Comment Author sbtiti Classifieds Bug Reports 2 September 9th, 2004 10:05 PM


All times are GMT -5. The time now is 06:35 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0