Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Photo ALbum 'where clause'

Asked Modified Viewed 2,731 times
S
sobe
S
sobe 10
  • Member, joined since
  • Contributed 56 posts on the community forums.
  • Started 12 threads in the forums
  • Started this discussions
asked
Member

Riiight, anyway,
http://www.technominal.com/photogalle...allery.php

Well, I updated like I read. And Digi, sorry if this has been solved, but if someone could give me a solution so I could open my photo gallery to gfx artists, then it would be great :)

I upped to the latest version from .307
0 replies

12 posts

B
BYTB
B
BYTB 10
www.batmanytb.com/staff/gothamknight.jpg

  • Member, joined since
  • Contributed 73 posts on the community forums.
  • Started 18 threads in the forums
answered
Member

At least I'm not the only one now.. While the problems a little different, I am also having a phot album problem, which Digi said was because I did not upload all of my files.. I did.. three times.

http://www.batmanytb.com/photogallery...allery.php
0 replies
R
Reflectoman
R
------------------------------------------------
Adnan Ahmed Online
File Hosting | Image Hosting | Free SMS
  • Member, joined since
  • Contributed 176 posts on the community forums.
  • Started 9 threads in the forums
answered
Member

u had the album access control mod installed. that's from that, in the upgrade you overwrote the photogaller.php with the one from the new version, and the upgrade script doesn't recreate the field required in teh database for the mod.

check to see if there's is an upgraded version of the mod to be used with 6.01.2!

Adnan.
0 replies
B
BYTB
B
BYTB 10
www.batmanytb.com/staff/gothamknight.jpg

  • Member, joined since
  • Contributed 73 posts on the community forums.
  • Started 18 threads in the forums
answered
Member

Why would some of us get that and not others?

0 replies
S
sobe
S
sobe 10
  • Member, joined since
  • Contributed 56 posts on the community forums.
  • Started 12 threads in the forums
  • Started this discussions
answered
Member

Sorry, I never had any Photo Gallery mod/infusion installed.
0 replies
B
BYTB
B
BYTB 10
www.batmanytb.com/staff/gothamknight.jpg

  • Member, joined since
  • Contributed 73 posts on the community forums.
  • Started 18 threads in the forums
answered
Member

I didn't either..
0 replies
R
Reflectoman
R
------------------------------------------------
Adnan Ahmed Online
File Hosting | Image Hosting | Free SMS
  • Member, joined since
  • Contributed 176 posts on the community forums.
  • Started 9 threads in the forums
answered
Member

hmm... k, then i don't know .. i know i had that problem before and it was the album access control mod that needed to be reinstalled.
0 replies
B
bbene
B
bbene 10
Ben Benesh
Support Team Member
  • Member, joined since
  • Contributed 74 posts on the community forums.
  • Started 1 thread in the forums
answered
Member

Were there any errors when you used the photo gallery conversion infusion?
0 replies
B
BYTB
B
BYTB 10
www.batmanytb.com/staff/gothamknight.jpg

  • Member, joined since
  • Contributed 73 posts on the community forums.
  • Started 18 threads in the forums
answered
Member

I can't convert because it says my photos aren't there.

if I could just delete the old ones, that would be fine. I needed to clean them up anyway, so while it would take forever, I would rather delete them and start over. but I can't access them.
0 replies
S
sobe
S
sobe 10
  • Member, joined since
  • Contributed 56 posts on the community forums.
  • Started 12 threads in the forums
  • Started this discussions
answered
Member

I haven't used the convertor because I had NO galleries in it.... I just decided to use it recently for gfx work of different artists.
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

Quote

sobe wrote:
Riiight, anyway,
http://www.technominal.com/photogalle...allery.php

Well, I updated like I read. And Digi, sorry if this has been solved, but if someone could give me a solution so I could open my photo gallery to gfx artists, then it would be great :)

I upped to the latest version from .307


Send me a dump of your db (structure only).
0 replies
S
sobe
S
sobe 10
  • Member, joined since
  • Contributed 56 posts on the community forums.
  • Started 12 threads in the forums
  • Started this discussions
answered
Member

Sent via PM.
0 replies
S
sobe
S
sobe 10
  • Member, joined since
  • Contributed 56 posts on the community forums.
  • Started 12 threads in the forums
  • Started this discussions
answered
Member

I found and fixed the problem, the issue was with the upgrade script itself to update the MySQL database.

I had to manually drop the 2 photo_album tables made, and input this code into my database:
CREATE TABLE fusion_photos (
         photo_id SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
         album_id SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         photo_title VARCHAR(100) NOT NULL DEFAULT '',
         photo_description TEXT NOT NULL,
         photo_filename VARCHAR(100) NOT NULL DEFAULT '',
         photo_thumb1 VARCHAR(100) NOT NULL DEFAULT '',
         photo_thumb2 VARCHAR(100) NOT NULL DEFAULT '',
         photo_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
         photo_user SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         photo_views SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         photo_order SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         photo_allow_comments tinyint(1) unsigned NOT NULL default '1',
         photo_allow_ratings tinyint(1) unsigned NOT NULL default '1',
         PRIMARY KEY (photo_id)
         ) TYPE=MyISAM;


CREATE TABLE fusion_photo_albums (
         album_id SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
         album_title VARCHAR(100) NOT NULL DEFAULT '',
         album_description TEXT NOT NULL,
         album_thumb VARCHAR(100) NOT NULL DEFAULT '',
         album_user SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         album_access SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         album_order SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
         album_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
         PRIMARY KEY (album_id)
         ) TYPE=MyISAM;


Now it works.... If you want to tell everyone to follow the instructions, maybe they have... My issue wasn't due to instructions as said over and over and over and over.... oh yea, and over some more. The issue was I believe on my site's side.

If this helps anyone/everyone with the same issue I had, then glad to be able to help :)

And Digi, good job on the new Fusion version ;)
0 replies

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 12 posts
  • Votes 0 votes
  • Topic users 5 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet