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

Pages: [1] 2
1
Please if anyone knows to put this at the time validate images and If it is possible for instance to 5 uploads. Thanks  :D

2
Do this to fix that works with 1.7.11.
 thanks  :D

3
Pozdrav svima. Dali neko zna da namesti ovo da funkcionise ako je kompatibilno sa 4images 1.7.11.
Topic: [REQ}User promoted to usergroup after xx uploads? [SOLVED with details]
http://www.4homepages.de/forum/index.php?topic=17237.0

Hvala

4
To ti je zbog explorera, smanji sigurnost na bazu da snima cookies (kolacice).
Pozdrav

7
Löschen sie die config.new.php, config.php, install.php (line 107) :
date_default_timezone_set('CET');
 :wink:

8
Bosnian/Croatian/Serbian & Slovenian / Instalacija nove 4images problem
« on: September 05, 2010, 11:30:56 AM »
Zdravo!
Imam ovaj problem pri instalaciji bez ikakvih promena u fajlovima od nove 4images.
Fatal error: Call to undefined function: date_default_timezone_set() in /*********************/install.php on line 107
A modifikovao sam moju postojecu 1.7.7 i dok ne izbrisem u config.php date_default_timezone_set('CET'); ni ona ne funkcionise t.j ne otvara index. Zato sam mislio da instaliram novu scriptu pa da vidim razlike u tablama mysql i da prekopiram u postojecu 1.7.7 medjutim ni to ne radi sto sam vec rekao na pocetku.
Hvala

9
Bosnian/Croatian/Serbian & Slovenian / Re: Zastita od kopiranja
« on: February 08, 2009, 07:24:22 PM »
Ok super ostavicu ovo drugo a oko naslova midija mislim da ne mozemo nista zato sto je taj to kopirao u svoje stranice. Koliko se ja razumem dali ovo banira ulaz sa ovog sajta ili ne ?
hvala ti puno pozdrav
p.s: evo stavio sam oba ako ne smeta .
p.s2: uh nijedno mi ne odgovara ne dozvoljava mi na sranici ni jedan image ni css, postavio sam ih u htacces u templatama.  :cry:

10
Bosnian/Croatian/Serbian & Slovenian / Zastita od kopiranja
« on: February 07, 2009, 08:17:41 PM »
Zdravo Nicky
Sta da radim da zaustavim ovako nesto molim te ako mozes pomoci. Hvala
moj sajt : www.midi-matrix.com
hack : http://srybsko-midi.hit.bg/

11
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: January 09, 2009, 06:30:28 PM »
and its possible create a search form for forum ? searching in forum  :?: :idea: :cry:

12
Bosnian/Croatian/Serbian & Slovenian / Re: Dreamboard pretraga
« on: September 27, 2008, 02:27:09 PM »
Zdravo
Dali ova skripta moze da se prilagodi za Dreamboard pretragu ?.
Nije mi jasno ono" $query = "SELECT * FROM itd... field1...
hvala
Code: [Select]
<?php 

$hostname_logon 
"xxx" ;   
$database_logon "xxx" ;  
$username_logon "xxx" ;  
$password_logon "xxx" ;   
//open database connection
 
$connections mysql_connect($hostname_logon$username_logon$password_logon) or die ( "Unabale to connect to the database" );
 
//select database
 
mysql_select_db($database_logon) or die ( "Unable to select database!" );

//specify how many results to display per page
$limit 10;

// Get the search variable from URL
  
$var = @$_GET['q'] ;
//trim whitespace from the stored variable
  
$trimmed trim($var);  
//separate key-phrases into keywords
  
$trimmed_array explode(" ",$trimmed); 

// check for an empty string and display a message.
if ($trimmed == "") {
  
$resultmsg =  "<p>Search Error</p><p>Please enter a search...</p>" ;
  }

// check for a search parameter
if (!isset($var)){
  
$resultmsg =  "<p>Search Error</p><p>We don't seem to have a search parameter! </p>" ;
  }
// Build SQL Query for each keyword entered 
foreach ($trimmed_array as $trimm){
      
// EDIT HERE and specify your table and field names for the SQL query
     
$query "SELECT * FROM tablename WHERE field1 LIKE '%$trimm%' OR field2 like '%$trimm%' OR field3 like '%$trimm%' ORDER BY field1  DESC" 
     
// Execute the query to  get number of rows that contain search kewords
     
$numresults=mysql_query ($query);
     
$row_num_links_main =mysql_num_rows ($numresults);

     
// next determine if 's' has been passed to script, if not use 0.
     // 's' is a variable that gets set as we navigate the search result pages.
     
if (empty($s)) {
         
$s=0;
     }

      
// now let's get results.
      
$query .= " LIMIT $s,$limit;
      
$numresults mysql_query ($query) or die ( "Couldn't execute query" );
      
$rowmysql_fetch_array ($numresults);

      
//store record id of every item that contains the keyword in the array we need to do this to avoid display of duplicate search result.
      
do{
          
$adid_array[] = $row'fieldid' ];
      }while( 
$rowmysql_fetch_array($numresults));
 } 
