finde ich ja super!
Ich würde dann mal testen, wenn ich auch soweit bin.
Aber den Ansatz, Eure Bemühungen zusammenzuwerfen finde ich gut, DANKE!
Und wenn DU dann zum testen aufrufst... ich lausche

Viele Grüße,
FELIX
SNap wrote:hat schon jemand exdmod mit 1.2.9 getestet?
frechheit... gleichmal testen...fopulu wrote:@marcus@localhorst
Hab dir ne mail über deine www-Seite geschickt, aber leider habe ich eine 'mail delievery failed' Meldung bekommen....
ja, ich melde mich in den nächsten tagen nochmal, ok?breitsch wrote:@marcus@localhorst
krieg ich Einblick in deine Lösung?
dann könnte ich abschätzen ob eine Zusammenarbeit mit ExData sinnvoll wäre, oder ob ich mit der angefangenen Lösung weiterfahren soll.
Code: Select all
Warning: Invalid argument supplied for foreach() in /www/htdocs/v118068/cms/include/inc_module/mod_exdata/inc_lib/exdata.classes.php on line 556
A little mistake in the code2xS wrote:1. If I add a new entry or edit an existing one I get the following warning in the backend:Code: Select all
Warning: Invalid argument supplied for foreach() in /www/htdocs/v118068/cms/include/inc_module/mod_exdata/inc_lib/exdata.classes.php on line 556
Code: Select all
foreach ($tmp_entries as $key=>$value) {
$tmp_entries2[$key] = array_unique($tmp_entries[$key]);
sort($tmp_entries2[$key]);
natcasesort($tmp_entries2[$key]);
}
Code: Select all
if($tmp_entries){
foreach ($tmp_entries as $key=>$value) {
$tmp_entries2[$key] = array_unique($tmp_entries[$key]);
sort($tmp_entries2[$key]);
natcasesort($tmp_entries2[$key]);
}
}
still not made that one editable2xS wrote:2. Is there a possibility to change the value of the search button with AutoTemplates?
Code: Select all
$search_listing .= '<input type="button" class="exd_but" value="search" onClick="this.form.submit();">';
although I don't know exactly what happens with css do it as follows:2xS wrote:3. What's the best way (is there a way?) to add a link from an entry of one category to the entry of another category?
Code: Select all
Fatal error: Unable to open csv file in /www/htdocs/w0XXXXXX/EmmasShop2/include/inc_module/mod_exdata/inc_lib/exdata.class.csv.php on line 160
Code: Select all
foreach ($tmp_entries as $key=>$value) {
$tmp_entries2[$key] = array_unique($tmp_entries[$key]);
sort($tmp_entries2[$key]);
natcasesort($tmp_entries2[$key]);
}
Code: Select all
if($tmp_entries){
foreach ($tmp_entries as $key=>$value) {
$tmp_entries2[$key] = array_unique($tmp_entries[$key]);
sort($tmp_entries2[$key]);
natcasesort($tmp_entries2[$key]);
}
}
as already mentioned I'm working right now on ExData Version 2.65 - will be released in two versions, one for phpwcms 1.2.6 (for the many running systems) and, of course, for phpwcms 1.3.0 (as a one step install solutionjsw_nz wrote:Now that OliG has release 1.30 - wanted to ask if (when you have time) there might be a default 2.63 for phpwcms1.30.
works a bit bugy but works, see some posts above to clean the bugjsw_nz wrote:have you gotten a predefined list to work in 2.63
Code: Select all
var $link_search = array
(
"#([a-z0-9\-_.]+?)@([^, \n\r<>]+)#i",
"#(?:http://)?www\.([a-z0-9\-]+)\.([a-z0-9\-.\~]+)((?:/[^, \n\r]*)?)#i",
"/(?<!<a href=\")((http|ftp)+(s)?:\/\/[^<>\s]+)/i"
);
var $link_replace = array
(
"<a href=\"mailto:\\1@\\2\">\\1@\\2</a>",
"<a href=\"http://www.\\1.\\2\\3\" target=\"_blank\">www.\\1.\\2\\3</a>",
"<a href=\"\\0\" target=\"_blank\">\\0</a>"
);
$event = preg_replace($this->link_search, $this->link_replace, $event);