ShoutBox!

Scrubmeister

2024-04-19, 10:32:40
Good to see the site back faster than ever. :)
 

Skhilled

2024-04-18, 21:09:09
I've upgraded the server...more resources. ;)
 

Ken

2024-04-18, 20:57:10
Now that you mention it...  :D
 

Skhilled

2024-04-18, 20:47:19
...and, you should notice that the site is much faster.  :o
 

Ken

2024-04-18, 20:31:37
Hey Steve.
 

Skhilled

2024-04-18, 17:56:10
Re-read the message below...
 

Skhilled

2024-03-31, 15:22:06
Oh yeah, you need to upgrade the site first...
 

Ken

2024-03-30, 09:54:54
Whoops! I forgot that the SMF install here on OFF is out of date!  :'(
 

Ken

2024-03-30, 09:44:48
 Conga-Rats Steve!  :thumbup:
Me gonna install it here just for the fun of it!  :)
 

Skhilled

2024-03-29, 22:15:23
Released!  :D

Recent Topics

TP Articles


Search in titles
Search in article texts

[FIX] Gallery; "The Category Dosen't Exist

Started by ,

Previous topic Next topic

0 Members and 1 Guest are viewing this topic.

Ken

Problem:
When trying to access any of the albums in sub-category's the following error page comes up.

Quote
An Error Has Occurred!
The category doesn't exist.
...it is being caused by a conflict with one of the TinyPortal files.

Fixed it with a coding edit supplied by IchBin™.
... anyone using this edit should backup your files.

Quote from: IchBin™

    A temporary fix in Sources/TPortal.php about line #1024 you can find this code:
 
Code: Select
    //return if not quite a category
    if(isset($_GET['action']) && $_GET['action'] == 'manageboards')
    return;


    Change it to this:
 
Code: Select
    //return if not quite a category
    if(isset($_GET['action']) && ($_GET['action'] == 'manageboards' || $_GET['action'] == 'gallery'))
    return;

An error has occurred

Call to undefined function template_quickbuttons()