Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by JoseAmayo Is there a way to implement a site search for secured pages? I am planning on changing the site search on … Google Search Business Edition. My boss wants to keep the secured pages hidden from a regular Google web search, but create… Re: Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by JoseAmayo … of our budget, and Google's crawler cannot access our secured pages, as far as I can tell. Although Passmark should… Secured sql server remote connection Programming Web Development by vasanth.kanna Dear All, I want to establish a remote connection with sql server 2005 in my Asp.net web service. How to do this in a effective and secured way, Please reply me with sample code, that will be very helpful for me. Thanks in advance, Thanks & Regards, Vasanth Firefox and Opera (linux) can't open one secured site, IE (win) can Hardware and Software Linux and Unix by Mocabilly Hi all, First of all, I never experienced problems using secured pages, except for (this) [B]one[/B] site. To …and as I'm logged in, an other page (main secured page) is normally loaded. Problem: using Firefox and Opera in…quot; thing because I tried without firewall, and all other secured pages just work. So my question (if you are … Re: Firefox and Opera (linux) can't open one secured site, IE (win) can Hardware and Software Linux and Unix by Mocabilly …]Hi all, First of all, I never experienced problems using secured pages, except for (this) [B]one[/B] site. To …and as I'm logged in, an other page (main secured page) is normally loaded. Problem: using Firefox and Opera in…quot; thing because I tried without firewall, and all other secured pages just work. So my question (if you are … how to forward to a secured https page Programming Web Development by karanits … to forward this request to someother secured jsp page which i have configured to be secured in my web.xml. The problem… is the jsp pages opens as secured if I open it directly from the address bar of… cannot browse secured site https Hardware and Software Microsoft Windows by mona … all , plz i wanna help ! i can't browse the secured site althought i installed ssl certification , i can access the… any secured sites on wan but locally i can't. i modified… Re: how to forward to a secured https page Programming Web Development by karanits Thanks for the reply. I know I can do redirection instead of forward. I had tested it before and it works. But i had to set some request attributes in the servlet and use it in the secured JSP. Now i will have to set attributes in session instead. I was vary of setting to much session attributes, that's why I was thinking of a workaround. Google now Secured with SSL certificate Digital Media Digital Marketing by lapunluyang Google has just launched a secured version of Google.com. It is in beta. Google Search … from your computer to google server will be encrypted. This secured channel helps protect your search terms and your search results… Which is More Secured? Iterative Salting or Encryption Methods? Programming Software Development by Bheeman89 … I want to know, which of the method is secured or less secured. Is it Iterative Salting (1000x iterative) or Encryption method… Re: Which is More Secured? Iterative Salting or Encryption Methods? Programming Software Development by Bheeman89 Yes Mr Twiss... But I want to know if salt and hash alone is as equally secured as encryption alone? Any explaination for that Please? Unable to open secured site Hardware and Software Microsoft Windows by Cannonfire I am unable to open any of my secured sites. I'm not too sure what happened, but as … Cannot open secured sites - need urgent solution Hardware and Software Microsoft Windows by hnrhnr … the moment I have 2 main problems: - Can not access secured sites (such as my e-email on Yahoo, hotemail and… Show secured file Programming Web Development by dcarrillo18 … a swf file. I'm using PHP to retrieve the secured swf file and show it if the user is logged… Interact with secured web page Programming Software Development by arishy …!!!. My current script does the following 1. login to my secured Bank Account 2. download current statement and logout 3. do… How can data saved in iPhone can be secured? Hardware and Software macOS by adamhmiles … sources of data loss. How can that data can be secured? Any suggestions? Re: Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by Passmark This should be easy to do. Take a look at the [URL="http://www.wrensoft.com/"]Zoom Search Engine[/URL]. You can add search to an intranet, web site or CD. The pages being searched don't need to be accessible to the public. In particaular see this support question on the site. [URL="http://www.wrensoft.com/zoom/support/auth.html&… Re: Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by JoseAmayo Awesome, Passmark. Thank you very much. This is exactly what I was looking for. I searched everything I could think of, and could not find anything like it. My only concern is reliability, as this is for a corporate website. I found several positive blog posts and c|net user reviews on this, but I was wondering if anyone here had experience with… Re: Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by Passmark No point asking me, I am hopelessly bias. I wrote the initial code for the Zoom product (and own the company :-) ). Needless to say, I think it is pretty good. Not perfect yet, but pretty good. Re: Secured Pages Site Search? Digital Media Digital Marketing Search Engine Strategies by Dani I guess the only question to ask is if whether you want an inhouse or outsourced solution? in house => try something called sphinx at sphinxsearch.com outsource => google rack Re: Secured sql server remote connection Programming Web Development by Ramy Mahrous Username\password encrypted in .config file, or you can use SQL Server public\private keys 2005 and later secured logon through novell Hardware and Software Networking by Ram Appsense hi, if you have Active directory in one machine (Server 1) and eDirectory in another machine (server 2), you can install Novell client in any other client machines and view both AD and eDir. key points are: 1. You can only view eDirectory i.e. Tree even if you logon as administrator of the tree. you can add or delete users and OUs only … Secured remote support to clients Hardware and Software Networking by cosmos08 What is the best way to provide remote support to my clients? Note security and annual costs are my main concerns. Re: Secured remote support to clients Hardware and Software Networking by DimaYasny logmein is free. SSL protected webex has more features and has good security as well Re: Secured remote support to clients Hardware and Software Networking by mike11 You should try out a web conferencing appliance like RHUB - [url]http://www.rhubcom.com/[/url] - as it is the most secure form of web conferencing and since its an appliance, you just have to pay the upfront cost of buying the appliance. After that there is no monthly charge like the hosted solutions and hence you end up saving a lot of money in … Secured Login Building Programming Web Development by bharanidharanit I would like to add captcha to my registration system. I searched google and i get some. There are more number of scripts in that which are little bit complex to go on. I simply took my needs from that. Now My registration page is generating captcha, but i dont know how to check it back after the user enters from the shown image. Here's my coding.… Re: Secured Login Building Programming Web Development by Wraithmanilian The fix is in the code: [code] <?php session_start(); //Settings: You can customize the captcha here $image_width = 120; $image_height = 40; $characters_on_image = 6; $font = './monofont.ttf'; //The characters that can be used in the CAPTCHA code. //avoid confusing characters (l 1 and i for example) $possible_letters = '… Re: Secured Login Building Programming Web Development by bharanidharanit Hello Thankyou, i am already having that code in line 72. But when i takes session variables. the image displaying the different code and $_SESSION['6_letters_code'] showing the different one. And how can i compare those two? Re: Secured Login Building Programming Web Development by Wraithmanilian You mean that the image is displaying 6 different letters/numbers than the $code variable contains? Re: Secured Login Building Programming Web Development by bharanidharanit Ya for eg: when the page loads at first, the image shows jkls45 and the $_SESSION['6_letters_code'] shows something different, When i again load the page, the shows some other captcha and now the SESSION shows the previous captcha jkls45