• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Topic handmade or by admin panel

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
why if i create a topic form administrator panel it will be visible in other case, if i create it into database by query it will not be visible...?

Thanks.
Antonio
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't understand what creating topics has to do with the admin panel. Please provide more details what you're doing manually, and what you're doing by SQL, and how each of those does or does not work as you expected.
 
anto schir
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have a dump of an old installation of my forum, after first installation i want transfer categories, posts, topic and users into the new database with a sql script, users are loaded ok, topics, categories and posts are correctly into db but im not able to watch their into the forum...

eg:
--> this is from original dump inserted during installation INSERT INTO jforum_categories VALUES (1,'Category Test',1,0);

my adds:
INSERT INTO jforum_categories VALUES (2,'ONLINE',2,0);
INSERT INTO jforum_categories VALUES (4,'MERCATO ',6,0);
INSERT INTO jforum_categories VALUES (5,'AREA UTENTI',4,0);
INSERT INTO jforum_categories VALUES (6,'AREA STAFF',8,0);
INSERT INTO jforum_categories VALUES (7,'STAGIONE ',7,0);
INSERT INTO jforum_categories VALUES (8,'AREA PRIVATA STAFF',9,0);

when i open admin panel i not able to watch this categories..

Maybe i had to add these lines into file mysql_data_dump.sql before start installation ?!

 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There seems to be more to creating categories than just an entry in that table. Note how you need to set access permissions when you create a new category through the admin panel? That information needs to be stored somewhere, and I suspect if it's missing things don't work. I don't know where it's stored, though.
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you look at the admin panel for groups, you can see that you have to give each group permission to access the categories. Otherwise, nobody has permission and they stay hidden.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic