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 - martrix

Pages: 1 ... 31 32 33 34 [35] 36 37 38
511
Installation, Update & Configuration / Re: size for label
« on: March 22, 2005, 09:41:48 AM »
well, the only way I could imagine, that gregos95 gets the thumbnail as big as the original is, that he uploads the original twice - once as the image-file and once as the thumbnail file  :|

With the "Auto image resizer" he gets only smaller image-files, but the thumbnails will stay the same - is that right?

512
Chit Chat / Re: sessionid in the address part 2
« on: March 22, 2005, 09:26:05 AM »
 8O

It will be hard to find somebody who knows...


...if even V@no doesn't.  :D

513
Installation, Update & Configuration / Re: andere Startseite
« on: March 21, 2005, 11:37:13 PM »
 8O AHA!  :D

514
Discussion & Troubleshooting / Re: Error in More than more Statistic
« on: March 21, 2005, 11:35:55 PM »
nice :)

But you may still implement the modifications recomended by effemmess and the votes-stats will then be also available...

515
Installation, Update & Configuration / Re: Can´t connect - Fehler !
« on: March 21, 2005, 11:31:57 PM »
oft kann man dies unter

mysql.deinedomain.de oder deinedomain.de/phpmyadmin

aber das ist eine Frage, die nur Dein Hosting-Provider beantworten kann  :wink:

516
Discussion & Troubleshooting / Re: another one frome me :/
« on: March 21, 2005, 11:29:53 PM »
really?  8O

Then you did not search correctly   :twisted:

Try this: Toplist Altered

There's all the information you need to change your toplist to fit you needs  :wink:
Well if you're looking for something like this -> http://photo.overlord.cz/top.php  :D

One more hint: ;)

If there's a link to a "missing" thread, try to replace the http://www.4homepages.de/forum/viewtopic.php?t=2544 with http://www.4homepages.de/forum/index.php?topic=2544 and it will work in 95 % of the links  :wink:

517
Installation, Update & Configuration / Re: andere Startseite
« on: March 21, 2005, 03:50:09 PM »
@alex:
warum versuchst Du nicht die "home.html" Datei so zu ändern, dass sie dem entschpricht, was Du Dir als Startseite vorstellst?

@dchamburg: was soll der Beitrag? Dies ist kein Werbe-Forum  :evil:

518
Mods & Plugins (Requests & Discussions) / Re: max random pic
« on: March 21, 2005, 03:40:41 PM »
huh?  :|

what do you mean with max random pic 3?

Must read before posting  :wink:
The part with the word "descriptive" should be of great interest for you  :twisted:

519
Not sure when I'll have time to post this.  :roll:

We hope soon ;)

Could you help me with the "downloads-sum"?
I guess that it is not really hard to code, but I don't know how to write MySQL queries.  :cry:

520
Discussion & Troubleshooting / Re: Error in More than more Statistic
« on: March 21, 2005, 03:26:50 PM »
and did you get it to work?  :D

521
Discussion & Troubleshooting / Re: Error in More than more Statistic
« on: March 21, 2005, 01:23:56 PM »
I understood, but...

    ... just a hint for you...

If you try to install a MOD you should:

1) Follow step by step what the author recommends you to do!
Why?
Because:
Quote from: effemmess
Mindestvoraussetzungen:
- 4images 1.7
erweiterte Voraussetzungen (nicht zwingend erforderlich aber sehr hilfreich!):
- v@no´s Votes saved in DB
- effemmess´s Extension for Votes saved in DB
- effemmess´s Old votes 2 DB

If you did not install the modifications above, then you can't have more votes-statistics, because 4images doesn't save the needed votes-information by default...
So you have 2 alternatives:
* comment (not use) the additional votes-statistics
* install the above mods

2) Ask in the mod-thread if you have a problem with getting it to work
and not open a new thread for that question / or even ask the same question twice in two differen threads  :wink:

If you comment the mentioned lines out, then you'll still have more statistics about images and users eg but not about votes - without the needed modifications you do not have the needed data  8O

522
Discussion & Troubleshooting / Re: Error in More than more Statistic
« on: March 21, 2005, 01:04:45 PM »
well... then comment these lines out:

