Facebook 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4291
Latest: Robertqt
New This Month: 5
New This Week: 0
New Today: 0
Stats
Total Posts: 43744
Total Topics: 7590
Most Online Today: 93
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 79
Total: 79

Author Topic: Recurring Gallery Lite Error? (Update with new errors)  (Read 9729 times)

0 Members and 1 Guest are viewing this topic.

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Recurring Gallery Lite Error? (Update with new errors)
« on: June 07, 2007, 04:53:35 pm »
I was considering purchasing the Pro version of Gallery for the added features, but I want to make sure that I can get rid of this error first.

My SMF error log is filled with the following error:

Code: [Select]
8: Undefined index: gallery_text_oldpicture
File: /home/xxxxxxx/domains/xxxxxxxx/public_html/xxxxx/Themes/default/languages/Gallery.english.php (eval?)
Line: 621

Any thoughts on what might be causing this?
« Last Edit: June 11, 2007, 12:09:51 pm by BAlGaInTl »

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16653
    • View Profile
Re: Recurring Gallery Lite Error?
« Reply #1 on: June 07, 2007, 05:10:45 pm »
You are running an older version of Gallery Lite that erorr is basiclly a missing text string that says "Old Picture" was fixed in a later edition of Gallery Lite
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Re: Recurring Gallery Lite Error?
« Reply #2 on: June 08, 2007, 07:16:47 am »
You are running an older version of Gallery Lite that erorr is basiclly a missing text string that says "Old Picture" was fixed in a later edition of Gallery Lite

I've downloaded the latest version from the site.

Is there an easy way to upgrade?

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Re: Recurring Gallery Lite Error?
« Reply #3 on: June 08, 2007, 07:22:50 am »
Nevermind... I think I have it.

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Re: Recurring Gallery Lite Error?
« Reply #4 on: June 11, 2007, 12:03:25 pm »
Ok....

Well... I'm updated, the gallery is working, but now I'm getting more errors than ever:

Code: [Select]
8: Undefined index: allow_gallery
File: /home/xxxx/domains/xxxx.com/public_html/xxxx/Themes/default/Admin.template.php (eval?)
Line: 645

I get this for EVERY page visited, and my error log is filling up FAST.

Is there a quick fix for this?  What is causing it?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16653
    • View Profile
Re: Recurring Gallery Lite Error? (Update with new errors)
« Reply #5 on: June 11, 2007, 06:47:45 pm »
Sounds like you are missing text strings in Modificaitons.english.php
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Re: Recurring Gallery Lite Error? (Update with new errors)
« Reply #6 on: June 11, 2007, 08:13:55 pm »
Sounds like you are missing text strings in Modificaitons.english.php


I've tried uninstalling and re-installing the gallery and I have the same problem.

What text strings should I have in the file?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16653
    • View Profile
Re: Recurring Gallery Lite Error? (Update with new errors)
« Reply #7 on: June 11, 2007, 08:18:06 pm »
Code: [Select]
//Begin SMF Gallery Text Strings
$txt['smfgallery_title'] = 'Gallery For SMF';
$txt['smfgallery_menu'] = 'Gallery';
$txt['smfgallery_version'] = '1.0 Lite';
$txt['smfgallery_admin'] = 'Gallery Configuration';

//Permissions
$txt['permissiongroup_smfgallery'] = 'SMF Gallery';

$txt['permissionname_smfgallery_view'] = 'View SMF Gallery';
$txt['permissionhelp_smfgallery_view'] = 'Allows the user to view the Gallery';
$txt['cannot_smfgallery_view'] = 'You are not allowed to view the Gallery';

$txt['permissionname_smfgallery_add'] = 'Add Picture';
$txt['permissionhelp_smfgallery_add'] = 'Allows the user to add a picture.';
$txt['cannot_smfgallery_add'] = 'You are not allowed to add a picture.';

$txt['permissionname_smfgallery_edit'] = 'Edit own Picture';
$txt['permissionhelp_smfgallery_edit'] = 'Allows the user to edit a picture.';
$txt['cannot_smfgallery_edit'] = 'You are not allowed to edit a picture.';

$txt['permissionname_smfgallery_delete'] = 'Delete own Picture';
$txt['permissionhelp_smfgallery_delete'] = 'Allows the user to delete a picture.';
$txt['cannot_smfgallery_delete'] = 'You are not allowed to delete a picture.';

$txt['permissionname_smfgallery_comment'] = 'Leave Comments';
$txt['permissionhelp_smfgallery_comment'] = 'Allows the user to leave comments on a picture.';
$txt['cannot_smfgallery_comment'] = 'You are not allowed to leave comments.';

$txt['permissionname_smfgallery_report'] = 'Report Pictures/Comments';
$txt['permissionhelp_smfgallery_report'] = 'Allows the user to report pictures and comments.';
$txt['cannot_smfgallery_report'] = 'You are not allowed to report content.';

$txt['permissionname_smfgallery_autoapprove'] = 'Auto Approve Pictures';
$txt['permissionhelp_smfgallery_autoapprove'] = 'Pictures do not need to wait for approval.';

$txt['permissionname_smfgallery_manage'] = 'Manage Gallery';
$txt['permissionhelp_smfgallery_manage'] = 'Allows the user to add/delete/edit all catagories. Delete Comments, Delete Pictures, Approve Pictures';
$txt['cannot_smfgallery_manage'] = 'You are not allowed to manage gallery.';

//END SMF Gallery Text Strings

If it just says allow_gallery and not allow_smfgallery it might be another mod.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline BAlGaInTl

  • Member
  • *
  • Posts: 8
    • View Profile
Re: Recurring Gallery Lite Error? (Update with new errors)
« Reply #8 on: June 11, 2007, 10:09:07 pm »

If it just says allow_gallery and not allow_smfgallery it might be another mod.

I believe you are correct.  It looks like I may have some orphaned code from the Oldiesman Gallery2 integration I was testing.  I will have to see if I can track it down.

 

Related Topics

  Subject / Started by Replies Last post
4 Replies
15180 Views
Last post December 04, 2007, 09:27:54 pm
by SMFHacks
5 Replies
4484 Views
Last post January 24, 2010, 04:35:13 pm
by SMFHacks
1 Replies
3328 Views
Last post February 11, 2011, 08:41:46 am
by SMFHacks
6 Replies
6858 Views
Last post November 24, 2013, 03:03:34 pm
by dan42101
3 Replies
4429 Views
Last post May 04, 2017, 03:30:12 pm
by SMFHacks

+- Recent Topics

Downloading with Zero Credits? by SMFHacks
March 23, 2025, 01:40:50 pm

Some minor Layout modifications by Senkusha
March 22, 2025, 06:30:31 pm

Uploading Bulk files to a Category? by SMFHacks
March 21, 2025, 08:26:01 pm

Mod for compare gallery.text with board.text by SMFHacks
March 21, 2025, 05:52:46 pm

ST Shop integration by Senkusha
March 18, 2025, 07:33:13 pm

Contact Us by SMFHacks
March 16, 2025, 07:49:23 pm

HTTP 500 error during install by SMFHacks
March 13, 2025, 10:44:31 am

Site upgrade to 2.1 by SMFHacks
March 12, 2025, 09:29:43 pm

[Mod]WebP and AVIF File Support for SMF 2.1 by SMFHacks
March 10, 2025, 04:32:57 pm

Pretty URL's Pro support/help by [chrisB]
March 03, 2025, 10:18:09 am

Powered by EzPortal