FMFREE Форуми







   FMFREE Форуми -> Системи   

някои които разбира повече от мен

Създайте нова тема   Тази тема е заключена - не можеш да отговаряте или да променяте мнения Страница 1 от 1
Предишната тема :: Следващата тема  
  Автор Съобщение
stefan122
linux Fan

<b>linux<font color=red> Fan</font>


Репутация: 117    

Регистриран на: 20 Aug 2008
Мнения: 7741


320 FM

МнениеПуснато на: Mon Dec 22, 2008 12:50 pm    Заглавие: някои които разбира повече от мен Отговорете с цитат

.........

Последната промяна е направена от stefan122 на Mon Jul 06, 2009 15:07 pm; мнението е било променяно общо 3 пъти
 
Вижте профила на потребителя Изпратете лично съобщение
Double
'



Репутация: 25    

Регистриран на: 29 Nov 2008
Мнения: 1694
Местожителство: Незнаааааам.

0 FM

МнениеПуснато на: Mon Dec 22, 2008 13:27 pm    Заглавие: Отговорете с цитат

Код:
<?
   session_start();
   include("config.php");
   $att_path = "./uploads";
   $paypal_item = $sitename." Service Monthly Subscription";
   $paypal_item_number = $sitename;
   $mainipn = $siteurl."/ipn.php";
   $paypal_ipn = $siteurl."/site_ipn.php";
   $paypal_cancel_return = $siteurl."/cancel.php";
   $paypal_return = $siteurl."/thanks.php";
   $this->min_pass_length=8;
   $this->max_pass_length=12;
   $this->chars='abcdefghijklmnopqrstuvwxyz0123456789';
   $logfile = [b]"logfile.txt"[/b];
   $postmode = 1;
   $invalidcode = "<table bgcolor=#ffffff cellpadding=4 width=170><tr><td align=center><font size=2><b>Invalid Button Code!</b><p>Run Your Own PayPal Donation Campaigns at <a href=$siteurl/join.php>$sitename</a></font></table>";
   $table1 = "<TABLE class=design bgColor=#ffffff cellPadding=3 cellSpacing=0 width=100% border='1' BORDERCOLOR='#C0C0C0' STYLE='border-collapse: collapse'>";
   $table2 = "<TABLE class=design bgColor=#ffffff cellPadding=3 cellSpacing=0 width=100% border='1' BORDERCOLOR='#C0C0C0' STYLE='border-collapse: collapse'>";
   $table3 = "<TABLE class=design bgColor=#ffffff cellPadding=3 cellSpacing=0 width=100% border='1' BORDERCOLOR='#C0C0C0' STYLE='border-collapse: collapse'>";

   @mysql_connect($dbServer, $dbUser, $dbPass) or die("Couldn't connect to database server: " . mysql_error());
   @mysql_select_db($dbName) or die("Couldn't connect to database: " . mysql_error());
   
   function errform($msg, $var = ''){
      global $posterr, $_POST;
      $posterr = 1;
      echo "<div style='color: #FF0000;'>$msg</div>";
      if ($var) $_POST[$var] = '';
   }
   
   function addreport($user,$site,$status){
      mysql_query("INSERT INTO report SET user='$user',site='$site',status='$status',date='".time()."'");
   }

   function quickcheck($host,$port){
      $running = @fsockopen($host, $port, $errno, $errstr, 30);
      if (!$running){
         return 0;
      }else  {
         fclose($running);
         return 1;
      }
   }

   function fullstatus($host){
      $services = array(
         "http"=>"80",
         "ssh"=>"22",
         "ftp"=>"21",
         "smtp"=>"25",
         "pop3"=>"110",
         "mysql"=>"3306");

      $date = date("l, M d, Y - h:i:s A");
?>
      <p><font face="Arial" size="2"><b>System Status: <?= $host ?></b></font><br>Time: <?= $date ?></p>
      <font face="Arial" size="2">
      <p><table>
      <tr bgcolor="#5590CC"><td>Status</td><td>Service</td><td>Host</td></tr>
<?
      foreach ($services as $name=>$port){
         $running = @fsockopen($host, $port, $errno, $errstr, 30);
         if (!$running){
            $status_color = "red";
            $status_sign = "X";
         }else  {
            fclose($running);
            $status_color = "green";
            $status_sign = "&nbsp;";
         }
         echo "<tr><td align=center><div align=\"center\" style=\"font-size: 20pt; border: 2px solid $status_color; color:$status_color;\" width=\"15\" height=\"15\">$status_sign</div></td><td>$name</td><td>$host</td></tr>";
      }
?>
      </table></p>
<?
   }
   function writecombo($array_name, $name, $selected = "", $start = 0, $add_text = "", $add_text2 = "") {
      $length = count ($array_name);
      if (($array_name == "") || ($length == 0)){
         echo "<select name=\"$name\"></select>\n";
      }else{
         echo "<select name=\"$name\" $add_text $add_text2>\n";
         while (list($key, $val) = @each($array_name)) {
            if( !is_array($val) ){
               $select_name = $val;
               $i = $key;
               echo "  <option value=\"$i\"";
               if ($i == $selected){
                  echo " selected";
               }
               echo ">$select_name</option>\n";
            }
         }
         echo "</select>\n";
      }
   }

   function myround($amt,$dec="3"){
      ob_start();
      if($dec == 2){
         printf("%6.2f",$amt);
      }else{
         printf("%6.3f",$amt);
      }
      $amount = ob_get_contents();
      ob_end_clean();
      $amount = str_replace(" ","",$amount);
      return $amount;
   }

   class fptime{
      function fptime(){
         return 1;
      }

      function mytime($stamp="",$format="m/d/Y"){
         return date( $format,($stamp ? $stamp : time()) );
      }

      function stamp($mm,$dd,$yy,$hh=0,$min=0,$sec=0){
         return mktime($hh,$min,$sec,$mm,$dd,$yy);
      }

      function subhours($interval,$mm,$dd,$yy,$hh,$m,$s){
         return $this->stamp( $mm,$dd,$yy,($hh-$interval),$m,$s );
      }

      function addhours($interval,$mm,$dd,$yy,$hh,$m,$s){
         return $this->stamp( $mm,$dd,$yy,($hh+$interval),$m,$s );
      }

      function subdays($interval,$mm,$dd,$yy){
         return $this->stamp($mm,($dd-$interval),$yy);
      }

      function adddays($interval,$mm,$dd,$yy,$hh=0,$min=0,$sec=0){
         return $this->stamp($mm,($dd+$interval),$yy,$hh,$min,$sec);
      }

      function submonths($interval,$mm,$dd,$yy){
         return $this->stamp( ($mm-$interval),$dd,$yy );
      }

      function addmonths($interval,$mm,$dd,$yy){
         return $this->stamp( ($mm+$interval),$dd,$yy );
      }

      function subyears($interval,$mm,$dd,$yy){
         return $this->stamp( $mm,$dd,($yy-$interval) );
      }

      function addyears($interval,$mm,$dd,$yy){
         return $this->stamp( $mm,$dd,($yy+$interval) );
      }

      function DateDiff ($interval, $date1,$date2) {
         // get the number of seconds between the two dates
         $timedifference =  $date2 - $date1;
         switch ($interval) {
            case "w":
               $retval = $timedifference/604800;
               $retval = floor($retval);
               break;
            case "d":
               $retval = $timedifference/86400;
               $retval = floor($retval);
               break;
            case "h":
               $retval = $timedifference/3600;
               $retval = floor($retval);
               break;
            case "n":
               $retval = $timedifference/60;
               $retval = floor($retval);
               break;
            case "s":
               $retval  = floor($timedifference);
               break;
         }
         return $retval;
      }

      function dateNow($format="%Y%m%d"){
         return(strftime($format,time()));
      }

      function dateToday(){
         $ndate = time();
         return( $ndate );
      }

      function daysInMonth($month="",$year=""){
         if(empty($year)) {
            $year = $this->dateNow("%Y");
         }
         if(empty($month)) {
            $month = $this->dateNow("%m");
         }
         if($month == 2) {
            if($this->isLeapYear($year)) {
               return 29;
            } else {
               return 28;
            }
         } elseif($month == 4 or $month == 6 or $month == 9 or $month == 11) {
            return 30;
         } else {
            return 31;
         }
      }

      function isLeapYear($year=""){
         if(empty($year)) {
            $year = $this->dateNow("%Y");
         }
         if(strlen($year) != 4) {
            return false;
         }
         if(preg_match("/\D/",$year)) {
            return false;
         }
         return (($year % 4 == 0 && $year % 100 != 0) || $year % 400 == 0);
      }
   }
   $month_values= array(
      "0"=>"--",
      "1"=>"Jan",
      "2"=>"Feb",
      "3"=>"Mar",
      "4"=>"Apr",
      "5"=>"May",
      "6"=>"Jun",
      "7"=>"Jul",
      "8"=>"Aug",
      "9"=>"Sep",
      "10"=>"Oct",
      "11"=>"Nov",
      "12"=>"Dec",
   );
   $day_values= array(
      "0"=>"--",
      "1"=>"1",
      "2"=>"2",
      "3"=>"3",
      "4"=>"4",
      "5"=>"5",
      "6"=>"6",
      "7"=>"7",
      "8"=>"8",
      "9"=>"9",
      "10"=>"10",
      "11"=>"11",
      "12"=>"12",
      "13"=>"13",
      "14"=>"14",
      "15"=>"15",
      "16"=>"16",
      "17"=>"17",
      "18"=>"18",
      "19"=>"19",
      "20"=>"20",
      "21"=>"21",
      "22"=>"22",
      "23"=>"23",
      "24"=>"24",
      "25"=>"25",
      "26"=>"26",
      "27"=>"27",
      "28"=>"28",
      "29"=>"29",
      "30"=>"30",
      "31"=>"31",
   );