Code: [Select]
//today new
$today_new_votes = num_votes_vtable($ts_today_at_0,0);
$lang_today_new_votes = $lang['today_new_votes'];
$site_template->register_vars("today_new_votes", $today_new_votes);
$site_template->register_vars("lang_today_new_votes", $lang_today_new_votes);
unset($today_new_votes);
unset($lang_today_new_votes);
//yesterday new
$yesterday_new_votes = num_votes_vtable($ts_yesterday_at_0,$ts_today_at_0);
$lang_yesterday_new_votes = $lang['yesterday_new_votes'];
$site_template->register_vars("yesterday_new_votes", $yesterday_new_votes);
$site_template->register_vars("lang_yesterday_new_votes", $lang_yesterday_new_votes);
unset($yesterday_new_votes);
unset($lang_yesterday_new_votes);
//this week new
$this_week_new_votes = num_votes_vtable($ts_this_monday,0);
$lang_this_week_new_votes = $lang['this_week_new_votes'];
$site_template->register_vars("this_week_new_votes", $this_week_new_votes);
$site_template->register_vars("lang_this_week_new_votes", $lang_this_week_new_votes);
unset($this_week_new_votes);
unset($lang_this_week_new_votes);
//last week new
$last_week_new_votes = num_votes_vtable($ts_last_monday,$ts_this_monday);
$lang_last_week_new_votes = $lang['last_week_new_votes'];
$site_template->register_vars("last_week_new_votes", $last_week_new_votes);
$site_template->register_vars("lang_last_week_new_votes", $lang_last_week_new_votes);
unset($last_week_new_votes);
unset($lang_last_week_new_votes);
//this month new
$this_month_new_votes = num_votes_vtable($ts_1st_of_month,0);
$lang_this_month_new_votes = $lang['this_month_new_votes'];
$site_template->register_vars("this_month_new_votes", $this_month_new_votes);
$site_template->register_vars("lang_this_month_new_votes", $lang_this_month_new_votes);
unset($this_month_new_votes);
unset($lang_this_month_new_votes);
//last month new
$last_month_new_votes = num_votes_vtable($ts_1st_of_month_before,$ts_1st_of_month);
$lang_last_month_new_votes = $lang['last_month_new_votes'];
$site_template->register_vars("last_month_new_votes", $last_month_new_votes);
$site_template->register_vars("lang_last_month_new_votes", $lang_last_month_new_votes);
unset($last_month_new_votes);
unset($lang_last_month_new_votes);
//by 10<=user_id<=20 (example!)
$from =18;
$to   =18;
$field="user_id";
$user_id_votes = num_votes_vtable($from,$to,$field);
$lang_user_id_votes = $lang['user_id_votes'];
$site_template->register_vars("user_id_votes", $user_id_votes);
$site_template->register_vars("lang_user_id_votes", $lang_user_id_votes);
unset($user_id_votes);
unset($lang_user_id_votes);
//by 1000<=image_id<=2000 (example!)
$from =1000;
$to   =2000;
$field="image_id";
$image_id_votes = num_votes_itable($from,$to,$field);
$lang_image_id_votes = $lang['image_id_votes'];
$site_template->register_vars("image_id_votes", $image_id_votes);
$site_template->register_vars("lang_image_id_votes", $lang_image_id_votes);
unset($image_id_votes);
unset($lang_image_id_votes);

 :? :?:

523
Discussion & Troubleshooting / Re: another one frome me :/
« on: March 21, 2005, 11:53:12 AM »
Please please please read this before posting a new "another one frome me" thread:

     MUST READ- Guidelines for posting questions in this forum!
(this text is not toooo long, so you might be able to master that task :wink:)

then use the

     Search Function

Your questions are already fully or partially answered - if you try search first, you might find the sollution faster then asking and waiting for somebody to find it for you!!

Your first question is partially solved - Votes saved in DB if you figure out, how to show the votes on details.php let me know ;)

Your second question: maybe you should give the search-function a chance and try to search for strings like top.php or toplist  :wink:

524
Mods & Plugins (Requests & Discussions) / Re: Statistik von V@no
« on: March 21, 2005, 10:54:35 AM »
nein - im Moment nicht.

Da beide V@no's MODs sind und er diese hier noch nicht veröffentlicht hat.

Was die "Who's Online" Statistik mit den Flaggen angeht, hat er schon angedeutet dies vieleicht mal zu posten, aber da müssen wir uns wohl nocht eine Weile gedulden ;)

525
Discussion & Troubleshooting / Re: Error in More than more Statistic
« on: March 21, 2005, 10:48:50 AM »
looks like if it asks for a table from a different modification ([MOD] Votes saved in DB)

The easiest way to fix it is to download the this file: Votes Saved in DB version A

upload the voted_a_install.php into the root of your page and open it in your browser...


The better solution would be to delet the MySQL query asking for voted_table...  :wink:

Pages: 1 ... 31 32 33 34 [35] 36 37 38