Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Konqueror

Pages: [1]
1
Info sent out. Thanks for helping out people, let's make this the best gallery system around! :)

2
Discussion & Troubleshooting / Parse error
« on: June 29, 2002, 11:20:35 AM »
Wäre hilfreich wenn du den code aus member.php Zeile 726 hier posten könntest. (denn ich nehme mal an dass dies durch eine Codeveränderung herbeigeführt wurde) ;)

3
Installation, Update & Configuration / 4images is spyware :(
« on: June 27, 2002, 05:48:26 PM »
All major PHP/Perl scripts I know of "call home". vBulletin, UBB (not sure about that, but I think so), Miva Merchant etc. This is to make sure that you actually follow the license agreement, which you actually didn't follow...  :roll: This software is free, the least you can do is showing your respect for the author by not removing the copyright notice.  :evil:

4
250$ ? *hellhörig werd* ;)
Ich hab zwar für die nächsten Wochen schon genug Aufträge, sollte sich aber niemand sonst finden biete ich gerne meine Dienste an. :)
Was ich bisher gemacht habe? Ein paar hacks für vBulletin und ein import script von dem JawBraker Forum System zu vBulletin für guru3d.com. Derzeitige Aufträge sind 3 kleine PHP Skripte für guru3d.com und somethingleet.com. Dazu kommt noch ein komplettes CMS mit online WYSIWYG editor (PHP/mySQL gestützt) für guru3d.com. Zur Zeit arbeite ich an einer Portierung von 4images zu vBulletin, welche fast abgeschlossen ist.

5
Im shell (telnet, ssh) sollte das mit chmod 755 -R /www/ gehen

(/www/ steht für den internet folder, also bitte ersetzen)

6
Well, it's about time, right? :) I've set up a testing page as I'm sure it still holds loads of bugs, but the basic functions are all there. :) Anyway, anyone who's interested in helping me out and taking a first look, leave a message here or send me a PM, I'll send you the URL then.
Sorry, no public testing.

------------------------------------------------------------------------------------
Nun denn, es ist an der Zeit. :) Ich habe eine Testseite eingerichtet da ich sicher bin dass noch viele Fehler vorhanden sind, auch wenn die Grundfunktionen alle funktionieren. :) Wie auch immer, jeder der Interesse daran hat mir zu helfen und einen ersten Blick darauf werfen will soll bitte hier eine Nachricht hinterlassen oder mir eine PN schicken, ich werde euch dann den URL geben.
Es ist leider kein öffentlicher Test geplant.

7
I guess I'll set up a testing page once I hit the RC (release canditate) stage. :)

8
This time I'll only say "less than a week". ;)

9
Sorry for not updating you guys for such a long time. Anyway, here's the status:
Template integration: 100%
Database integration: 100% (That is, using vBulletin's exisiting mySQL connection instead of establishing a second one)
User integration: 0%

10
Mods & Plugins (Requests & Discussions) / Second Random Image
« on: June 13, 2002, 11:24:08 PM »
Yes indeed, I think there's a random image cache... I'll take a quick look at it, maybe I can throw smth. together. :)

11
If you'd like to betatest it, please send me a PN. :)
User integration isn't working yet, but the templates are really almost done now. ;) The weather was just too nice to really do that much work, heh. :)

12
Mods & Plugins (Requests & Discussions) / Second Random Image
« on: June 13, 2002, 03:29:03 PM »
OK, here's my *guess* on how it should work...
In page_header.php replace
Code: [Select]
$random_image = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image();
$site_template->register_vars("random_image", $random_image);
unset($random_image);

with
Code: [Select]
$random_image = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image();
$random_image2 = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image();
$site_template->register_vars("random_image", $random_image);
$site_template->register_vars("random_image2", $random_image2);
unset($random_image);
unset($random_image2);


Now copy {if random_image} till {endif random_image} in your templates, paste it where you want it and then change random_image to random_image2 in the second instance.
Nope, I didn't test this, but if you want you can try. (I think it should work) ;)

13
Well, my guess was a little off target, but I'll be done with template integration today. :) Seems as if I'll have to do the session/cookie integration myself though. :(
BTW, I haven't changed anything in the database, so if you've already got this installed on your site, you just have to replace the files and you're done. :)

14
I've successfully integrated the main page and the categories listing so far. Everything seems to be going quite well, I *think* I'll be done with it tomorrow. :) After that step there will still be some things missing, but I'll take a look when I'm done with my current task, heh. :)

15
I'm currently working on a full template integration with vBulletin. I'll keep you guys posted on this. :)
@Robert9: Maybe we can work together on this one, as you've already got the user integration complete?

Pages: [1]