?>
 
Вижте профила на потребителя Изпратете лично съобщение
stefan122
linux Fan

<b>linux<font color=red> Fan</font>


Репутация: 117    

Регистриран на: 20 Aug 2008
Мнения: 7741


320 FM

МнениеПуснато на: Mon Dec 22, 2008 14:12 pm    Заглавие: Отговорете с цитат

сега пък показва друга грешка във същия файл но на друг ред sad
 
Вижте профила на потребителя Изпратете лично съобщение
Double
'



Репутация: 25    

Регистриран на: 29 Nov 2008
Мнения: 1694
Местожителство: Незнаааааам.

0 FM

МнениеПуснато на: Mon Dec 22, 2008 17:49 pm    Заглавие: Отговорете с цитат

направи посочения .txt документ
 
Вижте профила на потребителя Изпратете лично съобщение
stefan122
linux Fan

<b>linux<font color=red> Fan</font>


Репутация: 117    

Регистриран на: 20 Aug 2008
Мнения: 7741


320 FM

МнениеПуснато на: Mon Dec 22, 2008 17:53 pm    Заглавие: Отговорете с цитат

Double написа:
направи посочения .txt документ


кои текстов файл и какво да го направя ?
 
Вижте профила на потребителя Изпратете лично съобщение
Blue_man99
Спи във форума

