• [MOD] Tag cloud ( keyword & cat cloud in web2.0 style) 5 0 5 1
Currently:  

Poll

What do you think of this mod?

Excellent
Good
Fair
Poor
Bad

Author Topic: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)  (Read 227993 times)

0 Members and 1 Guest are viewing this topic.

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #150 on: February 11, 2013, 02:02:46 PM »
whats wrong
Quote
Warning: array_values() expects parameter 1 to be array, null given in C:\xampp\htdocs\seite\keyword_cloud.php on line 65

Warning: max(): When only one parameter is given, it must be an array in C:\xampp\htdocs\seite\keyword_cloud.php on line 65

Warning: array_values() expects parameter 1 to be array, null given in C:\xampp\htdocs\seite\keyword_cloud.php on line 66

Warning: min(): When only one parameter is given, it must be an array in C:\xampp\htdocs\seite\keyword_cloud.php on line 66

Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\seite\keyword_cloud.php on line 75

Rembrandt

  • Guest
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #151 on: February 11, 2013, 04:00:33 PM »
whats wrong..
Ist vielleicht die wordlist, wordmatch tabelle leer?

ich nehme mal an du meinst diese Modifikation: http://www.4homepages.de/forum/index.php?topic=19157.0


Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #152 on: February 11, 2013, 04:47:27 PM »
Nein, in beiden steht was drin.
Die Fehlermeldung habe ich in beiden Modifikationen

Rembrandt

  • Guest
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #153 on: February 11, 2013, 05:13:26 PM »
so.. gerade diesen Mod hier getestet, funktioniert.

mfg Andi

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #154 on: February 12, 2013, 06:51:47 PM »
Kann es sein, weil ich es local in xampp am laufen habe?

Offline CodeMan

  • Newbie
  • *
  • Posts: 32
    • View Profile
    • ArabGlobe.com
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #155 on: April 16, 2013, 09:04:43 PM »
Hello,

nice MOD and working great!
currently I'm using the modified MOD for categories as provided by ch€ri{Bi}² (see: http://www.4homepages.de/forum/index.php?topic=16812.15).
Tag cloud is showing (separate) Categories but all in one line.
This way the tag cloud is stretched and my template gets too wide.

How can I show the categories on multiple lines so my template keeps its width?

Thanks!
« Last Edit: April 20, 2013, 10:37:02 PM by CodeMan »

Offline .Infecto

  • Newbie
  • *
  • Posts: 48
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #156 on: June 19, 2015, 11:29:25 PM »
Ich habe den Fehler wie viele andere auch.
Wordlist ist voll

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #157 on: June 19, 2015, 11:43:14 PM »
Suche:
  $sql 
	
"SELECT i.word_id, i.word_text, COUNT(c.word_id) AS quantity
  
	
	
	
FROM "
.WORDLIST_TABLE." i
	
	
	
LEFT JOIN "
.WORDMATCH_TABLE." c ON i.word_id = c.word_id
	
	
	
WHERE keys_match > 0
  
	
	
	
GROUP BY i.word_text
  
	
	
	
ORDER BY  RAND()
	
	
	
LIMIT 20"
;

Ersetze mit

  $sql 
	
"SELECT i.word_id, i.word_text, COUNT(c.word_id) AS quantity
  
	
	
	
FROM "
.WORDLIST_TABLE." i
	
	
	
LEFT JOIN "
.WORDMATCH_TABLE." c ON i.word_id = c.word_id
  
	
	
	
GROUP BY i.word_text
  
	
	
	
ORDER BY  RAND()
	
	
	
LIMIT 20"
;


Dann sollte der Fehler weg sein.
Es wurde lediglich folgendes entfernt

WHERE keys_match > 0

oder ändern in "WHERE keys_match >= 0"

Offline .Infecto

  • Newbie
  • *
  • Posts: 48
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #158 on: June 20, 2015, 12:19:21 AM »
Danke, hat funktioniert!