Warning: Ftp_put() [function.ftp-put]: Invalid PORT Address
I'm trying to upload files to a ftp client using an SSL explicit connection on port 990. I can connect to the ftp server with cuteFTP and can upload and do all the basic ftp type things. The script I wrote connects to the ftp server and when I try to upload a file via 'ftp_put' it gives me the following warning message:
Warning: ftp_put() [function.ftp-put]: Invalid PORT address in /home/usr/www/ConTest.php on line 42 There was a problem while uploading (debug msg)
I added some code to add a directory to make sure the connection was working fine, and the script properly added the directory to the ftp server. So my connection is establish and seems to work for certain functions, but throws me this weird port error during ftp_put. Below is my code, I've looked all over the internet for a similiar case and haven't seen any. Code:
View Complete Forum Thread with Replies
Related Forum Messages:
Warning: Ftp_put(): PORT Command Successful, The FTP Upload Has FAILED!
I am trying to upload a file to a different server through a php script. This script works fine on other servers that I know of. But, not on this one. I am recieving this error. Warning: ftp_put(): PORT command successful in /home/accountname/public_html/testing/admin/includes/classes/feed.php on line 75 The FTP upload has FAILED! Local file: /home/accountname/public_html/testing/feeds/testfroogle.txt Remote file: froogletest.txt I have checked configuration and I can upload with an ftp program using the login info just fine. The script logs in just fine. Creates a file on the remote server. But, won't upload the data. After a while the whole thing appears to log out. I have been searching all over the net all morning. Just can't find the answer.
View Replies !
Warning: Ftp_put() [function.ftp-put]: /tmp/phpdGGc4K: No Such File Or Directory
about ftp_put. whats its' syntax ftp_put($ftpconn, remotefile???, localfile!???? FTP ASCII) what is remote and localfile?? ive tried to do this (in english upload a file to _files which is really in /tmp/ then before moving it (to save disk usage) upload straight from /tmp/ to the ftp server in question can i do this?? heres my error mess: Warning: ftp_put() [function.ftp-put]: /tmp/phpdGGc4K: No such file or directory in /var/www/html/ftp.php on line 84 -> this is my echo error message There was a problem while uploading
View Replies !
Warning: Ftp_put() [function.ftp-put]: Rename/move Failure: No Such File Or Directory
I've just moved our site to a new server, and after doing so I am having problems getting ftp_put() to work. We use it to upload pictures, but when I try to, it gives me the following error: Warning: ftp_put() [function.ftp-put]: Rename/move failure: No such file or directory in /home/intimate/public_html/include/functions.php on line 271 It worked with our previous hosting company, so I'm not sure what is different. I've verified that ftp login works, so the connection itself is alright. Here is the function, making problems: function upload_file($source_file, $destination_file) { if ($conn_id = ftplogin()) { $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY); if (!$upload) { return "Det lykkedes ikke at uploade $source_file til $destination_file"; } ftp_close($conn_id); } else { return "Det var ikke muligt at forbinde vha. FTP"; } return false; } Line 271 is the following line: $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
View Replies !
Warning Ftp_put - Urgent
I am getting problem in uploading file from php script. The error is : Code - $upload = ftp_put($conn_id,$filemax,$src,FTP_BINARY); Output - Resource id #11,fairmont_mon.txt,/tmp/phpWmPlSJ Warning: ftp_put() [function.ftp-put]: OOPS: vsf_sysutil_bind in /var/www/html/hview/hqc/twc_upload/upload_file.php on line 263
View Replies !
Warning: Ftp_put(): Unable To Access
I'm using the following code on my website, but something seems to be wrong, cause everytime I try to upload something, I get this error: Warning: ftp_put(): Unable to access in /home/cjbcc/public_html/members/koerel/party/uploads.php on line 16 <html> <head></head> <body> <? $ftp = ftp_connect("koerel.cjb.cc"); $source_file = $_POST['bestand']; $logged = ftp_login($ftp,"***","***"); if ((!$ftp) || (!$logged)){ echo "der is iets mis!"; } else { echo "je bent ingelogd"; } if(isset($_FILES['bestand'])) { ftp_put($ftp,"x.gif",$source_file,FTP_BINARY); echo "Het bestand is opgeslagen"; } else { echo "Selecteer een bestand"; } ?> <form action="" method="post" enctype="multipart/form-data"> <input type="file" name="bestand"><br> <input type="submit" name="submit" value="Upload"> </form> </body> </html>
View Replies !
Warning: Ftp_put(): Prohibited File Name:
I have this generic FTP script that im trying use to upload files to our server... I can connect but it wont upload i get this error: Warning: ftp_put(): Prohibited file name: English/SonoFlux_XL/ in /homedirs/sonotek/public_html/sono-tek.com/pdf_download/uploader.php on line 45 FTP upload has failed! The path to where the file should be uploaded is specified by a form where the language and the product type of the file is decided. here is the code: // set up basic connection $conn_id = ftp_connect($ftp_server); // login with username and password $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); // check connection if ((!$conn_id) || (!$login_result)) { echo "FTP connection has failed!"; echo "Attempted to connect to $ftp_server for user $ftp_user_name"; exit; } else { echo "Connected to $ftp_server, for user $ftp_user_name"; } if(isset($_POST['upload'])) { $language = $_POST['language']; $category = $_POST['category']; $product = $_POST['product']; $description = $_POST['description']; $revcode = $_POST['revcode']; $uploadedfile = $_POST['uploadedfile']; $destination_file = $language . '/' . $product . '/' // upload the file $upload = ftp_put($conn_id, $destination_file, $uploadedfile, FTP_BINARY); // check upload status if (!$upload) { echo "FTP upload has failed!"; } else { echo "Uploaded $source_file to $ftp_server as $destination_file"; } } // close the FTP stream ftp_close($conn_id); $destination_file = $language . '/' . $product . '/' // upload the file $upload = ftp_put($conn_id, $destination_file, $uploadedfile, FTP_BINARY); $filename = basename( $_FILES['uploadedfile']['name']); $destination_file = $language . '/' . $product . '/' . $filename; // upload the file $upload = ftp_put($conn_id, $destination_file, $uploadedfile, FTP_BINARY); I get this error: Warning: ftp_put(): Rename/move failure: No such file or directory in /homedirs/sonotek/public_html/sono-tek.com/pdf_download/uploader.php on line 45
View Replies !
Warning: Ftp_put(): Restricted User Logged In
Hi I am getting the following warning when using ftp_put(), and I was wondering if someone would be so kind to explain what the warning actually means. Warning: ftp_put(): Restricted user logged in. in <b>/ This is my code -------------------------- // set up basic connection $conn_id = ftp_connect('ftp.########.com.au'); // login $login_result = ftp_login($conn_id, '#####', '#####'); // this returns TRUE and everything appears fine up to this point, I have successfully logged in. // upload a file - this is where it breaks and gives me the warning described above. if (ftp_put($conn_id, $feed, $fpath.$feed, FTP_ASCII)){ ... } nb: this worked up until today, so could it be some change in configuration at the ftp sites end?
View Replies !
Warning: Ftp_put(): Accepted Data Connection In ... On Line 132
I am having some problems with a script we use in our webshop. The error is only periodic and seems to show up without any changes made by us or our host. I've had the host reinstall PHP and FTP as well as reset the firewall and httpd.conf files but without any luck. The error I get is when I try to upload a product picture through our admin page: Warning: ftp_put(): Accepted data connection in /xxx/xxx/public_html/include/functions.php on line 132 It seems to be when trying to upload images larger than 10kb as it works with very small files. The functions we use to upload is: function upload_file($source_file, $destination_file) { if ($conn_id = ftplogin()) { $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY); if (!$upload) { return "Det lykkedes ikke at uploade $source_file til $destination_file"; } ftp_close($conn_id); } else { return "Det var ikke muligt at forbinde vha. FTP"; } return false; } function ftplogin() { $conn_id = ftp_connect(FTP_SERVER,21); $login_result = ftp_login($conn_id, FTP_USER, FTP_PASS); if (!$conn_id || !$login_result) { return false; } ftp_pasv($conn_id, true); return $conn_id; }
View Replies !
Warning: Mail(): Failed To Connect To Mailserver At Localhost Port
I have windows xp pc and i have installed apache as a web server and php also working fine, but when i am sending mail, its giving me following error when upload same to linux live server its working, please help me what do i have to do for this Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:SafrasWebHosting....
View Replies !
Invalid Argument Warning
I'm getting a Warning: Invalid argument supplied for foreach() error message for this bit of code: foreach($_POST['healthConditions[]'] as $key=>$value) { Â Â Â Â Â Â Â Â Â Â Â Â if($count > 1){ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $_SESSION['saFormData'] .= " $value, "; Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $count--; Â Â Â Â Â Â Â Â Â Â Â Â } else {Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $_SESSION['saFormData'] .= " $value.<br>"; Â Â Â Â Â Â Â Â Â Â Â Â }Â Â } I've done some research that said that this warning either means you've got a string instead of an array or that the array is null. Mine is obviously an array because its data that's being passed from a form via post. However, the warning goes away if a user has checked any of the healthConditions boxes so I guess it's because the array can be returned as NULL if they don't check any. I tried putting $_POST['healthConditions'] = array(""); and even $_POST['healthConditions'] = array("anything"); The way the form is worded, the user needs to have the option of leaving all checkboxes blank.
View Replies !
PHP Warning: OpenDir: Invalid Argument (errno 22)
How I can get directory listing of CDROM (F: ) under Windows! I tried every combination of slashes! But nothing!!!! When I try to use opendir, I get error: PHP Warning: OpenDir: Invalid argument (errno 22) in c:apachehtdocs ester est.php on line 90 When I try with drive C: , it works, but with other drives not? Is this some kind PHP4 bug? My System: WindowsNT4.0 + Apache + PHP4.0.6.
View Replies !
Warning: Invalid Argument Supplied For Foreach()
I am getting the following errors on my webpage Warning: Invalid argument supplied for foreach() in /home/patcheen/public_html/booking/includes/classes/Order.php on line 231 Warning: Invalid argument supplied for foreach() in /home/patcheen/public_html/booking/includes/classes/Order.php on line 235 The code it refers to is this    foreach($event_stat as $event_id=>$count){     if(!Event_stat::dec($event_id,$count)){return FALSE;}    }       foreach($category_stat as $cat_id=>$count){     if(!Category_stat::dec($cat_id,$count)){return FALSE;}    } and here is where $event_stat and $category_stat are declared and populated     $event_stat[$ticket->event_id]++;     $category_stat[$ticket->category_id]++; Any ideas? Have I given enough information? Thank you so much for taking the time to look over this. I'm not going anywhere until this is resolved.
View Replies !
Warning: Imagecopyresized(): Invalid Image Dimensions ???
I have writted the following code to resize images: <?php // The file $file_dir = "/xxxx/xxxx/xxxx/xxxx"; $filename = "$file_dir/$id/$albumName/$filename_name"; // make sure filename is set print "<p class=text>the filename is: $filename</p>"; // Set a maximum height and width $width = 600; $height = 600; // Get new dimensions list($width_orig, $height_orig) = getimagesize($filename); // make sure original dimentions are set print "<p class=text>width_orig is: $width_orig</p>"; print "<p class=text>height_orig is: $height_orig</p>"; $ratio_orig = $width_orig/$height_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // make sure new dimentions are set print "<p class=text>width is: $width</p>"; print "<p class=text>height is: $height</p>"; // Load $thumb = imagecreatetruecolor($width, $height); $source = imagecreatefromjpeg($filename); // Resize imagecopyresized($thumb, $source, 0, 0, 0, 0, $width, $height, $orig_width, $orig_height); // Output imagejpeg($thumb, $file_dir/$id/$albumName/$filename, 100); ?> But I get the following error: Warning: imagecopyresized(): Invalid image dimensions.
View Replies !
Problems With The Ftp_put() Function.
I am having problems with the ftp_put() function. I can login via shell prompt. Does anyone know why the ftp_put() function may not work? I went to the php site and followed the directions. I am connecting because I am not getting an error. I am also logging in with the username and password because I am not getting an error here as well. But so far no matter what I do, the file will not upload. $query= "select Server, UserName, Password, Destination_Path, ServerType from company"; $result= @mysql_query($query); $row= @mysql_fetch_array($result); if (!empty($row["Server"])) { $hostip = gethostbyname($row["Server"]); $conn_id = ftp_connect($hostip); // set up basic connection //$conn_id = ftp_connect($row["Server"]); // login with username and password $login_result = ftp_login($conn_id, $row["UserName"], $row["Password"]); // check connection if ((!$conn_id) || (!$login_result)) { $value = "FTP connection has failed!<br> Attempted to connect to ".$row["Server"]." for user ".$row["UserName"]; exit; } // IMPORTANT!!! turn passive mode on //tried this and it did not help //ftp_pasv ( $conn_id, true ); //parameters are ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY) $upload = ftp_put($conn_id, $row["Destination_Path"]."/".strtolower(trim($HTTP_POST_FILES['userfile']['name'])), strtolower(trim($HTTP_POST_FILES['userfile']['name'])), FTP_BINARY); if (!$upload) echo $upload."<br><br>Did not upload to ftp server."; // close the FTP stream ftp_close($conn_id); }
View Replies !
MySQL Backup - Warning: Invalid Argument Supplied For Foreach()
I`m using the following code to list the tables, adding a checkbox next to the tables so I can select what tables I want to back up. However after submitting the form, I`m having this error. Warning: Invalid argument supplied for foreach() in C:Serverhtdocsadminincfunctions.php on line 6228 That line is: foreach ($tables as $table)in the performExport($tables) function. I`ve stared at this for hours now and I can`t see a problem. Code:
View Replies !
Error Message Warning: Invalid Argument Supplied For Foreach()
I'm having a hard time with the foreach statement near the bottom of this code. I'm getting this error message Warning: Invalid argument supplied for foreach() in The code is searching for children that belongs to a user then gets the childs information from the table "Children'. It then check to see if the child is a registered user in the table "users". Next it looks in the table "image_files" to see if the current user how is linked to the child has added a photo. The photo can be identified by the child_id which matches the child_stored in at the end of the string stored in details.
View Replies !
Warning: Ldap_bind(): Unable To Bind To Server: Invalid Credentials In
I have some problems with ldap and php fot my authentification. I don't understand why. My DN is correct in my ldap server Can you help me please? My php script : $login = $_POST['pseudo']; $passe = $_POST['passe']; $ldapServer = "localhost"; $loginDN = "uid=".$login.", o=people, dc=toto, dc=org"; $connexion = ldap_connect($ldapServer) or die ("Impossible de se connecter au seveur LDAP"); if ($connexion) { $result= ldap_bind($connexion, $loginDN, $passe); // Identification if ($result) { echo "Connexion LDAP réussie"; } else { echo "Connexion LDAP échouée"; } } My error message : Warning: ldap_bind(): Unable to bind to server: Invalid credentials in d:www-rootphpauth_ldap.php on line 15 ...
View Replies !
URL Masking - Send A Page From Port 80 To Port 6999
I'm sure this has been asked before but I've just signed up to this newsgroup and done a search but can't find anything. What I'm trying to do is to send a page from port 80 to port 6999 but I don't want the :6999 bit to show in the URL address field. Is it possible to either mask or hide this within the header("Location:XXX") call? In other words, if I enter http://www.mysite.com it finds the site using the default port 80 but the information I have is actually on port 6999 so I'm redirecting to http://www.mysite.com:6999 but I don't want the :6999 to be displayed.
View Replies !
Warning: Invalid Argument Supplied For Foreach() Running On A OS X Machine Running Apache 1.x And PHP 4.x.
The following script was running on a OS X machine running Apache 1.x and PHP 4.x. I just moved the script over to a Linux machine running Apache 2.0.51 and PHP 4.3.8, and now the foreach line does not work. It says Warning: Invalid argument supplied for foreach() in /var/www/localhost/htdocs/warehouse/whse_order_submit.php on line 39 Here is the script: <?php //get the variables from the other page $id=$_POST['id_no']; $sku=$_POST['sku']; $description=$_POST['description']; $order=($_POST['order_qty']); $store=$_POST['store']; $comment=$_POST['comment']; $ip=$REMOTE_ADDR; //check if store is empty if(empty($store)) { die("Store is required. Please press the back button and enter in your store."); } //connect to the database require('../inc/database_conn.php'); //$month=getdate(mon); //$day=getdate(mday); //$year=getdate(year); //$today=$year . "-" . $month . "-" . $day $today=date('Y-m-d'); // create the unique order number $headerqry = "INSERT INTO misc_order_header (order_date, store, comment, ip) VALUES ('$today', '$store', '$comment', '$ip')"; mysql_query($headerqry, $conn) or die(mysql_error()); $order_no=mysql_insert_id(); foreach($order_qty as $id_no => $val) { if($order_qty[$id_no] > 0) { $detailqry = "INSERT INTO misc_order_detail (order_no, id_no, sku, order_qty, order_date, store) VALUES ('$order_no', '$id_no', '$sku', '".$order_qty[$id_no]."', '$today', '$store')"; mysql_query($detailqry, $conn) or die(mysql_error() . "<BR>" . $detailqry); } }
View Replies !
Invalid Use Of Group Function
how can i get this running in a singe query: SELECT max(met.meeting_date), met.ref_num FROM meetings met WHERE max(met.meeting_date) < (date_sub( curdate( ) , interval 90 day)) GROUP BY met.ref_num I get the following error: 'Invalid use of group function' It doesnt like the WHERE max(met.meeting_date) statement. The problem is that I cant get the meeting_date within the group by. It works when I delete the WERE criteria.
View Replies !
SquirrelMail Error: Warning: Fsockopen(): Unable To Connect To [ip Address]:143
If anybody has experienced the following SquirrelMail error: Warning: fsockopen(): unable to connect to xx.xx.xx.xx:143 in /home/virtual/siteX/fst/var/www/squirrelmail/functions/imap_general.php on line 172 or something similar, then listen up, here's the solution. PHP 4.3.x has known bugs with file handle and socket leak issues. This is true up to PHP 4.3.3. The only solution for now is to revert to PHP 4.2.x. I'm told that this issue only affects systems with 250+ SquirrelMail sites.
View Replies !
Address Of Function Or A Virtual Function
Is there some way to implement something like a virtual function or have something like a user defined function ? One solution I thought might work: store a reference (address) of a function in a variable and call it later if that variable has been set ? This seems to compile OK, but produces funny results. Is this outside the scope of php ? function testfn() { .... return $result; } $myfn = &testfn; // set it too the address of the function .... if (isset($myfn)) $result = @$myfn(); // call my function
View Replies !
Function To Get The Ip Address Of Users
I am using this function to get the ip address of our users but sometimes It is unable to record the IP and i get Blank result. Where am i wrong? if (getenv(HTTP_X_FORWARDED_FOR)){ $ip=getenv(HTTP_X_FORWARDED_FOR); } else { $ip=getenv(REMOTE_ADDR); }
View Replies !
Secure Email Address Function
I am using the following email security script on many of my applications and I have just received an email today where someone told me that it doesn't work on about 80% of his emails. It doesn't work for domains that use .info and some other domain extensions. How can I fix this. This is urgent as I am using this on contact forms, submission forms, etc. PHP Code:
View Replies !
Change The From Address In Th Mail() Function
I have been trying to find a way to change the name of the senders email when using the mail() function. I would like it to change the senders email address to read something like "Company Name Inc". The problem is when I set the $from = "From: Company Name Inc" I get the email with the from being: Company@ourserver.comName@ourserver....@ourserver.com is there anyway I can change this? I have found that if I change it to CompanyNameInc@theCompany.com it sends the email with the from being: CompanyNameInc@theCompany.com I would really like to have it read: "Company Name Inc" period I want to remove the @whatever.com all together.
View Replies !
Mail Function Warning Error
when i use mail functions i am getting this error what to do... Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:Program FilesEasyPHP 2.0b1wwwlavanyamail.php on line 18 Your email has been sent!
View Replies !
Warning: Division By Zero - Function CalcL5tt
i get this error message: Warning: Division by zero in pro-showBBL.class.php on line .... how do i avoid this error? function calcL5ttlBBL($idTeam, $thePitcher, $what) { $ttl_w = 0; $ttl_l = 0; $pitchL5 = getPitchL5($thePitcher); for($x=0; $x<count($pitchL5); $x++) { if($pitchL5[$x]['wlt'] == "w") { $ttl_w = $ttl_w + 1; } if($pitchL5[$x]['wlt'] == "l") { $ttl_l = $ttl_l + 1; } if($pitchL5[$x]['ip'] ==0) { $ttl_ip = $ttl_ip + 0; } else { $ttl_ip = $ttl_ip + $pitchL5[$x]['ip']; } if($pitchL5[$x]['er'] ==0) { $ttl_er = $ttl_er + 0; } else { $ttl_er = $ttl_er + $pitchL5 .............
View Replies !
Warning: SoapClient::__construct() [function.--construct]:
I try to use a webservice over https with the PHP5 SoapClient. I get following warnings: Warning: SoapClient::__construct() [function.--construct]: failed to create an SSL context in E:IntranetSkriptsparkinginc_func.php on line 330 Warning: SoapClient::__construct() [function.--construct]: Failed to enable crypto in E:IntranetSkriptsparkinginc_func.php on line 330 Warning: SoapClient::__construct(https://test.xxxx.at/sepws/services/xxxxWS) [function.--construct]: failed to open stream: No such file or directory in E:IntranetSkriptsparkinginc_func.php on line 330 Code:
View Replies !
Warning: Mysql_connect() [function.mysql-connect]:
i am haveing an issue connecting to a mysql database i get the following error Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server during query in /home/cutencud/public_html/testing.php on line 1 now testing.php only has one line and it looks like this <?php mysql_connect("66.97.165.60", "root", "") ?> anyone know what would cause that? (and i removed the password before posting
View Replies !
Warning: Session_start() [function.session-start]....
I'm trying to get a login script working and I'm getting these errors Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/nathan/public_html/header.php:10) in /home/nathan/public_html/include/session.php on line 46
View Replies !
Mail() Function - Warning: Unknown Error
I have been getting the crap beat out of me by the mail function. It just wont send the mail. I have even tried this simple test: if (mail('myrealaddress@yahoo.com','Getting this to work','what the hell is it going to take?')) The result - Warning: Unknown error in c:phpdev5wwwalaskaerrandsindex.php on line 135 And when I say myrealaddress I mean I really used a valid email address. I know that the mail function just isn't working for me and it has to do with something other than my code.
View Replies !
Mail() Function - Warning: Server Error
i'm trying to send out emails, only my colligues can receive em' (they can't be sent outside). what cud be the problem? it keeps on giving me "Warning: Server Error".OR maybe it might be because my colligues uses the same mail-server as mine.. been using: <?php $email = "lmpofu@fnb.co.za"; $to = "malaya@studentvillage.co.za"; //$headers = "To: Bob <kagiso@po.gov.za> "; $headers = "From: $email "; $headers .= "Bcc: kagiso@po.gov.za "; $result = mail($to, "Hi?", "So do you know this Kagiso guy", $headers); if ($result) { echo "Your message has been sent! "; echo "Return to <a href='home.html'>home</a> page."; } else { echo "There was an error!"; } ?>
View Replies !
Warning: Mysql_pconnect() [function.mysql-pconnect]:
I was wondering if anyone here could help me with a php problem I have. When I run a php script locally that communicates with a mysql db, everything works great, but when I run the php on the web server with the same exact table I get this error Warning: mysql_pconnect() [function.mysql-pconnect]: Access denied for user: 'xxx.xxxxxx.xx@55.55.555.555' (Using password: YES) I'm 100% the php is fine and im using the right host, login, password... does anyone know what else it could be?
View Replies !
|