Hallo Garvin,
für mich gibt es im Grunde drei Wünsche, die sich alle mehr auf die Internals von S9Y beziehen.
PHP5-only: neues Objektmodell für bessere Plugin-Struktur ausnutzen. Ich habe gerade stark das Gefühl, dass das ein kritischer Punkt ist. Ich sehe auch immer mehr Leute, die Alternativen ...
Search found 18 matches
- Sat Aug 02, 2008 8:44 pm
- Forum: Generelles in Deutsch
- Topic: Die Zukunft von Serendipity
- Replies: 160
- Views: 123252
- Fri Feb 02, 2007 1:52 pm
- Forum: Plugins
- Topic: »Heavy Rotation« - Your top album in the last week
- Replies: 26
- Views: 29817
- Fri Jan 26, 2007 3:06 pm
- Forum: General discussions
- Topic: Which PHP-Version do you use?
- Replies: 7
- Views: 5847
- Fri Jan 26, 2007 3:00 pm
- Forum: General discussions
- Topic: Which PHP-Version do you use?
- Replies: 7
- Views: 5847
- Fri Jan 26, 2007 2:36 pm
- Forum: General discussions
- Topic: Which PHP-Version do you use?
- Replies: 7
- Views: 5847
Which PHP-Version do you use?
I just want to get a feeling how wide-spreaded are newer PHP-versions in the S9Y-community. I also would like to know which fact prevent users from using PHP 5. The reason is that I want to know if it is worth adopting more and more PHP5-components and libraries (SimpleXML, DOMDocument, parts of the ...
- Fri Jan 26, 2007 12:49 pm
- Forum: Plugins
- Topic: »Heavy Rotation« - Your top album in the last week
- Replies: 26
- Views: 29817
- Fri Jan 26, 2007 12:23 pm
- Forum: Plugins
- Topic: »Heavy Rotation« - Your top album in the last week
- Replies: 26
- Views: 29817
- Fri Jan 26, 2007 11:50 am
- Forum: General discussions
- Topic: Help! The Google blog search spider isn't finding my blogs?
- Replies: 2
- Views: 2910
- Fri Jan 26, 2007 9:51 am
- Forum: General discussions
- Topic: Host Provider recommendation needed - Urgent
- Replies: 6
- Views: 5304
- Thu Jan 25, 2007 9:28 am
- Forum: Plugins
- Topic: »Heavy Rotation« - Your top album in the last week
- Replies: 26
- Views: 29817
- Thu Jan 25, 2007 9:10 am
- Forum: General discussions
- Topic: GDLib and .htaccess Problem
- Replies: 2
- Views: 3097
No, this is just working if the webhoster provides such an solution. To go into details: this is the case, when PHP 4 is configured to server .php and .php4-files and PHP 5 is configured to server .php5 files. If it is that way you can change your settings so that apache will also serve .php-files ...
- Thu Jan 25, 2007 8:57 am
- Forum: Themes
- Topic: New grungy theme - SPLAT!
- Replies: 28
- Views: 26224
- Wed Jan 24, 2007 4:57 pm
- Forum: Plugins
- Topic: Last images from Flickr
- Replies: 3
- Views: 6980
- Wed Jan 24, 2007 4:30 pm
- Forum: Plugins
- Topic: »Heavy Rotation« - Your top album in the last week
- Replies: 26
- Views: 29817
I'm generally not a friend of all-in-one plugins. I prefer sharing libraries and I would like to see a way how plugins can do this. For example my class serendipity_plugins_heavyrotation_helper_audioscrobbler provides a default way how to access the audiscrobbler API.
And, btw: change the provider ...
And, btw: change the provider ...
- Wed Jan 24, 2007 3:04 pm
- Forum: Installation
- Topic: fgets workaround?
- Replies: 4
- Views: 4063
file_get_contents(), fgetc()
Hopefully your sysadmin does not know everything about PHP so maybe he left fgetc() or file_get_contents() enabled.
Example for fgetc():
$resource = fopen(__FILE__, 'r');
$string = '';
while (!feof($resource))
$string .= fgetc($resource);
Example for file_get_contents():
$string = file_get ...
Example for fgetc():
$resource = fopen(__FILE__, 'r');
$string = '';
while (!feof($resource))
$string .= fgetc($resource);
Example for file_get_contents():
$string = file_get ...