what is ACL stands in weblogic 6.x Programming Software Development by arekondaramesh ACL used in Weblogic 6.x has been deprecated and replaced by security policy.why this is removed and what are the problems caused by this when included in weblogic 6.0 :sad: ramesh ACL TRUSTEE_TYPE is always Unknown. Programming Software Development by bigbadowl Hi All I am using the code below to get ACL information from files on Windows (in this case Vista). I need to know wether or not a trustee is a group or a user but when I loop through each trustee they all say "TRUSTEE_IS_UNKNOWN". Am I getting something horribly wrong? [ICODE]dwError = GetExplicitEntriesFromAcl(pAcl, &… Question on ACL at VTY in Cisco Hardware and Software Networking by Asus93 ![57584e18da6337a653024b88f1c61707](/attachments/large/4/57584e18da6337a653024b88f1c61707.JPG "57584e18da6337a653024b88f1c61707") May I know that what is the ACL as shown above doing? Why do we need deny any when we are permitting the specific ip address? Isn't that ACL list has a hidden "deny all" statement? Thank you. cakephp+initialising database + ACL.php :: command line do not work? pls point me Programming Web Development by hbmarar Hi, Wishes. I am trying out with the cakephp framework but got stuck with the initialising the database with acl.php... i changed the directory to the scripts folder and tried the commad mentioned. But it do not seem to work... i dont know why? i used the db_sql file to create the ACL tables but again stuck with the user group … Configuring ACL Hardware and Software Networking by sunder.tinwar hi guys, i am working on a proxy server project and using squid 2.7 stable 7..... i want to configure ACL on Squid so i was wondering if any one can guide me regarding that.... thanks in advance configure ACL Hardware and Software Microsoft Windows by sunder.tinwar hi guys, i am working on a proxy server project and using squid 2.7 stable 7..... i want to configure ACL on Squid so i was wondering if any one can guide me regarding that.... thanks in advance Re: Configuring ACL Hardware and Software Networking by thewebhostingdi Refer following URL: [url]http://www.squid-cache.org/Doc/config/acl/[/url] Although, this is exhausted but really helpful. Re: configure ACL Hardware and Software Microsoft Windows by thewebhostingdi Refer following URL: [url]http://www.squid-cache.org/Doc/config/acl/[/url] This is really helpful. I have bookmarked it. Re: Configuring ACL Hardware and Software Networking by frankken2 By configuring the host and internet connections can we have to select the standard ACL hostname R1 ! interface ethernet0 ip access-group 1 in ! access-list 1 permit host 192.168.10.1 Have to provide the standard ip adresses to the host names. Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Hi guys , I have a pretty big problem and I don't know how to fix it. I have a contact page that I did not work on my web hosting service. I tried the same contact page on several free hosting companiese and works without a problem. I sent a mail and they told me that there is this error: rejected by non-SMTP ACL: "error: From difera de … Re: ACL TRUSTEE_TYPE is always Unknown. Programming Software Development by marco93 It's a wrong method. Ask on Adv. Win32 api newsgroup [url]news://comp.os.ms-windows.programmer.win32[/url] for the well-known right method... Re: Error non-SMTP ACL Programming Web Development by cereal Hi, it seems the same issue you had last month: * https://www.daniweb.com/web-development/php/threads/495015/mail-php-problem The sender email must be authenticated before sending the email. The email to authenticate is the one set in the FROM header, i.e. the one defined here: $headers = "From: website@website.com" . "\r\n&… Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Got It, Thank you. Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 I still can't not fix this... <?php $action=$_REQUEST['action']; if ($action=="") /* display the contact form */ { ?> <form action="" method="POST" enctype="multipart/form-data"> <input type="hidden" name="action" … Re: Error non-SMTP ACL Programming Web Development by cereal Let me try to explain: when you send an email message from your email client (for example Outlook or Mozilla Thunderbird) you connect to an SMTP server, submit password and if it's ok it will allow the sending of the message. You create the connection to **SMTP** and **POP3** servers during the setup of the account, correct? Now: when you send an … Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Thank you very much because you had the patience to explain , now I understand , but where do i find the smtp password ? Edit: i upload all files "phpmailer" in my ftp webhosting. Now I need to add the above code to my contact page? https://www.youtube.com/watch?v=AAGFIfJ6ymI Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 https://www.youtube.com/watch?v=JltHLzkghmY Re: Error non-SMTP ACL Programming Web Development by cereal You're welcome. > where do i find the smtp password ? It's the password that you use to access the defined email account. As I wrote: in a script like this, sender (FROM) and receiver (TO) can be the same email address. But: 1. this requires the disclosure of the password of this email account; 2. if this password is changed the script will … Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Hi cereal, I managed to configure , I received mail(This is the HTML message body in bold!) but now I know how to connect the form table of the contact page. <form action="" method="POST" enctype="multipart/form-data"> <input type="hidden" name="action" value="… Re: Error non-SMTP ACL Programming Web Development by cereal Sorry, I'm not sure I've understood: you mean how to connect the form to the sending script? Through the **action** attribute of the form tag: <form action="contact_page.php" method="POST"> Besides, the **enctype** should defined only when it's expected to upload a file through the form, yours does not seem to be… Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Now I want to create a contact form, where should I put the code of the form? Re: Error non-SMTP ACL Programming Web Development by cereal Oh, you can create a separated script and included it, just place it on top of the file and check if the request method is POST, and if the submission comes from the contact form, for example: <?php $result = FALSE; if($_POST && array_key_exists('action', $_POST)) { # mail script here… Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 I still cant fix this... I have this form contact on my index page: <form action="" method="post"> <p class="clearfix"> <input type="text" name="name" value="" placeholder="Name" required="required" /> <input type=&… Re: Error non-SMTP ACL Programming Web Development by ehpratah Hi as **cereal** been pointing out you just need to add your "phpmailer " /sending code on your form action like `<form action="phpmailer.php" method="post">` after that you need to pass the data from your form to the phpmailer.php script that you wrote like this <?php require 'PHPMailerAutoload.… Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 thank you for answer, I did what you said but now I get this error: Message could not be sent.Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Re: Error non-SMTP ACL Programming Web Development by cereal It could be the port or the password. Remove the comment character from line 12 to enable the debugger and access the information, with level 3 it will show the communications between server and client: $mail->SMTPDebug = 3; And also follow the link returned by the error: * https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting It … Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Sorry I was forgget password..., now it fix but still can't recevice on mail subject (/email/query/website) that the client fill. I recevice the text your wrote: $mail->Subject = 'Here is the subject'; $mail->Body = 'My name is $name. you can send me an email at $email and visit my webpage at $website and my asdfghj is $query';… Re: Error non-SMTP ACL Programming Web Development by cereal Just replace the text with the input received from the form: $message = $_POST['query']; # name of textarea And then set the body: $mail->Body = $message; The same applies to subject and altbody (which is optional and helpful if in body you set an HTML message). To get the email address of the sender replace: $mail->… Re: Error non-SMTP ACL Programming Web Development by cristian.stilpeanu.1_1 Thank you cereal, you made my day:) I almost finish this but it has remained one problem, how i add 'website' on body. $mail->Body = $message = $_POST['query']; and I want the website to in that body section, something like this: $mail->Body = $message = $_POST['query + website']; Re: Error non-SMTP ACL Programming Web Development by cereal You're welcome! This `$_POST['query + website'];` cannot work, because there you're trying to access an index key, in order to work your array should look have an index key like in your test: $a = array( 'query' => 'abc', 'website' => 'http://some.url/', 'query + website' => 'def'…