Спи във форума


Репутация: 21    

Регистриран на: 01 Dec 2008
Мнения: 1309
Местожителство: Вкъщи :)

4 FM

МнениеПуснато на: Tue Dec 23, 2008 0:27 am    Заглавие: Отговорете с цитат

Welcome to the first and only - user donations supported free web hosting service. We provide you will the most reliable and feature-rich web hosting service without advertising. Lightning fast website loading speed, zero downtime, fanatic user support and instant activation - that is why you will love doing business with 000webhost.com - $0.00 webhost
1500 MB Disk Space, 100 GB Data Transfer

We have enough room for your website, emails and databases. All our servers are also connected to dedicated 10mbps internet lines, so we can give you 100 GB data transfer absolutely free.
PHP with MySQL Database Support

Unlike other free webhosts we do support PHP and MySQL with no restrictions. You get full access to the latest version of PHP and MySQL. The following PHP features are fully supported:

* PHP mail() function and Sendmail
* Curl, GD2 library, ImageMagick, Zend
* fopen() and PHP sockets
* safe_mode is OFF, file uploads ON
* Zend Optimizer support, Ioncube loader.. and much more features are enabled

cPanel Control Panel

cPanel is the most advanced control panel in industry. It has tons of features and it is easy to use even for newbie. Interactive help, video tutorials will help you to understand why cPanel is the best and you will never want to switch to anything else. cPanel is widely used by the paid hosts, but we are giving you it absolutely free!
Check our cPanel Demo.
Fantastico De Luxe 1-Click Autoinstaller

Finally! We are the first free web hosting company that gives you access to Fantastico Autoinstatler. Fantastico is a system designed to make installing popular scripts easy. If you want to improve your web site with a discussion forum or an online gallery to show everyone your latest holiday snaps, you can. With a few clicks of your mouse your web site will be transformed into a fantastic resource for you, your business or your family.

Fantastico can install over 40 popular scripts such as: Drupal, Geeklog, Joomla, Xoops, WordPress, b2evolution, Support Logic Helpdesk, phpBB2, SMF, OS Commerce, ViPER Guestbook, Coppermine Photo Gallery, PhpWiki, PHPauction, WebCalendar and more. To see full list of available installations click here.
Website Builder Software

Our hosting is supercharged with SiteReptile website builder. SiteReptile is the easiest to use website builder in the market. Just 3 steps (enter your login details, select one of 330 high quality templates and click 'publish') and your website is ready online for editing. Just one click - and you have subpage created or contact form inserted.
Frequency Asked Questions!

* Why it's all free? How do you earn?
We have 3 funding sources: we own paid hosting company, and we have strong financial ground; our service is user donations supported - each day we receive donations from happy users; and finally, we earn by offering paid upgrades for those who need more disk space and more services.

* How long your hosting will be free?
Forever! Now we are 4 years in paid hosting business and over a year in free hosting market and we don't see any problems to keep everything up and running.

* What are your guarantees?
1. We own all servers. No one can shut down or reload any server with your data.
2. Bandwidth will never run out, we have dedicated 10mbits connection lines on each server.
3. All accounts are backed up every 30 days and stored on remote server. You can also generate and download your account backup from cPanel 24 hours a day, 365 days a year.

 
Вижте профила на потребителя Изпратете лично съобщение Изпрати мейла
stefan122
linux Fan

<b>linux<font color=red> Fan</font>


Репутация: 117    

Регистриран на: 20 Aug 2008
Мнения: 7741


320 FM

МнениеПуснато на: Tue Dec 23, 2008 7:02 am    Заглавие: Отговорете с цитат

K!K0 написа:
Welcome to the first and only - user donations supported free web hosting service. We provide you will the most reliable and feature-rich web hosting service without advertising. Lightning fast website loading speed, zero downtime, fanatic user support and instant activation - that is why you will love doing business with 000webhost.com - $0.00 webhost
1500 MB Disk Space, 100 GB Data Transfer

We have enough room for your website, emails and databases. All our servers are also connected to dedicated 10mbps internet lines, so we can give you 100 GB data transfer absolutely free.
PHP with MySQL Database Support

Unlike other free webhosts we do support PHP and MySQL with no restrictions. You get full access to the latest version of PHP and MySQL. The following PHP features are fully supported:

* PHP mail() function and Sendmail
* Curl, GD2 library, ImageMagick, Zend
* fopen() and PHP sockets
* safe_mode is OFF, file uploads ON
* Zend Optimizer support, Ioncube loader.. and much more features are enabled

cPanel Control Panel

cPanel is the most advanced control panel in industry. It has tons of features and it is easy to use even for newbie. Interactive help, video tutorials will help you to understand why cPanel is the best and you will never want to switch to anything else. cPanel is widely used by the paid hosts, but we are giving you it absolutely free!
Check our cPanel Demo.
Fantastico De Luxe 1-Click Autoinstaller

Finally! We are the first free web hosting company that gives you access to Fantastico Autoinstatler. Fantastico is a system designed to make installing popular scripts easy. If you want to improve your web site with a discussion forum or an online gallery to show everyone your latest holiday snaps, you can. With a few clicks of your mouse your web site will be transformed into a fantastic resource for you, your business or your family.

Fantastico can install over 40 popular scripts such as: Drupal, Geeklog, Joomla, Xoops, WordPress, b2evolution, Support Logic Helpdesk, phpBB2, SMF, OS Commerce, ViPER Guestbook, Coppermine Photo Gallery, PhpWiki, PHPauction, WebCalendar and more. To see full list of available installations click here.
Website Builder Software

Our hosting is supercharged with SiteReptile website builder. SiteReptile is the easiest to use website builder in the market. Just 3 steps (enter your login details, select one of 330 high quality templates and click 'publish') and your website is ready online for editing. Just one click - and you have subpage created or contact form inserted.
Frequency Asked Questions!

* Why it's all free? How do you earn?
We have 3 funding sources: we own paid hosting company, and we have strong financial ground; our service is user donations supported - each day we receive donations from happy users; and finally, we earn by offering paid upgrades for those who need more disk space and more services.

* How long your hosting will be free?
Forever! Now we are 4 years in paid hosting business and over a year in free hosting market and we don't see any problems to keep everything up and running.

* What are your guarantees?
1. We own all servers. No one can shut down or reload any server with your data.
2. Bandwidth will never run out, we have dedicated 10mbits connection lines on each server.
3. All accounts are backed up every 30 days and stored on remote server. You can also generate and download your account backup from cPanel 24 hours a day, 365 days a year.



Какво да го правя това ? sad
 
Вижте профила на потребителя Изпратете лично съобщение
Onlysses
Модератор

Модератор


Репутация: 130    

Регистриран на: 14 Jul 2008
Мнения: 4430
Местожителство: Нямам.

79 FM

МнениеПуснато на: Tue Dec 23, 2008 8:00 am    Заглавие: Отговорете с цитат

stefan122 написа:
K!K0 написа:
Welcome to the first and only - user donations supported free web hosting service. We provide you will the most reliable and feature-rich web hosting service without advertising. Lightning fast website loading speed, zero downtime, fanatic user support and instant activation - that is why you will love doing business with 000webhost.com - $0.00 webhost
1500 MB Disk Space, 100 GB Data Transfer

We have enough room for your website, emails and databases. All our servers are also connected to dedicated 10mbps internet lines, so we can give you 100 GB data transfer absolutely free.
PHP with MySQL Database Support

Unlike other free webhosts we do support PHP and MySQL with no restrictions. You get full access to the latest version of PHP and MySQL. The following PHP features are fully supported:

* PHP mail() function and Sendmail
* Curl, GD2 library, ImageMagick, Zend
* fopen() and PHP sockets
* safe_mode is OFF, file uploads ON
* Zend Optimizer support, Ioncube loader.. and much more features are enabled

cPanel Control Panel

cPanel is the most advanced control panel in industry. It has tons of features and it is easy to use even for newbie. Interactive help, video tutorials will help you to understand why cPanel is the best and you will never want to switch to anything else. cPanel is widely used by the paid hosts, but we are giving you it absolutely free!
Check our cPanel Demo.
Fantastico De Luxe 1-Click Autoinstaller

Finally! We are the first free web hosting company that gives you access to Fantastico Autoinstatler. Fantastico is a system designed to make installing popular scripts easy. If you want to improve your web site with a discussion forum or an online gallery to show everyone your latest holiday snaps, you can. With a few clicks of your mouse your web site will be transformed into a fantastic resource for you, your business or your family.

Fantastico can install over 40 popular scripts such as: Drupal, Geeklog, Joomla, Xoops, WordPress, b2evolution, Support Logic Helpdesk, phpBB2, SMF, OS Commerce, ViPER Guestbook, Coppermine Photo Gallery, PhpWiki, PHPauction, WebCalendar and more. To see full list of available installations click here.
Website Builder Software

Our hosting is supercharged with SiteReptile website builder. SiteReptile is the easiest to use website builder in the market. Just 3 steps (enter your login details, select one of 330 high quality templates and click 'publish') and your website is ready online for editing. Just one click - and you have subpage created or contact form inserted.
Frequency Asked Questions!

* Why it's all free? How do you earn?
We have 3 funding sources: we own paid hosting company, and we have strong financial ground; our service is user donations supported - each day we receive donations from happy users; and finally, we earn by offering paid upgrades for those who need more disk space and more services.

* How long your hosting will be free?
Forever! Now we are 4 years in paid hosting business and over a year in free hosting market and we don't see any problems to keep everything up and running.

* What are your guarantees?
1. We own all servers. No one can shut down or reload any server with your data.
2. Bandwidth will never run out, we have dedicated 10mbits connection lines on each server.
3. All accounts are backed up every 30 days and stored on remote server. You can also generate and download your account backup from cPanel 24 hours a day, 365 days a year.



Какво да го правя това ? sad
'

Офф, остави го тоя. Само спами. Копва неща и ги поства..
 
Вижте профила на потребителя Изпратете лично съобщение
stefan122
linux Fan

<b>linux<font color=red> Fan</font>


Репутация: 117    

Регистриран на: 20 Aug 2008
Мнения: 7741


320 FM

МнениеПуснато на: Tue Dec 23, 2008 8:13 am    Заглавие: Отговорете с цитат

OnlysseS написа:
stefan122 написа:
K!K0 написа:
Welcome to the first and only - user donations supported free web hosting service. We provide you will the most reliable and feature-rich web hosting service without advertising. Lightning fast website loading speed, zero downtime, fanatic user support and instant activation - that is why you will love doing business with 000webhost.com - $0.00 webhost
1500 MB Disk Space, 100 GB Data Transfer

