Dooling Posted November 14, 2007 Report Share Posted November 14, 2007 Ir šāds kods: $saite = "http://www.domain.com"; $fails = "saturs.txt"; $a = file_get_contents($saite); $ok = file_put_contents($fails,$a); if(!ok) { echo "fails ir tukšs"; } Šis kods darbojas reāli, bet uz servera, kura palaižu šo nedarbojas. Vai ir aizstājējfunkcijas šīm divām funkcijām? Link to comment Share on other sites More sharing options...
andrisp Posted November 14, 2007 Report Share Posted November 14, 2007 Ko nozīmē nedarbojas ? Kļūdu paziņojumi ? Nedarbojas neviena no funkcijām ? Meibī php versija mazāka par 4.3 ? Varbūt arī, ka tev vispār uz tā hostinga servera ir nogriezta iespēja izmantot šāda veida funkcijas. Bet visticamāk, ka vienkārši nogriezta šo funkciju izmantošana uz URL (http://lv2.php.net/manual/en/ref.filesystem.php#ini.allow-url-fopen). Katrā ziņā sazinies ar savu hosteri. Un vispār paskaties abu šo funkciju manuāļlapās "See also". Link to comment Share on other sites More sharing options...
Dooling Posted November 14, 2007 Author Report Share Posted November 14, 2007 Kaut kāds stulbums. Tikko aizgāja. Kaut arī pilnīgi nekā nebiju darījis. Link to comment Share on other sites More sharing options...
ray Posted November 14, 2007 Report Share Posted November 14, 2007 Lūdzu nevajag taisīt muļķīgas QUOTEs (bubu) visticamāk servera gļuks Link to comment Share on other sites More sharing options...
andrisp Posted November 14, 2007 Report Share Posted November 14, 2007 Visticamāk, ka kodētāja gļuks. ;) Link to comment Share on other sites More sharing options...
rpr Posted November 14, 2007 Report Share Posted November 14, 2007 iespeejams veca php versija. uzraksti savu file_get_contents f-ju: if (!function_exists("file_get_contents")) { function file_get_contents($fails) { // nolasaam failu } } Link to comment Share on other sites More sharing options...
Recommended Posts