PlomWiki BETA: Zur Start-Seite Suche Letzte Änderungen Neueste Kommentare  
Impressum Datenschutz-Erklärung

Start

Wiki-Gehirn von @plomlompom aka Christian Heller. Für ungeordnete Notizen und Synapsen-Zuckungen.

Willkommen auf der Baustelle eines Wikis, das ich mir gerade programmiere. Technisch geht hier grad alles etwas drunter und drüber. Nicht wundern, wenn etwas nicht funktioniert.

Die kurzfristig vielleicht interessantesten Links:

Weitere Anlauf-Stellen:

Kommentare

#0

Kann man das PlomWiki System herunterladen?

Martin / 2011-04-06 17:49:25
#1

Der derzeitige Source Code liegt hier: https://github.com/plomlompom/PlomWiki Kopiere den Dateien-Baum auf einen PHP-fähigen Web-Server, und mir fällt spontan kein Grund ein, warum es dann nicht laufen sollte.

So richtig Mühe hab ich mir aber noch nicht gemacht, es für andere Benutzer freundlich zu gestalten; ich betrachte das PlomWiki noch als zu unfertig, um seine Benutzung Dritten zu propagieren, und gebe keine Garantien für irgendwas.

Aber fühl dich frei, es auszuprobieren, und deine Erfahrungen zu berichten :-)

#2

Gerne... Vielen Dank.
Wenn Du Hilfe bei der Entwicklung (PHP/MySQL) brauchst, dann kann ich gerne helfen...

Martin / 2011-04-06 18:45:25
#3

Thx fürs Angebot :-)

Momentan bring ich mir das alles als eine Art PHP-Autodidaktik-Projekt bei und bin erstaunt, wie weit ich schon gekommen bin.

Ich lizensier das aber auch gerne alles frei, dass es forken, weiter-entwickeln und korrigieren kann, wer will.

#4

Das CSS heir könnte auch mal schöner sein ;)

#5

Joa. Darum kümmere ich mich ... frühestens wenn in zwei Monaten mein Buch fertig geschrieben ist ;-)

#6

Welches CSS? ;-)

lab / 2011-07-15 18:00:54
#8

javascript:alert(document.URL+document.cookie)

#10

Es scheint mir der Fall zu sein, dass das PlomWiki etwas sicherer ist als die Riesenmaschine.

#13

So, das ist aber der letzte Versuch … einfach meinen Namen klicken und abwarten.

#14

popunder=yes; popundr=yes; setover18=1

XSS / 2011-10-31 20:16:21
#17

+1

micheal / 2011-11-07 20:16:26
#18

I can haz wiki plz?

Bernd / 2011-11-07 20:20:39
#58

popunder=yes; popundr=yes; setover18=1

XSS / 2011-11-07 20:28:39
#72

Biste Mett?

Bernd / 2011-11-07 20:30:56
#73

Biste Mett?

Bernd / 2011-11-07 20:31:18
#74

Biste Mett?

Bernd / 2011-11-07 20:31:31
#75

Biste Mett?

Bernd / 2011-11-07 20:31:38
#76

Biste Mett?

Bernd / 2011-11-07 20:31:52
#77

Biste Mett?

Bernd / 2011-11-07 20:32:01
#78

Biste Mett?

Bernd / 2011-11-07 20:32:07
#79

Biste Mett?

Bernd / 2011-11-07 20:32:17
#80

Biste Mett?

Bernd / 2011-11-07 20:32:31
#81

Biste Mett?

Bernd / 2011-11-07 20:32:46
#82

Biste Mett?

Bernd / 2011-11-07 20:33:01
#83

Biste Mett?

Bernd / 2011-11-07 20:33:12
#84

Biste Mett?

Bernd / 2011-11-07 20:33:21
#85

Biste Mett?

Bernd / 2011-11-07 20:33:31
#86

Biste Mett?

Bernd / 2011-11-07 20:33:40
#87

Biste Mett?

Bernd / 2011-11-07 20:33:52
#88

Biste Mett?

Bernd / 2011-11-07 20:34:04
#89

Biste Mett?

Bernd / 2011-11-07 20:34:11
#90

Biste Mett?

Bernd / 2011-11-07 20:34:25
#91

Biste Mett?

Bernd / 2011-11-07 20:34:41
#92

Biste Mett?

Bernd / 2011-11-07 20:35:09
#93

Biste Mett?

Bernd / 2011-11-07 20:35:19
#94

Biste Mett?

Bernd / 2011-11-07 20:35:47
#95

Biste Mett?

Bernd / 2011-11-07 20:36:24
#96

Biste Mett?

Bernd / 2011-11-07 20:37:00
#97

Biste Mett?

Bernd / 2011-11-07 20:37:34
#98

Biste Mett?

Bernd / 2011-11-07 20:38:11
#99

Biste Mett?

Bernd / 2011-11-07 20:38:39
#174

<?php

//if the gocart config file doesn't exist, the cart hasn't been installed.
if(!file_exists(dirname($_SERVER['SCRIPT_FILENAME']).'/gocart/config/gocart.php'))
{
$path = rtrim($_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']), '/').'/';

header('Location: http://'.$path.'install');
die;
}

/*
*---------------------------------------------------------------
* APPLICATION ENVIRONMENT
*---------------------------------------------------------------
*
* You can load different configurations depending on your
* current environment. Setting the environment also influences
* things like logging and error reporting.
*
* This can be set to anything, but default usage is:
*
* development
* testing
* production
*
* NOTE: If you change these, also change the error_reporting() code below
*
*/
define('ENVIRONMENT', 'development');
/*
*---------------------------------------------------------------
* ERROR REPORTING
*---------------------------------------------------------------
*
* Different environments will require different levels of error reporting.
* By default development will show errors but testing and live will hide them.
*/

if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(E_ALL);
break;

case 'testing':
case 'production':
error_reporting(0);
break;

default:
exit('The application environment is not set correctly.');
}
}

/*
*---------------------------------------------------------------
* SYSTEM FOLDER NAME
*---------------------------------------------------------------
*
* This variable must contain the name of your "system" folder.
* Include the path if the folder is not in the same directory
* as this file.
*
*/
$system_path = 'system';

/*
*---------------------------------------------------------------
* APPLICATION FOLDER NAME
*---------------------------------------------------------------
*
* If you want this front controller to use a different "application"
* folder then the default one you can set its name here. The folder
* can also be renamed or relocated anywhere on your server. If
* you do, use a full server path. For more info please see the user guide:
* http://codeigniter.com/user_guide/general/managing_apps.html
*
* NO TRAILING SLASH!
*
*/
$application_folder = 'gocart';

/*
* --------------------------------------------------------------------
* DEFAULT CONTROLLER
* --------------------------------------------------------------------
*
* Normally you will set your default controller in the routes.php file.
* You can, however, force a custom routing by hard-coding a
* specific controller class/function here. For most applications, you
* WILL NOT set your routing here, but it's an option for those
* special instances where you might want to override the standard
* routing in a specific front controller that shares a common CI installation.
*
* IMPORTANT: If you set the routing here, NO OTHER controller will be
* callable. In essence, this preference limits your application to ONE
* specific controller. Leave the function name blank if you need
* to call functions dynamically via the URI.
*
* Un-comment the $routing array below to use this feature
*
*/
// The directory name, relative to the "controllers" folder. Leave blank
// if your controller is not in a sub-folder within the "controllers" folder
// $routing['directory'] = '';

// The controller class file name. Example: Mycontroller
// $routing['controller'] = '';

// The controller function you wish to be called.
// $routing['function'] = '';