We have enough room for your website, emails and databases. All our servers are also connected to dedicated 10mbps internet lines, so we can give you 100 GB data transfer absolutely free.
PHP with MySQL Database Support

Unlike other free webhosts we do support PHP and MySQL with no restrictions. You get full access to the latest version of PHP and MySQL. The following PHP features are fully supported:

* PHP mail() function and Sendmail
* Curl, GD2 library, ImageMagick, Zend
* fopen() and PHP sockets
* safe_mode is OFF, file uploads ON
* Zend Optimizer support, Ioncube loader.. and much more features are enabled

cPanel Control Panel

cPanel is the most advanced control panel in industry. It has tons of features and it is easy to use even for newbie. Interactive help, video tutorials will help you to understand why cPanel is the best and you will never want to switch to anything else. cPanel is widely used by the paid hosts, but we are giving you it absolutely free!
Check our cPanel Demo.
Fantastico De Luxe 1-Click Autoinstaller

Finally! We are the first free web hosting company that gives you access to Fantastico Autoinstatler. Fantastico is a system designed to make installing popular scripts easy. If you want to improve your web site with a discussion forum or an online gallery to show everyone your latest holiday snaps, you can. With a few clicks of your mouse your web site will be transformed into a fantastic resource for you, your business or your family.

Fantastico can install over 40 popular scripts such as: Drupal, Geeklog, Joomla, Xoops, WordPress, b2evolution, Support Logic Helpdesk, phpBB2, SMF, OS Commerce, ViPER Guestbook, Coppermine Photo Gallery, PhpWiki, PHPauction, WebCalendar and more. To see full list of available installations click here.
Website Builder Software

Our hosting is supercharged with SiteReptile website builder. SiteReptile is the easiest to use website builder in the market. Just 3 steps (enter your login details, select one of 330 high quality templates and click 'publish') and your website is ready online for editing. Just one click - and you have subpage created or contact form inserted.
Frequency Asked Questions!

* Why it's all free? How do you earn?
We have 3 funding sources: we own paid hosting company, and we have strong financial ground; our service is user donations supported - each day we receive donations from happy users; and finally, we earn by offering paid upgrades for those who need more disk space and more services.

* How long your hosting will be free?
Forever! Now we are 4 years in paid hosting business and over a year in free hosting market and we don't see any problems to keep everything up and running.

* What are your guarantees?
1. We own all servers. No one can shut down or reload any server with your data.
2. Bandwidth will never run out, we have dedicated 10mbits connection lines on each server.
3. All accounts are backed up every 30 days and stored on remote server. You can also generate and download your account backup from cPanel 24 hours a day, 365 days a year.



Какво да го правя това ? sad
'

Офф, остави го тоя. Само спами. Копва неща и ги поства..



sad sad Тъжен sad sad нещо трябва да се прави този файл ама какво ?

никои ли не може да ми помогне > ще дам и точки за решаване на проблема! naughty cy_question1
 
Вижте профила на потребителя Изпратете лично съобщение
greener^^
Активен

Активен


Репутация: 0    

Регистриран на: 04 Jul 2009
Мнения: 122


253 FM

МнениеПуснато на: Sun Jul 05, 2009 11:07 am    Заглавие: Отговорете с цитат

Пробвай друг хостинг Намигане
000webspace е слаба работа Усмивка
Бъгнат хостинг Намигане
_________________
 
Вижте профила на потребителя Изпратете лично съобщение Посетете сайта на потребителя
georgi bancov
Супер активен

Супер активен


Репутация: 1    

Регистриран на: 06 Jul 2009
Мнения: 184
Местожителство: Bulgaria

680 FM

МнениеПуснато на: Mon Jul 06, 2009 14:18 pm    Заглавие: Отговорете с цитат

като гледам никаква грешка не дава?
_________________

Търсене в интернет
 
Вижте профила на потребителя Изпратете лично съобщение Посетете сайта на потребителя
Създайте нова тема   Тази тема е заключена - не можеш да отговаряте или да променяте мнения Страница 1 от 1

   FMFREE Форуми -> Системи   


 
Идете на:  
Не Можете да пускате нови теми
Не Можете да отговаряте на темите
Не Можете да променяте съобщенията си
Не Можете да изтривате съобщенията си
Не Можете да гласувате в анкети