Page Index Toggle Pages: 1 2 [3] 4 5 ... 14 Send TopicPrint
Very Hot Topic (More than 25 Replies) Upload Avatar Mod 1.5 Beta SP1.31 (Read 33192 times)
Larian
Senior Member
****
Offline



Posts: 316
Location: Leipzig
Joined: Oct 22nd, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #30 - Dec 18th, 2003 at 9:27am
Print Post  
Ok, thanks Smiley

It was the Browser-Cache, anything ok Smiley

----

Das kuriose dabei ist, das ich bei allen Webseiten die ich entwickle den Leuten die wegen alter Bilder fragen auch immer sage, sie sollen strg+reload drücken und diesmal dachte ich selber nicht an sowas Smiley

Lari
  
Back to top
 
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #31 - Dec 18th, 2003 at 1:04pm
Print Post  
passiert mir manchmal auch .. das ich den wald vor lauter bäumen nicht sehe ...
especially for CALIMAN : sometimes it also happens to me that i don't see the wood between all the trees  Grin ( german sentence )
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #32 - Dec 18th, 2003 at 3:30pm
Print Post  
Caliman he said:

That can lie also on that, loads would press file that in the UPDATING of the VIEW of the browser out of the CACHE... once in the profile with one newly high store avatar the STRG + updating or empty your temporary internet or is would report give download per ftp whether it also really the old... if then you again then I you the code to these avatars to the inspection.

I think.

-Jazhawk
  
Back to top
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #33 - Dec 18th, 2003 at 4:13pm
Print Post  
i see Jazhawk speeks the same language like me ...  Grin
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #34 - Dec 18th, 2003 at 7:36pm
Print Post  
Thanks. The only German I know I learned from playing 'Castle Wolfenstein' in 1982 on my Apple IIe.
Smiley
  
Back to top
WWW  
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #35 - Dec 19th, 2003 at 11:47am
Print Post  
that's " Altdeutsch " i think   Grin
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #36 - Dec 20th, 2003 at 12:06am
Print Post  
louisle wrote on Dec 18th, 2003 at 4:13pm:
i see Jazhawk speeks the same language like me ...  Grin


Bearly.   Grin

-Jazhawk
  
Back to top
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #37 - Dec 20th, 2003 at 12:12am
Print Post  
Wanna learn german? - just watch ZDF on satelite - i've heard JR from Dallas say "zum teufel"  Grin
  

If you knock your head against a brick wall and hear a hollow sound, it's not necessarily coming from the wall.
Back to top
 
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #38 - Dec 20th, 2003 at 2:57am
Print Post  
lol .. i wish i've ever heard JR blast in danish ... Wink
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #39 - Dec 23rd, 2003 at 1:46pm
Print Post  
louisle

Can this mod co exist with the gallery mod?  Step 2 is my consern.

-Jazhawk
  
Back to top
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #40 - Dec 23rd, 2003 at 2:36pm
Print Post  
yes, it can.. it should looks like that ...
Code
Select All
	if ($ENV{REQUEST_METHOD} eq 'POST') {
		if ($ENV{CONTENT_TYPE} =~ /multipart\/form-data/) {
								require CGI; import CGI qw(:standard);		my $query = new CGI;
			my $zipfile = $query->param('uplzip');
			my $avatar = $query->param('umafile');

			for(my $x=1;$x<=5;$x++) {
				$feld = "uplfoto".$x;
				my $file = $query->param($feld);
			}
		}
		else {
			read(STDIN, my $input, $ENV{CONTENT_LENGTH});
			split_string(\$input, \%FORM)
		}

	} 

  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #41 - Dec 23rd, 2003 at 2:54pm
Print Post  
I'll paste that in and give it a shot.

Shockedfftopic: I'm still not getting anything to upload in my gallary.  Now I get a "full" message but nothing is there.

-Jazhawk
  
Back to top
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #42 - Dec 23rd, 2003 at 10:16pm
Print Post  
could you upload a avatar ?
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
xtrasweetgirl
Senior Member
****
Offline



Posts: 496
Joined: Oct 8th, 2002
Gender: Female
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #43 - Dec 23rd, 2003 at 10:28pm
Print Post  
I installed your gallery mod louisle and now my users cant upload their avatars.... This two mods dont like eachother.. Is there a fix for that yet ?
  
Back to top
 
IP Logged
 
louisle
God Member
*****
Offline


With a little bit of love
everything goes better

Posts: 1124
Location: Muenchen
Joined: Apr 9th, 2003
Gender: Male
Re: Upload Avatar Mod 1.3 Beta SP1.31
Reply #44 - Dec 23rd, 2003 at 10:38pm
Print Post  
try change
Code
Select All
require CGI;
import CGI qw(:standard);
my $query = new CGI; 


to
Code
Select All
use CGI;
my $query = new CGI; 



in Subs.pl

does it works ?

greetings
louisle
  

I LIKE SAUSAGE FINGERS:2thumbsup::2thumbsup::2thumbsup::2thumbsup::2thumbsup:
Back to top
IP Logged
 
Page Index Toggle Pages: 1 2 [3] 4 5 ... 14
Send TopicPrint