/*
* -------------------------------------------------------------------
* CUSTOM CONFIG VALUES
* -------------------------------------------------------------------
*
* The $assign_to_config array below will be passed dynamically to the
* config class when initialized. This allows you to set custom config
* items or override any default config values found in the config.php file.
* This can be handy as it permits you to share one application between
* multiple front controller files, with each file containing different
* config values.
*
* Un-comment the $assign_to_config array below to use this feature
*
*/
// $assign_to_config['name_of_config_item'] = 'value of config item';

// --------------------------------------------------------------------
// END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
// --------------------------------------------------------------------

/*
* ---------------------------------------------------------------
* Resolve the system path for increased reliability
* ---------------------------------------------------------------
*/

// Set the current directory correctly for CLI requests
if (defined('STDIN'))
{
chdir(dirname(__FILE__));
}

if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}

// ensure there's a trailing slash
$system_path = rtrim($system_path, '/').'/';

// Is the system path correct?
if ( ! is_dir($system_path))
{
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}

/*
* -------------------------------------------------------------------
* Now that we know the path, set the main path constants
* -------------------------------------------------------------------
*/
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));

// The PHP file extension
// this global constant is deprecated.
define('EXT', '.php');

// Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path));

// Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));

// Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));

// The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}

define('APPPATH', BASEPATH.$application_folder.'/');
}

/*
* --------------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
* --------------------------------------------------------------------
*
* And away we go...
*
*/
require_once BASEPATH.'core/CodeIgniter.php';

/* End of file index.php */
/* Location: ./index.php */

Bernd / 2011-11-07 21:00:55
#175

Ja, und nun, Bernd?

(Hab's grad eilig. Sehe auf den ersten Blick nichts Gefährliches. Deaktiviere aber für die Zeit meiner zweitägigen Hamburg-Reise die Kommentare jetzt trotzdem erstmal vorsichtshalber, bis ich dazu komme, es mir ausführlicher anzusehen, was ihr da gemacht habt.)

#176

Bin retourniert. Verstehe tatsächlich nicht, was diese obigen Kommentare sollen. Aber immerhin macht mein Filter das PHP-Zeugs unausführbar ;-) Kommentare sind wieder offen.

Wer Angriffspunkte für mein Wiki-System und seine Plugins sucht, der wird vielleicht hier fündig: https://github.com/plomlompom/PlomWiki

#177

@plomlompom Ich glaube, der einfachste Fix wäre, wenn du es einfach "verbieten" würdest, einen gleichen Kommentar zwei mal hintereinander zu schreiben...alternativ einfach die anzahl von Kommentare pro Minute begänzen ;)

#178

popunder=yes; popundr=yes; setover18=1

XSS / 2011-11-14 13:06:17
#179

popunder=yes; popundr=yes; setover18=1

XSS / 2011-11-16 17:43:05
#180

Synapsenzuckungen finde ich TOLL!

maschinentreiber / 2011-12-31 03:42:01
#181

popunder=yes; popundr=yes; setover18=1

XSS / 2012-01-03 01:50:07
#182

popunder=yes; popundr=yes; setover18=1

XSS / 2012-01-27 15:45:05
#183

Schließe mich dem Maschinentreiber an!

Tom Rheker / 2012-01-27 17:12:26
#184

Und wir haben auch noch am gleichen Tag Geburtstag. Mit 10 Jahren Unterschied =) *kewl*

Tom Rheker / 2012-01-27 17:13:03
#185

popunder=yes; popundr=yes; setover18=1

XSS / 2012-01-31 21:39:40
#186

WikiVisit via RainerWasserfuhr on Google+Krake.
Sollte dich interessieren:
https://www.facebook.com/pages/UnTernet/267881109950487?sk=wall

Bis bald. Vielleicht bist du dann weiter mit programmen.

gruß aus DresdensiaSaxonia

WAJ / 2012-02-10 23:50:00

Schreibe deinen eigenen Kommentar

Dein Name:
Deine URL:
Captcha-Passwort benötigt! Schreibe "apfel":