MyBB.de Forum
Google MyCode - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: Google MyCode (/thread-20675.html)

Seiten: Seiten: 1 2


Google MyCode - MyBB.de Bot - 24.08.2008

Eine neue Erweiterung wurde veröffentlicht: Google MyCode

Zitat:[Bild: http://mods.mybb.com/uploads/previews/6344-1239325030-googmycode.thumb.png]
The Google MyCode allows you to use to put [google]google[/google] and it will provide the link to the search results. This is the final build version for new features, bugs only from now on Sad

Update - Version 1.1.0 - April 7, 2009:
Thanks for leaving that review for me, I have fixed the + error! Give it another shot! Plus it now works with custom titles and builds itself as a link, try [google=Search Results]my search here[/google] or [google]my search here[/google].

Installation:
To install simply copy googlemycode.php to your plugins folder(inc/plugins/), and enable the plugin via the Administrator Control Panel.

Previews:
I will put up a few more when I have time, here is the actual files inside the zipped folder for your previewing wishes.
[Bild: http://mods.mybb.com/uploads/previews/6344-1239325467-google-mycode.thumb.png]



RE: Google MyCode 1.0.1 - Thai-Tiger - 24.08.2008

Wenn ich dieses Plugin installiere, dann macht es die Signatur kaputt !


RE: Google MyCode 1.0.1 - Jan - 24.08.2008

Wie macht es denn die Signatur kaputt?
Was passiert?
Screenshots, Beschreibung .... Wink


RE: Google MyCode 1.0.1 - Thai-Tiger - 24.08.2008

Jan, ein Screenhot kann ich nicht mehr erstellen, da ich dieses Plugin wieder deinstalliert habe. Es verändert einfach die Signaturen aller Benutzer.
Und noch ein Bug: Es wird zwar ein Link zum Google angezeigt, diese ist jedoch nicht anklickbar.


RE: Google MyCode 1.0.1 - Jan - 24.08.2008

Screenshot: Installieren, Screenshot erstellen, Deinstalieren
Beschreibung was genau es kaputt macht: ?

Ansonsten, lesen! Wink
Zitat:The Google MyCode allows you to use to put [google]google[/google] and it will provide the link location to the search results. This modification should be used with the [url] tag, or its just a link!
Du musst den Google Code innerhalb eines URL Tags benutzten
Code:
[url][google]Suchwort[/google][/url]
Das das umständlich ist weiß ich Wink Schreib doch dem Autor des Plugins eine Nachricht, oder änder den Code selber entsprechend um.


RE: Google MyCode 1.0.1 - 12dc12 - 06.12.2008

Bei mir werden die Texte so angezeigt

Bespiel+text+bla+bla+bla+bla

so


RE: Google MyCode 1.0.1 - Puppsmuffel - 23.01.2009

Nabend,
das gleiche Problem habe ich auch.
Alle Leerzeichen werden durch ein + ersetzt.

LG Puppsi


RE: Google MyCode 1.0.1 - 12dc12 - 23.01.2009

Naya habe bei mir das Problem gelöst ^^

Einfach die Date geöffnet und ja ehm :

$content = str_replace(" ", "+", $content);

Dies entfernt ^^

Hier wurde das Leerzeichen durch ein + ersetzt wie man sehen kann leider war mein Englisch nicht so gut als ich den Fehler ist geschrieben habe ^^ nun hab ich mir es wieder angeschaut und bemerkt was bei mir den Fehler verursacht ^^

Man kann auch einfach

$content = str_replace(" ", " ", $content);

machen dann wird ein Leerzeichen durch ein Leerzeichen ersetzt

Mfg
12dc12


RE: Google MyCode 1.0.1 - Puppsmuffel - 26.01.2009

Hallo,
also erstmal danke, nun werden auch Leerzeichen wieder richtig angezeigt.
Nun besteht leider das Problem, das der Link wie folgt angezeigt wird:
http://http://www.google.com/search?q=SUCHWORT

und er das ganze auf http://%5bgoogle%5dSUCHWORT%5b/google%5D verlinkt.
Sprich so funktioniert es leider nicht.

LG Puppsi


RE: Google MyCode 1.0.1 - 12dc12 - 26.01.2009

Also gegen das doppelte http://http:// kannst du folgenedes machen :

Script öffnen und nach :
$content = preg_replace("/\[google](.*?)\[\/google\]/si", 'http://www.google.com/search?q=$1', $content);

schauen dort machst du bei :

http://www.google.com/search?q=$1

Da [ ur l][ /url ] automatisch ein http:// einfügt deshalb sind 2 da ^^