"; write_textfile("setup.conf.inc.php", $conf

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
zentering
Posts: 120
Joined: Thu 16. Feb 2006, 21:35
Location: Stockholm Sweden

"; write_textfile("setup.conf.inc.php", $conf

Post by zentering »

When starting installation i get this: any suggestions?

"; write_textfile("setup.conf.inc.php", $conf_file); }function aporeplace($string_to_convert="") { //Ändert die einfachen Apostrophe für SQL-Funktionen in doppelte $string_to_convert = str_replace("\\", "\\\\", $string_to_convert); $string_to_convert = str_replace("'", "''", $string_to_convert ); return $string_to_convert;}function html_specialchars($h="") { //used to replace the htmlspecialchars original php function //not compatible with many internation chars like turkish, polish $h = preg_replace("/&(?!#[0-9]+;)/s", '&', $h ); $h = str_replace( "<", "<" , $h ); $h = str_replace( ">", ">" , $h ); $h = str_replace( '"', """, $h ); $h = str_replace( "'", "'", $h ); $h = str_replace( "\\", "\", $h ); return $h;}function readfile_chunked($filename,$retbytes=true) { $chunksize = 1*(1024*1024); // how many bytes per chunk $buffer = ''; $cnt =0; $handle = @fopen($filename, 'rb'); if ($handle === false) { return false; } while (!feof($handle)) { $buffer = @fread($handle, $chunksize); echo $buffer; flush(); if ($retbytes) { $cnt += strlen($buffer); } } $status = @fclose($handle); if ($retbytes && $status) { return $cnt; // return num. bytes delivered like readfile() does. } return $status;}?>
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi zentering,

what Version did you install? 1.2.6?
It is an FTP Problem. Please use an binary tranfer for this Version.

The better idee are to install the newest 1.2.7 pre. It´s stabil.
http://www.phpwcms.de/forum/viewtopic.php?p=66971#66971

regards
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
zentering
Posts: 120
Joined: Thu 16. Feb 2006, 21:35
Location: Stockholm Sweden

Post by zentering »

jepp used 1.2.6 auto upload, testing the 1.2.7 now, thx for your replay.

Best regards / z
Post Reply