Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 76
Seite < 1 2 3 [4]
Fistfunk


Beginner





Beiträge: 15
# Antwort: 61 - 14.06.2011 um 20:54 Uhr
Danke *freu


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


Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 62 - 14.06.2011 um 21:00 Uhr
Update 2011-06-14:

Changes:
- Fix due to changes in the new twitter oauth class

Changed files:
- mods/twitter/info.php
- mods/twitter/center.php
- mods/twitter/options.php

Download:
http://www.csphere.eu/index/module/view/id/239


Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 63 - 19.07.2011 um 13:08 Uhr
Update 2011-07-19:

Changes:
- Minor fix in twitter oauth class

Changed files:
- mods/twitter/info.php
- mods/twitter/include/twitter_oauth.php

Download:
http://www.csphere.eu/index/module/view/id/239


Inaktiv
|
loonex


Try to beat me





Beiträge: 142
# Antwort: 64 - 27.08.2011 um 00:27 Uhr
Kann ich hergehen und irgentwelche Tweets als Navlist anzeigen lassen?


------------------
loonex = plynetti

Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 65 - 29.08.2011 um 20:27 Uhr
Ja eine Navlist fehlt mir persönlich auch in diesem Modul.
Ansonsten n1 work Mindcrime.


------------------
I like the part where it says 'nyan'



Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 66 - 30.08.2011 um 09:49 Uhr
Update 2011-08-30:

Deutsch (English below)

Download: http://svn.csphere.eu/module/mindcrime/mods/twitter.zip

Aenderungen:
- Benutzt neue crypt function! Wichtig, neues tools.php und das ausfuehren eines konvertierscript erfordert!
- Navlist zugefuegt
- Extra optionen: max_navlist (4), max_headline (0 = keine begrenzung tweet tekst)

Fuer benutzer mit eine altere version:
- System -> Datenbank -> Import
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('twitter', 'max_navlist', '4');
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('twitter', 'max_headline', '0');

- Download NEUES tools.php ( http://svn.csphere.eu/module/mindcrime/general/system/runstartup/tools.php )
- Zufuegen an setup.php:
$cs_main['crypt_key'] = 'mysecretkey'; // CHANGE THIS! (minimal 8 buchstaben)

- Upload dieses script im hauptverzeichniss von deiner ClanSphere installation, fuehr es nur einmal aus und loessche es dan:
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
1. / 2. / ... 
<?php
$cs_main 
= array('init_sql' => true'init_tpl' => false'init_mod' => true);

require_once 
'system/core/functions.php';

cs_init($cs_main);
@
error_reporting(E_ALL);

$rows cs_sql_select(__FILE__'twitter''twitter_id, twitter_access_secret''1=1'0000);
if (
count($rows))
{
        foreach (
$rows as $row)
        {
                
$cells = array('twitter_access_secret');
                
$values = array(
                        
base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($row['twitter_access_secret'])), $cs_main['crypt_key'])),
                );
                
cs_sql_update(__FILE__'twitter'$cells$values$row['twitter_id']);
        }
}
echo 
'Updated '.count($rows).' twitter access tokens...'."\n";

$options cs_sql_option(__FILE__'twitter');

$save = array();
$save['website_consumer_secret'] = base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($options['website_consumer_secret'])), $cs_main['crypt_key']));
$save['website_access_secret'] = base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($options['website_access_secret'])), $cs_main['crypt_key']));

require_once 
'mods/clansphere/func_options.php';

cs_optionsave('twitter'$save);

echo 
'Updated twitter options access tokens...'."\n";


English

Download: http://svn.csphere.eu/module/mindcrime/mods/twitter.zip

Changes:
- Uses new crypt method! Important, new tools.php and execution of a conversion script required!
- Added navlist
- Extra options: max_navlist (4), max_headline (0 = do not cut tweet text)

For users with a previous version:
- System -> Database -> Import
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('twitter', 'max_navlist', '4');
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('twitter', 'max_headline', '0');

- Download NEW tools.php ( http://svn.csphere.eu/module/mindcrime/general/system/runstartup/tools.php )
- Add to setup.php:
$cs_main['crypt_key'] = 'mysecretkey'; // CHANGE THIS! (minimal 8 characters)

- Upload the following script to the root of your ClanSphere installation, run it only once and then delete it:
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
1. / 2. / ... 
<?php
$cs_main 
= array('init_sql' => true'init_tpl' => false'init_mod' => true);

require_once 
'system/core/functions.php';

cs_init($cs_main);
@
error_reporting(E_ALL);

$rows cs_sql_select(__FILE__'twitter''twitter_id, twitter_access_secret''1=1'0000);
if (
count($rows))
{
        foreach (
$rows as $row)
        {
                
$cells = array('twitter_access_secret');
                
$values = array(
                        
base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($row['twitter_access_secret'])), $cs_main['crypt_key'])),
                );
                
cs_sql_update(__FILE__'twitter'$cells$values$row['twitter_id']);
        }
}
echo 
'Updated '.count($rows).' twitter access tokens...'."\n";

$options cs_sql_option(__FILE__'twitter');

$save = array();
$save['website_consumer_secret'] = base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($options['website_consumer_secret'])), $cs_main['crypt_key']));
$save['website_access_secret'] = base64_encode(cs_crypt(cs_encrypt_decrypt(base64_decode($options['website_access_secret'])), $cs_main['crypt_key']));

require_once 
'mods/clansphere/func_options.php';

cs_optionsave('twitter'$save);

echo 
'Updated twitter options access tokens...'."\n";


Inaktiv
|
loonex


Try to beat me





Beiträge: 142
# Antwort: 67 - 30.08.2011 um 15:42 Uhr
Danke! Probier ich nachher zu Hause aus!


------------------
loonex = plynetti

Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 68 - 31.08.2011 um 22:13 Uhr
Hi,
die viewsite.php gibt Daten aus aber die navlist.php leider nur
Es ist ein Fehler aufgetreten w&auml;hrend die verbindung zu Twitter.


Gruß


------------------
I like the part where it says 'nyan'



Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 69 - 31.08.2011 um 23:54 Uhr
Cache vielleicht mal klaeren, weil das wird gecached...


Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 70 - 05.09.2011 um 19:32 Uhr
Leider keine Veränderung.

'edit'
Im mods Ordner befindet sich keine navlist.php beim download Mindcrime.

Gruß


------------------
I like the part where it says 'nyan'



Zuletzt editiert von palle ClanSphere Team am 05.09.2011 um 20:30 Uhr (1x Editiert)
Inaktiv
|
Fistfunk


Beginner





Beiträge: 15
# Antwort: 71 - 05.10.2011 um 13:59 Uhr
Hallo Mindcrime? Siehst du diesen Beitrag überhaupt? Seit Wochen keine Rückmeldung..wäre schön wenn das aufgeklärt werden würde. Danke


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


Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 72 - 05.10.2011 um 16:01 Uhr
Man darf noch nicht mal im urlaub gehen... tsk...

Ok, datei war da aber nicht eingecheckt im SVN...

Hab ich jetzt gefixed...


Inaktiv
|
Fistfunk


Beginner





Beiträge: 15
# Antwort: 73 - 05.10.2011 um 16:09 Uhr
05.10.2011 um 16:01 Uhr - Mindcrime:
Man darf noch nicht mal im urlaub gehen... tsk...

Ok, datei war da aber nicht eingecheckt im SVN...

Hab ich jetzt gefixed...


Urlaub sei dir immer vergönnt...aber verdammt nochmal nie wieder ohne Smartphone und aktivem Mailaccount :-)
Dankeschön und willkommen zurück in der Hölle !


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


Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 74 - 05.10.2011 um 22:19 Uhr
Danke Mindcrime! Die Überarbeitung ist wirklich sehr gut gelungen! Vielen Dank für die Navlist.


------------------
I like the part where it says 'nyan'



Inaktiv
|
Mindcrime
Thread-Ersteller


Geekboy





Beiträge: 1155
# Antwort: 75 - 13.06.2013 um 08:32 Uhr

Da Twitter gestern anscheinend den alten API 1.0 hat abgeschaltet werden die tweets nicht mehr angezeigt.
Ich muss noch nachschauen was genau alles veraendert wurden. Aber folgenden unified diff patch laesst
auf jeden fall die tweets wieder sehen.
Erklaerung unified diff: http://de.wikipedia.org/wiki/Diff


As Twitter apparently has brought down the API 1.0 yesterday, no tweets were shown anymore.
I have to still take a look at what they exactly changed. But the following unified diff patch show the tweets
again.
Explanation unified diff: http://en.wikipedia.org/wiki/Diff#Unified_format

Index: mods/twitter/include/twitter_oauth.php
===================================================================
--- twitter_oauth.php (revision 2996)
+++ twitter_oauth.php (working copy)
@@ -63,7 +63,7 @@
const DEBUG = false;

// url for the twitter-api
- const API_URL = 'https://api.twitter.com/1';
+ const API_URL = 'https://api.twitter.com/1.1';
const SEARCH_API_URL = 'https://search.twitter.com';
const SECURE_API_URL = 'https://api.twitter.com';

@@ -363,7 +363,7 @@
* @param bool[optional] $expectJSON Do we expect JSON.
* @param bool[optional] $returnHeaders Should the headers be returned?
*/
- private function doCall($url, array $parameters = null, $authenticate = false, $method = 'GET', $filePath = null, $expectJSON = true, $returnHeaders = false)
+ private function doCall($url, array $parameters = null, $authenticate = true, $method = 'GET', $filePath = null, $expectJSON = true, $returnHeaders = false)
{
// allowed methods
$allowedMethods = array('GET', 'POST');


Zuletzt editiert von Mindcrime am 13.06.2013 um 08:32 Uhr (1x Editiert)
Inaktiv
|
Klaus-Bärbel


Beginner




Beiträge: 2
# Antwort: 76 - 29.09.2013 um 21:34 Uhr
Ich bekomme folgenden Fehler angezeigt:

"Es ist ein Fehler aufgetreten während die verbindung zu Twitter "

Installation habe ich nach Anweisung befolgt.


Inaktiv
|
Antworten: 76
Seite < 1 2 3 [4]


Sie müssen sich registrieren, um zu antworten.