Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

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

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 177
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 187
Total: 187

Author Topic: Recurring Gallery Lite Error? (Update with new errors)  (Read 8849 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: 16436
    • 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: 16436
    • 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: 16436
    • 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
14666 Views
Last post December 04, 2007, 09:27:54 pm
by SMFHacks
5 Replies
4238 Views
Last post January 24, 2010, 04:35:13 pm
by SMFHacks
1 Replies
3177 Views
Last post February 11, 2011, 08:41:46 am
by SMFHacks
6 Replies
6350 Views
Last post November 24, 2013, 03:03:34 pm
by dan42101
3 Replies
4000 Views
Last post May 04, 2017, 03:30:12 pm
by SMFHacks

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal