Analgiins Posted October 4, 2004 Report Share Posted October 4, 2004 a vot man interesē tāda lieta kā failu uplodošana, kad php konfigurācijas failā file_uploads = Off. Vai tas ir iespējams ar php scriptu? Neprasu jau uzreiz gatavu kodu, vismaz funkcijas, uz ko skatīties, pieeju šai lietai etc... Link to comment Share on other sites More sharing options...
Kaklz Posted October 4, 2004 Report Share Posted October 4, 2004 atkarīgs no faila. ja tevi interesē parasts teksta fails, tad ņem un ieliec lapā <textarea> elementu un liec apmeklētājiem ar copy -> paste ielikt faila saturu attiecīgajā laukā. Ja dati ir bināri (bildes, arhīvi, programmas, utt) tad tas neies cauri. Link to comment Share on other sites More sharing options...
Analgiins Posted October 4, 2004 Author Report Share Posted October 4, 2004 sorry, aizmirsu piebilst, ka failus vaidzeetu uplodot uz FTP servera (nu tjip no sava kompja uz eclub.lv) Link to comment Share on other sites More sharing options...
Venom Posted October 4, 2004 Report Share Posted October 4, 2004 bez kādas uz klienta datora ielādējamas programmas būs slikti Link to comment Share on other sites More sharing options...
Analgiins Posted October 4, 2004 Author Report Share Posted October 4, 2004 nu programmu jau ir daudz un dazhaadu, es lietoju FileZilla. Pats no sava servera un savaam PHP konfiguraacijaam varu uploadot, vienkaarshi intereseeja, vai ir iespeejams citaadi.. nu taadaa veidaa Link to comment Share on other sites More sharing options...
blackhalt Posted October 5, 2004 Report Share Posted October 5, 2004 Idejiski šitā : <?php // failu paarveido // uz base64 $fails='orginal'; $new_file='new_orginal'; // $ext[0]='.png'; $ext[1]='.base64'; $a=implode('',file("$fails$ext[0]")); $b=base64_encode($a); $fp=fopen("$fails$ext[1]",'w+'); fwrite($fp,$b); fclose($fp); // atveido // un noseivo jaunu $c=implode('',file("$fails$ext[1]")); $d=base64_decode($c); $fp=fopen("$new_file$ext[0]",'w+'); fwrite($fp,$d); fclose($fp); // idzeesh .base64 unlink("$fails$ext[1]"); ?> ;) Link to comment Share on other sites More sharing options...
Recommended Posts