//end foreach

if($row_num_links_main == && $row_set_num == 0){
   
$resultmsg "<p>Search results for: "$trimmed."</p><p>Sorry, your search returned zero results</p>" ;
}
   
//delete duplicate record id's from the array. To do this we will use array_unique function
   
$tmparr array_unique($adid_array); 
   
$i=0
   foreach (
$tmparr as $v) { 
       
$newarr[$i] = $v
       
$i++; 
   } 

// now you can display the results returned. But first we will display the search form on the top of the page
?>


<form action="search.php" method="get" name="search">
  <div align="center">
      <input name="q" type="text" value=" <?php echo $q?> " size="15">
      <input name="search" type="submit" value="Search">
  </div>
</form>

<?php
// display what the person searched for.
 
if( isset ($resultmsg)){
  echo 
$resultmsg;
  exit();
 }else{
  echo 
"Search results for: " $var;
 }
 
foreach(
$newarr as $value){
 
// EDIT HERE and specify your table and field names for the SQL query
$query_value "SELECT * FROM tablename WHERE fieldid = '$value'";
 
$num_value=mysql_query ($query_value);
 
$row_linkcatmysql_fetch_array ($num_value);
 
$row_num_linksmysql_num_rows ($num_value);

//now let's make the keywods bold. To do that we will use preg_replace function. 
//Replace field
  
$titlehigh preg_replace "'($var)'si" "<b> //1</b>" $row_linkcat'field1' ] );
  
$linkhigh preg_replace "'($var)'si" "<b> //1</b>" $row_linkcat'field2' ] );
  
$linkdesc preg_replace "'($var)'si" "<b> //1</b>" $row_linkcat'field3' ] );

foreach(
$trimmed_array as $trimm){
    if(
$trimm != 'b' ){
        
$titlehigh preg_replace"'($trimm)'si" ,  "<b> //1</b>" $titlehigh);
        
$linkhigh preg_replace"'($trimm)'si" "<b> //1</b>" $linkhigh);
        
$linkdesc preg_replace"'($trimm)'si" ,  "<b> //1</b>" $linkdesc); 
     }
//end highlight

?>

 <p>
<?php echo $titlehigh?><br>
<?php echo $linkhigh?><br>
<?php echo $linkhigh?>
</p>
 
<?php 
}   //end foreach $trimmed_array 
   
if($row_num_links_main $limit){
   
// next we need to do the links to other search result pages
      
if ($s>=1) { // do not display previous link if 's' is '0'
        
$prevs=($s-$limit);
         echo 
"<div align='left'><a href='$PHP_SELF?s=$prevs&q=$var&catid=$catid'>Previous " .$limit"</a></div>";
      }
     
// check to see if last page
     
$slimit =$s+$limit;
       if (!(
$slimit >= $row_num_links_main) && $row_num_links_main!=1) {
     
// not last page so display next link
          
$n=$s+$limit;
           echo 
"<div align='right'><a href='$PHP_SELF?s=$n&q=$var&catid=$catid'>Next " .$limit"</a></div>";
        }
    }
}  
//end foreach $newarr
?>


13
Bosnian/Croatian/Serbian & Slovenian / Re: Dreamboard problem...
« on: May 25, 2008, 12:33:02 PM »
Najbolje usnimi negde ceo sajt pre nego shto to uradish sigurno negde pishe neshto shta se deshava kad pravish update.

14
Bosnian/Croatian/Serbian & Slovenian / Re: Dreamboard problem...
« on: May 25, 2008, 10:26:16 AM »
Da nije ovde problem ja nisam instalirao taj paging.php i moj dream radi  :mrgreen:

"Requirements:
-----------------------------------------------------------------------------------------
You must install 4images script In your server or your system before this addon can work.
Please change your includes/paging.php with paging from V@no site."

15
Bosnian/Croatian/Serbian & Slovenian / Re: Dreamboard pretraga
« on: May 23, 2008, 08:33:55 PM »
Izvini shto me duze vreme nema da odgovorim odustao sam od toga .
Pozdrav  :wink:

Pages: [1] 2