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

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 16
76
Very good idea  :idea:

That´s what I´ve missed today :lol:

I think you should post your suggestion

http://www.4homepages.de/forum/index.php?topic=7066.msg65528#msg65528

Edit: I try this MOD from icecream -> http://www.4homepages.de/forum/index.php?topic=12268.0

77
Yes, I also have installed Ban MOD, but you can see this bot works with lot of different IP´s so taht this Mod is only a solution for a few minutes...  :?

78
Pleaze HELP: spam-bot is attacking to my site :!:

Look here - there´re more than 100 comments with promotion posted :evil:



I´ve allready installed this MOD but since today... you´ll see....

79
Installation, Update & Configuration / Re: Fatal error & video problem
« on: April 02, 2006, 10:28:44 PM »
...well yes you are right... but I have two different files of this...

I´ve found something http://www.clickandgovideo.ac.uk/captions2.htm but this will use (it is) a program...

80
Quote
War noch mal auf dem Server, lag an den Rechten für Images, die waren doch nicht auf 777. Sorry! Jetzt funktioniert es einwandfrei!

Die Dateien brauchen nur CHMOD 666 - den Ordnern solltest Du 777 geben...


81
Installation, Update & Configuration / Re: bitte um Hilfe
« on: April 02, 2006, 09:57:13 PM »
Mit diesem Thread hätte sich bestimmt auch eine Lösung gefunden.

So kann man den safe_mode auch wieder aktivieren...

http://www.4homepages.de/forum/index.php?topic=6838.0

82
Ich denke eher die details.html  :wink:

83
Installation, Update & Configuration / Re: Fatal error & video problem
« on: April 02, 2006, 09:37:29 PM »
As far as I know...

The browser of the client normaly should search the plugin of this player, which is defined as standard on the actual OS...

I think they (clients which want to open *.smi-files) have choosen real-player as standard who will open *.wmv as *.smi... :idea: :?: :!:

I´m not the only one who is getting this messages in error.log...

84
Installation, Update & Configuration / Re: Fatal error & video problem
« on: April 02, 2006, 12:53:41 PM »
Hi!

In my apache error.log I get this message:
Quote
File does not exist: /var/www/*****/html/*****/data/media/42/gangster_rocker.smi

This file only exists in *.wmv format!

Why is the client searching for this file in *.smi format?

85
Mawenzi:
Quote
You don't see the "alternative" text on mouse-over, because the "alt" and the "title" option of the <img>tag has to be filled out... if you have just the "alt" option, firefox will show no mouseover "tooltip" text.

Do these changes to see quick-info of each flag also in FireFox

Find in sessions.php:
Code: [Select]
/*
  MOD VISITORS COUNTRY FLAGS
  START INSERT
*/
        $cid = geoip_country_code_by_addr($gi, $row['session_ip']);
        if (empty($cid)) $cid = "lan";
        $countries[$cid] = isset($countries[$cid]) ? $countries[$cid]+1 : 1;
        $username = "<img src=\"".ROOT_PATH."flags/".strtolower($cid).".gif"."\" alt=\"".(($cid != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$cid]] : "Unknown or LAN")."\" border=0> ".$username;
/*
  MOD VISITORS COUNTRY FLAGS
  END INSERT
*/

Replace with:
Code: [Select]
/*
  MOD VISITORS COUNTRY FLAGS
  START INSERT
*/
        $cid = geoip_country_code_by_addr($gi, $row['session_ip']);
        if (empty($cid)) $cid = "lan";
        $countries[$cid] = isset($countries[$cid]) ? $countries[$cid]+1 : 1;
        $flag = "<img src=\"".ROOT_PATH."flags/".strtolower($cid).".gif"."\" title=\"".(($cid != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$cid]] : "Unbekannt oder LAN")."\" alt=\"".(($cid != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$cid]] : "Unknown or LAN")."\" border=0>";
/*
  MOD VISITORS COUNTRY FLAGS
  END INSERT
*/

Now find:
Code: [Select]
/*
  MOD VISITORS COUNTRY FLAGS
  START INSERT
*/
  $invitado_online_list = array();
  if (!empty($countries))
  {
    asort($countries);
    foreach ($countries as $key => $val)
    {
      $invitado_online_list[] = "<font color=\"#00FFFF\">".$val."</font><img src=\"".ROOT_PATH."/flags/".strtolower($key).".gif\" align=\"middle\" alt=\"".(($key != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$key]] : "Unknown or LAN")."\" border=0>";
    }
  }
  $invitado_online_list = implode(" , ", $invitado_online_list);
/*
  MOD VISITORS COUNTRY FLAGS
  END INSERT
*/

Replace with:
Code: [Select]
/*
  MOD VISITORS COUNTRY FLAGS
  START INSERT
*/
  $invitado_online_list = array();
  if (!empty($countries))
  {
    asort($countries);
    foreach ($countries as $key => $val)
    {
      $invitado_online_list[] = "<font color=\"#000000\">".$val." </font><img src=\"".ROOT_PATH."/flags/".strtolower($key).".gif\" align=\"middle\" title=\"".(($key != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$key]] : "Unknown or LAN")."\" alt=\"".(($key != "lan") ? $gi->GEOIP_COUNTRY_NAMES[$gi->GEOIP_COUNTRY_CODE_TO_NUMBER[$key]] : "Unknown or LAN")."\" border=0>";
    }
  }
  $invitado_online_list = implode(" , ", $invitado_online_list);
/*
  MOD VISITORS COUNTRY FLAGS
  END INSERT
*/

Please check out which kind of flags you´re using e.g. *.gif or *.png !

Ciao by Flo

86
There´s another MOD available which you can use for comments & guestbook!

Look here -> http://www.4homepages.de/forum/index.php?topic=11405.0

Ciao by Flo

87
@Ameenov

Yes you are right! You must also edit register.php

find:
Code: [Select]
else {
        $msg .= (($msg != "") ? "<br />" : "").$lang['invalid_email_format'];
        $error = 1;
      }

Add after:
Code: [Select]
      if ($user_email != $user_email2) {
    $msg .= (($msg != "") ? "<br />" : "").$lang['update_email_confirm_error'];
    $error = 1;
  }
  if ($user_email == "" || $user_email2 == "") {
    $msg .= (($msg != "") ? "<br />" : "").$lang['update_email_error'];
    $error = 1;
  }

Try this :wink:

88
Discussion & Troubleshooting / Re: Repeat email when register
« on: February 27, 2006, 01:18:48 PM »
Ja, aber wie mache ich das?

Welche Befehle benötige ich dafür?

THX by Flo

Edit: Sorry I´ve got it -> http://www.4homepages.de/forum/index.php?topic=8013.0

89
Discussion & Troubleshooting / Re: Repeat email when register
« on: February 27, 2006, 01:01:29 PM »
Nein, ich will das die User 2mal ihre Emailadresse eingeben müssen um sicher zu gehen, dass diese auch stimmt und ich in Zukunft nicht so oft error-mails bekomme.

90
Discussion & Troubleshooting / Re: Admin area very slow to load
« on: February 27, 2006, 06:50:19 AM »
Yes and No  :lol:

Checking for new thumbnails is very slow, but generating of thumbnails is very fast.

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 16