[RC] Add Page MOD

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Suggested Hosts
Locked
ameeck
Former Team Member
Posts: 6559
Joined: Mon Mar 21, 2005 6:57 pm

Re: [BETA] Add Page MOD

Post by ameeck »

Well there isn't much to be translated on the pages themselves, there is only the content you specify - the title and page content. And that is not differed by language, you can however make separate pages for each language version.

The ACP is translated into english, I'll hopefully pack some other languages too, if you would care to translate the language file to German, I'd include it.
Niklas.SB
Registered User
Posts: 37
Joined: Fri May 02, 2008 7:25 am

Re: [BETA] Add Page MOD

Post by Niklas.SB »

you can however make separate pages for each language version.
OK, I think that's the easiest way^^
if you would care to translate the language file to German, I'd include it
Why not? xD I think it's also a nice option to practise my English.

Greets,
Niklas
ameeck
Former Team Member
Posts: 6559
Joined: Mon Mar 21, 2005 6:57 pm

Re: [BETA] Add Page MOD

Post by ameeck »

Thanks for your file. Unfortunately I need it in utf8. I have also added some other things to translate in the second post of this topic, if you could include them too I'd be glad.
Kharon
Registered User
Posts: 235
Joined: Thu Oct 26, 2006 5:27 pm

Re: [BETA] Add Page MOD

Post by Kharon »

my requests (next version) :)

Image

and

Is it can be done ?
http://www.phpbb.com/community/viewtopi ... 5#p8694325

thanks
sorry my english
JohanLM
Registered User
Posts: 69
Joined: Sat Apr 02, 2005 8:21 am
Location: Sweden / Gothenburg

Re: [BETA] Add Page MOD

Post by JohanLM »

I second Kharon.
If there is a way of add:ing "rights" to the new pages of who can see it and not, then it would be great. :)
User avatar
Smavy
Registered User
Posts: 36
Joined: Wed Mar 28, 2007 12:04 pm
Location: Germany
Contact:

Re: [BETA] Add Page MOD

Post by Smavy »

Hi,

.. I have already translated it into german (casual)

See here
Niklas.SB
Registered User
Posts: 37
Joined: Fri May 02, 2008 7:25 am

Re: [BETA] Add Page MOD

Post by Niklas.SB »

Heyoh,
I think your translation is better than mine. So far, it was my first translation for a phpBB-MOD, so it was quite correct, but maybe not professional.

Greets,
Niklas
Karl1987
Registered User
Posts: 106
Joined: Thu Jan 17, 2008 11:29 pm
Location: México

Re: [BETA] Add Page MOD

Post by Karl1987 »

mmmmmm how fix this error.

Code: Select all

Error General
SQL ERROR [ mysql4 ]

Table 'montatu_montatuforo.PAGES_TABLE' doesn't exist [1146]

SQL

SELECT p.page_id, p.page_title, p.page_desc, p.page_author, p.page_display, p.page_url, u.username, u.user_colour FROM PAGES_TABLE p, phpbb_users u WHERE u.user_id = p.page_author ORDER BY p.page_order ASC, p.page_id ASC

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: includes/acp/acp_pages.php
LINE: 284
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 507
CALL: acp_pages->main()

FILE: adm/index.php
LINE: 75
CALL: p_master->load_active()
User avatar
bonelifer
Community Team Member
Community Team Member
Posts: 3542
Joined: Wed Oct 27, 2004 11:35 pm
Name: William
Contact:

Re: [BETA] Add Page MOD

Post by bonelifer »

Karl,

This:

Table 'montatu_montatuforo.PAGES_TABLE' doesn't exist [1146]

Says that table doesn't exist, because you haven't run this SQL query which is listed at the top of the install file page. You run it in phpMyAdmin in your webhosting control panel.

Code: Select all

CREATE TABLE phpbb_pages (
  page_id int(11) unsigned NOT NULL auto_increment,
  page_title varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL,
  page_desc mediumtext character set utf8 collate utf8_bin NOT NULL,
  page_content mediumtext character set utf8 collate utf8_bin NOT NULL,
  page_url varchar(255) character set utf8 collate utf8_bin NOT NULL,
  bbcode_uid varchar(8) character set utf8 collate utf8_bin NOT NULL,
  bbcode_bitfield varchar(255) character set utf8 collate utf8_bin NOT NULL default '',
  page_time int(11) unsigned NOT NULL default '0',
  page_order int(11) unsigned NOT NULL default '0',
  page_display tinyint(1) unsigned NOT NULL default '0',
  page_author mediumint(8) unsigned NOT NULL,
  PRIMARY KEY  (page_id)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
William Jacoby - Community Team
Knowledge Base | phpBB Board Rules | Search Customisation Database
Please don't contact me via PM or email for phpBB support .
absolutex
Registered User
Posts: 57
Joined: Tue Jul 01, 2008 4:33 pm
Contact:

Re: [BETA] Add Page MOD

Post by absolutex »

hey thanks love this mod ! :lol:
ameeck
Former Team Member
Posts: 6559
Joined: Mon Mar 21, 2005 6:57 pm

Re: [BETA] Add Page MOD

Post by ameeck »

Karl1987 wrote:mmmmmm how fix this error.
Either what bonelifer said or you haven't made the appropriate file edit in constants.php. Also are you sure you changed the table prefix in the SQL query included in the installer?
User avatar
darkonia
Registered User
Posts: 1901
Joined: Tue May 13, 2008 1:10 pm
Location: Munich, Germany
Contact:

Re: [BETA] Add Page MOD

Post by darkonia »

very good mod, easy to install and runs perfect.

thx a lot :mrgreen:
MMOG-Heaven - Das Gaming Portal
Community bedeutet Gleichgesinnte finden - MMOG-Heaven ist Deine Community! Von Spielern für Spieler bietet Dir dieses Portal genau das, was ein Spieler braucht. Bleibe ständig informiert, finde die neuesten MMORPGs, oder suche die frischesten News aus der Welt des Online Gamings - dieses und vieles mehr erwartet Dich auf MMOG-Heaven.
User avatar
Smavy
Registered User
Posts: 36
Joined: Wed Mar 28, 2007 12:04 pm
Location: Germany
Contact:

Re: [BETA] Add Page MOD

Post by Smavy »

Hey Niklas,
Niklas.SB wrote:Heyoh,
I think your translation is better than mine. So far, it was my first translation for a phpBB-MOD, so it was quite correct, but maybe not professional.
professional? Certainly not! My English is bad! :oops:
Just a little routine and i hope my english will be better with this practice :|
Karl1987
Registered User
Posts: 106
Joined: Thu Jan 17, 2008 11:29 pm
Location: México

Re: [BETA] Add Page MOD

Post by Karl1987 »

ameeck wrote:
Karl1987 wrote:mmmmmm how fix this error.
Either what bonelifer said or you haven't made the appropriate file edit in constants.php. Also are you sure you changed the table prefix in the SQL query included in the installer?
o thanks ameeck this error has in the constanst.php :lol: now work perfectly, wonderful work friend ;)
wout000
Registered User
Posts: 21
Joined: Wed Aug 06, 2003 11:30 am
Location: Belgium
Contact:

Re: [BETA] Add Page MOD

Post by wout000 »

Any chance on subsilver edits?
Locked

Return to “[3.0.x] MODs in Development”