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?

another V7 TESTING SITE

Asked Modified Viewed 2,630 times
A
And
A
And 10
dev.starefossen.com/../../images/button1.png

Starefossen Development Site
  • Member, joined since
  • Contributed 78 posts on the community forums.
  • Started 15 threads in the forums
  • Started this discussions
asked
Member

Also i made a test site you can go here
http://andizm.byethost8.com/and/news.php


User : Admin
Pass : phpfusion
AdminPass : version7

Please dont do any bad thing !!


Edit


1) its a problem " ALPHA VERSION : SUPPORT WILL NOT BE PROVIDED "

2) I dont know how to make RANKS !!
Edited by And on 30-05-2008 10:15,
0 replies

13 posts

S
Super
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
answered
Senior Member

That's good, but can you please not use my user name, password, and admin password that i made.
0 replies
A
Acrono
A
Acrono 10
  • Junior Member, joined since
  • Contributed 46 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

Q: did you modified the admin panel ? it looks strange to me. :|
0 replies
A
And
A
And 10
dev.starefossen.com/../../images/button1.png

Starefossen Development Site
  • Member, joined since
  • Contributed 78 posts on the community forums.
  • Started 15 threads in the forums
  • Started this discussions
answered
Member

Quote

Super wrote:
That's good, but can you please not use my user name, password, and admin password that i made.


hahhaah ok ok its not problem !!;)
0 replies
S
Super
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
answered
Senior Member

No, I haven't touched the Admin Panel
0 replies
A
Acrono
A
Acrono 10
  • Junior Member, joined since
  • Contributed 46 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

well than, in system admin its just that:

Forum Settings
Panels
Site Links
Smileys
Time and Date Settings
0 replies
A
And
A
And 10
dev.starefossen.com/../../images/button1.png

Starefossen Development Site
  • Member, joined since
  • Contributed 78 posts on the community forums.
  • Started 15 threads in the forums
  • Started this discussions
answered
Member

Quote

Acrono wrote:
well than, in system admin its just that:

Forum Settings
Panels
Site Links
Smileys
Time and Date Settings



Yes I cannot let all admin access !!

edit: LOOK IT NOW
Edited by And on 30-05-2008 10:17,
0 replies
A
Acrono
A
Acrono 10
  • Junior Member, joined since
  • Contributed 46 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

that's better :)
0 replies
F
Falcon
F
Falcon 10
  • Member, joined since
  • Contributed 128 posts on the community forums.
  • Started 5 threads in the forums
answered
Member

Quote


1) its a problem " ALPHA VERSION : SUPPORT WILL NOT BE PROVIDED "

2) I dont know how to make RANKS !!




Version which I gave to you is a v7 ALPHA and has some small errors.
Maybe not errors but is just incomplete:)
Issue 1:
That is not a problem is just a message made just for administrators.
That message was put in- themes/templates/ table_layout.php and div_layout.php

Issue 2:
Read db update 29-03-08
0 replies
A
And
A
And 10
dev.starefossen.com/../../images/button1.png

Starefossen Development Site
  • Member, joined since
  • Contributed 78 posts on the community forums.
  • Started 15 threads in the forums
  • Started this discussions
answered
Member

@ -Falcon

I read that but i dont understand where to create ?

forum_ranks.php ?
0 replies
F
Falcon
F
Falcon 10
  • Member, joined since
  • Contributed 128 posts on the community forums.
  • Started 5 threads in the forums
answered
Member

If you're updating your v7 setup, please preview the following code in custom pages admin


this is the code:
// create forum_ranks table
$result = dbquery("DROP TABLE IF EXISTS ".$db_prefix."forum_ranks");
$result = dbquery("CREATE TABLE ".$db_prefix."forum_ranks (
rank_id MEDIUMINT(8) UNSIGNED NOT NULL,
rank_title MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '',
rank_image VARCHAR(100) NOT NULL default '',
rank_posts iNT(10) UNSIGNED NOT NULL DEFAULT '0',
rank_apply SMALLINT(5) UNSIGNED NOT NULL DEFAULT '101',
PRIMARY KEY rank_id
) TYPE=MyISAM;");

// add forum_ranks setting
$result = dbquery("ALTER TABLE ".$db_prefix."settings ADD forum_ranks TINYINT(1) UNSIGNED DEFAULT '0' AFTER thread_notify");

// add forum ranks admin
$result = dbquery("INSERT INTO ".$db_prefix."admin (admin_rights, admin_image, admin_title, admin_link, admin_page) VALUES ('FR', 'forum_ranks.gif', 'Forum Ranks', 'forum_ranks.php', 2)");

// add FR to user rights
$result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_level='103'");
while ($data = dbarray($result)) {
$result2 = dbquery("UPDATE ".$db_prefix."users SET user_rights='".$data['user_rights'].".FR' WHERE user_id='".$data['user_id']."'");
}

// sample ranks
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (1, 'Super Admin', 'rank_super_admin.gif', 0, 103)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (2, 'Admin', 'rank_admin.gif', 0, 102)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (3, 'Moderator', 'rank_mod.gif', 0, 104)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (4, 'Newbie', 'rank0.gif', 0, 101)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (5, 'Junior Member', 'rank1.gif', 10, 101)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (6, 'Member', 'rank2.gif', 50, 101)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (7, 'Senior Member', 'rank3.gif', 200, 101)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (8, 'Veteran Member', 'rank4.gif', 500, 101)");
$result = dbquery("INSERT INTO fusion_forum_ranks VALUES (9, 'Fusioneer', 'rank5.gif', 1000, 101)");
Edited by Falcon on 30-05-2008 13:23,
0 replies
J
Josso
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

@-Falcon: On line 28, there's a double "wink;
wink
0 replies
F
Falcon
F
Falcon 10
  • Member, joined since
  • Contributed 128 posts on the community forums.
  • Started 5 threads in the forums
answered
Member

Modified

Thanks a lot:P
0 replies
J
Josso
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

It's easy to see those errors, with the highlight. :)

One (more) thing I like in v7. :p
0 replies

Category Forum

Post Your Site

Labels

None yet

Statistics

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

5 participants

A
A
And 10
dev.starefossen.com/../../images/button1.png

Starefossen Development Site
  • Member, joined since
  • Contributed 78 posts on the community forums.
  • Started 15 threads in the forums
  • Started this discussions
J
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
S
S
Super 10
~Samchammy

Find some games below!!!
Gamedna.tk
  • Senior Member, joined since
  • Contributed 248 posts on the community forums.
  • Started 32 threads in the forums
F
F
Falcon 10
  • Member, joined since
  • Contributed 128 posts on the community forums.
  • Started 5 threads in the forums
A
A
Acrono 10
  • Junior Member, joined since
  • Contributed 46 posts on the community forums.
  • Started 5 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet