Shinys WCMS-Blog hackfree mod [multi language ready]

Post custom hacks and enhancements for phpwcms here only. Maybe some of these things will be included in official release later.
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by juergen »

Also, der Blog funktioniert auch mit der neusten Version.

Nun meine Vermutung:

Du hast ein prepend in deiner DB für die '888' - Seite, das du bei dem anlegen der BLOG Dateien nicht davor gehängt hast.

Das Teil braucht einen Setup Ordner der sich um solche Sachen kümmert....


Gruß

Jürgen
nehemia
Posts: 118
Joined: Mon 11. Sep 2006, 21:19
Location: Fürth
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by nehemia »

Hallo Jürgen,
welche Datei(en) ist/sind Deiner Meinung nach davon betroffen bzw. wo muss ich das ändern?
Gruß, Martin
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by juergen »

Hallo,

ich vermute du hast in deiner datenbank vor den phpwcms Tabellen noch eine vorlaufende Bezeichnung, wie etwa: 888_phpwcms_article ... etc.

Dieser muss dann auch vor die BLOG Dateien..
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by juergen »

*PLING*

Geändert / Changed:

-> rewrite function obeys to blog, blog obeys to rewrite function
-> some clean up (still more to do)
-> some alfa beta gamma Testing needed for new monthly rollback function

Anyone interested in pre Version call in ..

Living example: http://jgbm.de
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

EDIT:
oh habe gesehen, dass es im Unterverzeichnis su ein setup.php gibt, aber trotzdem die frage, wie führe ich dieses zum erzeugen der tabellen aus?
EDIT OFF


hallo,
ich bin gerade auch mal dabei, das blogtool einzubauen. ich habe wcmsblog 0.5 auf meinen webspace kopiert. in der admin-console erscheint es nun. wenn ich es anklicke steht dort natürlich verständlicherweise:

Code: Select all

Error:
There is a problem with the Blogs Module Database. 
Please ensure that you have installed this module correctly and have all the correct permissions on your PhpWcms database.
bitte nicht steinigen, aber welche tabellen müssen wie im mysql hinzugefügt werden? welche routine muss ich ausführen, damit diese erzeugt werden. konnte leider dazu nichts finden. oder sollen es die angaben unterhalb des downloads sein, die mit

Code: Select all

Table Blog for "normal" collation
beginnen?

wenn ja, muss dies als *.sql gespeichert werden? und wenn ja, wie führe ich es dann aus?
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by juergen »

Während ich das brandneue Modul hier immer noch liegen habe:

Das ist schon mal aus dem neuen Installationsmodul, kopierst dir heraus, gehst in die DB Verwaltung und gibst das da ein, wo du ein SQL Eingabefeld antriffst.

Code: Select all

--
-- Tabellenstruktur für Tabelle `phpwcms_blogcomments`
--

CREATE TABLE IF NOT EXISTS `phpwcms_blogcomments` (
  `id` int(11) NOT NULL auto_increment,
  `author` varchar(255) NOT NULL default '',
  `time` int(11) NOT NULL default '0',
  `e_id` int(11) NOT NULL default '0',
  `e-mail` varchar(255) NOT NULL default '',
  `url` varchar(255) NOT NULL default '',
  `ip` varchar(255) NOT NULL default '',
  `comment` text NOT NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM ;

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `phpwcms_blogentries`
--

CREATE TABLE IF NOT EXISTS `phpwcms_blogentries` (
  `id` int(11) NOT NULL auto_increment,
  `b_id` int(11) NOT NULL default '0',
  `title` varchar(255) NOT NULL,
  `subtitle` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `time` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM ;

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `phpwcms_blogowners`
--

CREATE TABLE IF NOT EXISTS `phpwcms_blogowners` (
  `id` int(11) NOT NULL auto_increment,
  `u_id` varchar(255) NOT NULL default '',
  `b_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM ;

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `phpwcms_blogs`
--

CREATE TABLE IF NOT EXISTS `phpwcms_blogs` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `prefs` text NOT NULL,
  PRIMARY KEY  (`id`,`title`)
) TYPE=MyISAM ;

Der Rest demnächst !
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

soweit so gut, bei mir beginnen die tabellen mit pwc1_ , das musste ich noch ergänzen, dann gings.
jetzt habe ich im webinterface die möglichkeit BLOGS anzulegen. das geht auch ohne probleme.

BTW: darunter steht - warum auch immer - in GRÜN:

Code: Select all

You do not have all neccessary rights for these BLOGS
aber wie binde ich die BLOGS nun auf meine seite ein?
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by juergen »

Na du kannst doch einen BLOG anlegen, dann ist es deiner ( So wie du ihn anlegst) und einbinden: {BLOG:NAmemeineswunderschoenenBlogs}
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

ich habs jetzt sogar hinbekommen, aber jetzt das nächste Problem.
Wenn ich einen 2. Blog anlege, dann kommt ein Fehler :roll:

Code: Select all

Fatal error: Cannot redeclare makelink() (previously declared in /www/htdocs/xnwhne/include/inc_module/mod_blogs/inc_lib/functions.general.inc.php:21) in /www/htdocs/xnwhne/include/inc_module/mod_blogs/inc_lib/functions.general.inc.php on line 25 
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by update »

und wenn Du mal für jeden Blog einen eigenen Artikel anlegst, kommt der Fehler auch?
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

claus wrote:und wenn Du mal für jeden Blog einen eigenen Artikel anlegst, kommt der Fehler auch?
hi claus, wenn ich für jeden blog einen eigenen artikel anlege, dann geht es,
aber wie kann ich dann mehrere artikel auf einer seite darstellen, das habe ich noch nicht geschafft
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

was auch geht ist:
einen BLOG und dann viele blockentries, aber dann schließt sich an kommentar/permalink direkt ohne abstand der nächste eintrag an, ist auch unschön, und ein vorblättern wäre nie möglich
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by update »

Mach Dir einen dritten Artikel... ;)
da drin ist dann ein Content Part "teaser" - damit ziehst Du Dir die zwei Blogartikel da rein - schon hast Du eine prima Übersicht über Deine (später mal) 400 Blogs ;)
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
woody
Posts: 30
Joined: Thu 9. Aug 2007, 11:27

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by woody »

dann geht das aussehen eines BLOGs ja völlig unter und man muss erst klicken, bevor man einen Blogeintrag sieht, also das muss anders machbar sein.
möglicherweise mach ich ja einen denkfehler und es handlet sich eigentlich nur um einen BLOG mit vielen einzelnen Blogeinträgen. Dann bleibt halt nur noch die frage, wie man nach dem "kommentar/permalink" ein wenig abstand zum nächsten eintrag hin bekommt
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Shinys WCMS-Blog hackfree mod [multi language ready]

Post by update »

äääh - wie?
Du wolltest doch mehrere Blogs, die jeweils viele Blogeinträge haben können, oder? Die 3.Seite stellt dann nur die Verteilstelle, den Zugang her...
Nun, das geht genau so wie beschrieben....

Ein Blog ist ein Blog ist ein Blog - und der besteht aus vielen Blogeinträgen, mit oder ohne Kommentarfunktion. Dann kannst Du ja einstellen, ob Du 1, 2, oder x Beiträge pro Seite willst....

Und für das Aussehen ist CSS einzuträufeln....
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Post Reply