473,749 Members | 2,597 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

photo gallery question

hi every body
I need help please

i have designed an image gallery of about 20 pictures and they are
shown in thumb nail views and for viewing the largeer version of the
images i have added a radio button and a push button, so that the user
choose the picture using the radio button and click on the push button
to open the larger version picture in another window, but my problem
is that i know how to pass the selection to the second page but the
problem is how to pass the selected picture not selected value.

the first html page code is:

<form method="POST" action="gallery .php">
<input type="radio" value="V1" name="nature">
<p><input type="radio" value="V1" name="nature"></p>
<p><input type="radio" value="V1" name="nature">
</form>
the gallery.php code is:

<?php
$image = $_POST['nature'];
echo "$image"
?>
my problem is that this way gives me the name of the radio button i
select not the image so how i can make the image get shown not the
radio button name (not V1)
Thanks in advance for your help

shror

Feb 25 '07 #1
11 2094
On Sun, 25 Feb 2007 21:10:57 +0100, shror <sh******@gmail .comwrote:
hi every body
I need help please

i have designed an image gallery of about 20 pictures and they are
shown in thumb nail views and for viewing the largeer version of the
images i have added a radio button and a push button, so that the user
choose the picture using the radio button and click on the push button
to open the larger version picture in another window, but my problem
is that i know how to pass the selection to the second page but the
problem is how to pass the selected picture not selected value.

the first html page code is:

<form method="POST" action="gallery .php">
<input type="radio" value="V1" name="nature">
<p><input type="radio" value="V1" name="nature"></p>
<p><input type="radio" value="V1" name="nature">
</form>
the gallery.php code is:

<?php
$image = $_POST['nature'];
echo "$image"
?>
my problem is that this way gives me the name of the radio button i
select not the image so how i can make the image get shown not the
radio button name (not V1)
Thanks in advance for your help

shror
I can see two methods to help you out in this case:

1) Alter your form: change the radio button names into the text "picture"
and change the value of each radio button into the name of the actual
picture, like so:
<form method="post" action="gallery .php">
<p><input type="radio" value="nature.j pg" name="picture"> </p>
<p><input type="radio" value="sun.jpg" name="picture"> </p>
<p><input type="radio" value="snow.jpg " name="picture"> </p>
<p><input type="submit" value="Show me" name="btnOK"></p>
</form>

That way, your gallery.php can read $_POST['picture'] and it'll give you
"nature.jpg "
"sun.jpg"
"snow.jpg"
which you then can show using fopen() for instance.

This method however has a drawback: it'll show any file whose name is
presented go the gallery.php, meaning that any person with ill intent
could make it load any file at all. Thus there's a second method:

2) Alter your form and the gallery.php to use indexed picture numbers
instead of picture names, like so:
<form method="post" action="gallery .php">
<p><input type="radio" value="1" name="picture"> </p>
<p><input type="radio" value="2" name="picture"> </p>
<p><input type="radio" value="3" name="picture"> </p>
<p><input type="submit" value="Show me" name="btnOK"></p>
</form>

That way, your gallery.php can read $_POST['picture'] and it'll give you
1, 2, or 3 respectively, which you can use in a routine as follows:

$arrPictures = array();
$arrPictures[1] = "nature.jpg ";
$arrPictures[2] = "sun.jpg";
$arrPictures[3] = "snow.jpg";

$imageIndex = $_POST['picture'];
if (isset($arrPict ures[$imageIndex])) {
if (file_exists($a rrPictures[$imageIndex])) {
$imageFile = fopen($arrPictu res[$imageIndex]);
echo $imageFile;
@fclose($imageF ile);
}
}

Don't forget to set a mime-type header!

Hope this helps!

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Feb 25 '07 #2
C.
On 25 Feb, 20:10, "shror" <shahi...@gmail .comwrote:
>
i have designed an image gallery of about 20 pictures and they are
shown in thumb nail views and for viewing the largeer version of the
images i have added a radio button and a push button, so that the user
choose the picture using the radio button and click on the push button
to open the larger version picture in another window, but my problem
is that i know how to pass the selection to the second page but the
problem is how to pass the selected picture not selected value.

the first html page code is:

<form method="POST" action="gallery .php">
<input type="radio" value="V1" name="nature">
<p><input type="radio" value="V1" name="nature"></p>
<p><input type="radio" value="V1" name="nature">
</form>
You need to use different values but the same name. But really, you've
made interaction with the site a lot more complex than it needs to be
- why not just link directly to the larger version of the image - one
click instead of click, scroll, click. Even if you want to do this
with a POST (from the code you've published it should be a GET) it's
just a matter of assigning a value to a hidden field and submitting
the form using javascript.

C.

Feb 25 '07 #3
On Feb 25, 10:44 pm, OmegaJunior <omegajun...@sp amremove.home.n l>
wrote:
On Sun, 25 Feb 2007 21:10:57 +0100, shror <shahi...@gmail .comwrote:
hi every body
I need help please
i have designed an image gallery of about 20 pictures and they are
shown in thumb nail views and for viewing the largeer version of the
images i have added a radio button and a push button, so that the user
choose the picture using the radio button and click on the push button
to open the larger version picture in another window, but my problem
is that i know how to pass the selection to the second page but the
problem is how to pass the selected picture not selected value.
the first html page code is:
<form method="POST" action="gallery .php">
<input type="radio" value="V1" name="nature">
<p><input type="radio" value="V1" name="nature"></p>
<p><input type="radio" value="V1" name="nature">
</form>
the gallery.php code is:
<?php
$image = $_POST['nature'];
echo "$image"
?>
my problem is that this way gives me the name of the radio button i
select not the image so how i can make the image get shown not the
radio button name (not V1)
Thanks in advance for your help
shror

I can see two methods to help you out in this case:

1) Alter your form: change the radio button names into the text "picture"
and change the value of each radio button into the name of the actual
picture, like so:
<form method="post" action="gallery .php">
<p><input type="radio" value="nature.j pg" name="picture"> </p>
<p><input type="radio" value="sun.jpg" name="picture"> </p>
<p><input type="radio" value="snow.jpg " name="picture"> </p>
<p><input type="submit" value="Show me" name="btnOK"></p>
</form>

That way, your gallery.php can read $_POST['picture'] and it'll give you
"nature.jpg "
"sun.jpg"
"snow.jpg"
which you then can show using fopen() for instance.

This method however has a drawback: it'll show any file whose name is
presented go the gallery.php, meaning that any person with ill intent
could make it load any file at all. Thus there's a second method:

2) Alter your form and the gallery.php to use indexed picture numbers
instead of picture names, like so:
<form method="post" action="gallery .php">
<p><input type="radio" value="1" name="picture"> </p>
<p><input type="radio" value="2" name="picture"> </p>
<p><input type="radio" value="3" name="picture"> </p>
<p><input type="submit" value="Show me" name="btnOK"></p>
</form>

That way, your gallery.php can read $_POST['picture'] and it'll give you
1, 2, or 3 respectively, which you can use in a routine as follows:

$arrPictures = array();
$arrPictures[1] = "nature.jpg ";
$arrPictures[2] = "sun.jpg";
$arrPictures[3] = "snow.jpg";

$imageIndex = $_POST['picture'];
if (isset($arrPict ures[$imageIndex])) {
if (file_exists($a rrPictures[$imageIndex])) {
$imageFile = fopen($arrPictu res[$imageIndex]);
echo $imageFile;
@fclose($imageF ile);
}

}

Don't forget to set a mime-type header!

Hope this helps!

--
Using Opera's revolutionary e-mail client:http://www.opera.com/mail/- Hide quoted text -

- Show quoted text -
thanks for your answer OmegaJunior,

i have tried the first method and i made a little bit small change and
it worked but i want to know about it and the draw back,

what i did is:
<input type="radio" value="<img src="www.mydoma in.com/directory/
image.gif">" name="nature">

and i call it in the second page gallery.php in this way:
<?php
$picture = $_POST['nature'];
echo "$picture";
?>

what do you think about this is it the same having the same drawback
or its different, am sorry if my question means nothing but am still
beginner in php, so i dont know how any person with ill intent
could make it load any file at all.

-------------------------------------------------------------------
about the second way,

i dont know about mime-type header!

what is it and its use and how to set it.
am really so sorry for my silly dumb questions
and really very Thanksful and apreciate your help

shror

Feb 26 '07 #4
On Feb 25, 11:59 pm, "C." <colin.mckin... @gmail.comwrote :
On 25 Feb, 20:10, "shror" <shahi...@gmail .comwrote:


i have designed an image gallery of about 20 pictures and they are
shown in thumb nail views and for viewing the largeer version of the
images i have added a radio button and a push button, so that the user
choose the picture using the radio button and click on the push button
to open the larger version picture in another window, but my problem
is that i know how to pass the selection to the second page but the
problem is how to pass the selected picture not selected value.
the first html page code is:
<form method="POST" action="gallery .php">
<input type="radio" value="V1" name="nature">
<p><input type="radio" value="V1" name="nature"></p>
<p><input type="radio" value="V1" name="nature">
</form>

You need to use different values but the same name. But really, you've
made interaction with the site a lot more complex than it needs to be
- why not just link directly to the larger version of the image - one
click instead of click, scroll, click. Even if you want to do this
with a POST (from the code you've published it should be a GET) it's
just a matter of assigning a value to a hidden field and submitting
the form using javascript.

C.- Hide quoted text -

- Show quoted text -
Thanks also for your answer Colin,
The problem is that i will be using the picture that will be chose
from the thumbnails as a larger version in the gallery.php page and
will then add some information about the picture in this second page.

so i need to get the information according to the picture choice.

Thanks so much for any help

shror
www.s7els7.com
www.beachtoursegypt.com
www.mobidp.com

Feb 26 '07 #5
On Mon, 26 Feb 2007 13:29:36 +0100, shror <sh******@gmail .comwrote:
>
thanks for your answer OmegaJunior,

i have tried the first method and i made a little bit small change and
it worked but i want to know about it and the draw back,

what i did is:
<input type="radio" value="<img src="www.mydoma in.com/directory/
image.gif">" name="nature">

and i call it in the second page gallery.php in this way:
<?php
$picture = $_POST['nature'];
echo "$picture";
?>

what do you think about this is it the same having the same drawback
or its different, am sorry if my question means nothing but am still
beginner in php, so i dont know how any person with ill intent
could make it load any file at all.
Adding the entire <imgelement into the radiobutton value is a creative
idea, but unfortunately you'll get into trouble with the quotes and the
html validity. Instead, you may want to try something like this in your
form:
<input type="radio" value="sun" name="image">

and this in your form handler:
<?php
$picture = $_POST['image']; //will now contain 'sun'
echo '<img src="http://www.yourdomain. com/nature/'.$picture.'.jp g">';
?>

The security problem comes in when someone creates a form on their own
server like so:

<form action="http://www.yourdomain. com/gallery.php" method="post">
<input type="radio" value="../veryhidden.txt" name="nature">
<input type="submit" value="OK">
</form>

That way they can have your gallery.php show the file 'veryhidden.txt ' in
the root directory of your site, unless you specifically test for the
validity of the information passed to your gallery.php. Doesn't hurt if
you don't have a 'veryhidden.txt ' file, but you get the idea. Hackers will
just guess some very common file names.

>
-------------------------------------------------------------------
about the second way,

i dont know about mime-type header!

what is it and its use and how to set it.
It's just about being nice to the browser. Check out the 'header()'
function on www.php.net. One of the ways to use it is like this:
header('content-type: image/jpg');

If used, it should be the first thing after <?php, and <?php should be the
first thing in your php file.

By supplying this, you can tell the browser what kind of file to expect.
Thus if you hand the browser an image you'd tell it to expect a mime-type
of 'image/jpg', 'image/png', 'image/gif' or whatever image you're
supplying. And if you hand the browser a web page you'd tell it to expect
a mime-type of 'text/html'.

In your case, because you're going to be printing html containing an img
element to the browser, you'd either supply a header like 'content-type:
text/html', or none at all, because for php files the default content-type
usually already is set to text/html.
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Feb 26 '07 #6
On Feb 27, 1:28 am, OmegaJunior <omegajun...@sp amremove.home.n l>
wrote:
On Mon, 26 Feb 2007 13:29:36 +0100, shror <shahi...@gmail .comwrote:
thanks for your answer OmegaJunior,
i have tried the first method and i made a little bit small change and
it worked but i want to know about it and the draw back,
what i did is:
<input type="radio" value="<img src="www.mydoma in.com/directory/
image.gif">" name="nature">
and i call it in the second page gallery.php in this way:
<?php
$picture = $_POST['nature'];
echo "$picture";
?>
what do you think about this is it the same having the same drawback
or its different, am sorry if my question means nothing but am still
beginner in php, so i dont know how any person with ill intent
could make it load any file at all.

Adding the entire <imgelement into the radiobutton value is a creative
idea, but unfortunately you'll get into trouble with the quotes and the
html validity. Instead, you may want to try something like this in your
form:
<input type="radio" value="sun" name="image">

and this in your form handler:
<?php
$picture = $_POST['image']; //will now contain 'sun'
echo '<img src="http://www.yourdomain. com/nature/'.$picture.'.jp g">';
?>

The security problem comes in when someone creates a form on their own
server like so:

<form action="http://www.yourdomain. com/gallery.php" method="post">
<input type="radio" value="../veryhidden.txt" name="nature">
<input type="submit" value="OK">
</form>

That way they can have your gallery.php show the file 'veryhidden.txt ' in
the root directory of your site, unless you specifically test for the
validity of the information passed to your gallery.php. Doesn't hurt if
you don't have a 'veryhidden.txt ' file, but you get the idea. Hackers will
just guess some very common file names.
-------------------------------------------------------------------
about the second way,
i dont know about mime-type header!
what is it and its use and how to set it.

It's just about being nice to the browser. Check out the 'header()'
function onwww.php.net. One of the ways to use it is like this:
header('content-type: image/jpg');

If used, it should be the first thing after <?php, and <?php should be the
first thing in your php file.

By supplying this, you can tell the browser what kind of file to expect.
Thus if you hand the browser an image you'd tell it to expect a mime-type
of 'image/jpg', 'image/png', 'image/gif' or whatever image you're
supplying. And if you hand the browser a web page you'd tell it to expect
a mime-type of 'text/html'.

In your case, because you're going to be printing html containing an img
element to the browser, you'd either supply a header like 'content-type:
text/html', or none at all, because for php files the default content-type
usually already is set to text/html.

--
Using Opera's revolutionary e-mail client:http://www.opera.com/mail/- Hide quoted text -

- Show quoted text -
I want to tell you OmegaJunior that am working on your answer and am
trying to get some results.
first thing
I have tested the radio button when i added the entire <imgtag in
its value part and gave me errors because of the quotes like you said.
but then i was trying and i removed the quotes and its working great
without any problem, its looking like this,

<input type="radio" value="<img src=/images/button1.png>"
name="nature">

its really working fine
second thing
about securing the form i have tested the file named 'veryhidden.txt '
and its not found, but i was wondering about what is this file and
what is the use of it how its useful for hacker.
third
am working on finding a security way for the forms and will sure get
your openion if you dont mind.
fouth and finally for now is
to Thanks you for your detailed answers and your help for now and
later :D
shror
www.s7els7.com
www.beachtoursegypt.com
www.mobidp.com

Feb 27 '07 #7
On Tue, 27 Feb 2007 01:04:42 +0100, shror <sh******@gmail .comwrote:
>
first thing
I have tested the radio button when i added the entire <imgtag in
its value part and gave me errors because of the quotes like you said.
but then i was trying and i removed the quotes and its working great
without any problem, its looking like this,

<input type="radio" value="<img src=/images/button1.png>"
name="nature">

its really working fine
Excellent! What happens when your image name contains a space? Like
'/images/the first button.png'?
>

second thing
about securing the form i have tested the file named 'veryhidden.txt '
and its not found, but i was wondering about what is this file and
what is the use of it how its useful for hacker.
As I said, you may not have a veryhidden.txt (especially since I made up
the file name), but you will have a lot of other files, that may contain
passwords or other sensitive info, or may show pictures you'd rather only
show to people you select. Point is, that a hacker will take a look at
your form, then at the gallery.php, and then will come up with a fairly
simple way of getting it to show any file on your system.

They'd have to guess the file names, so let's guess... I expect your site
to have an 'index.php', maybe an 'index.html', possibly a 'default.htm'
and a 'default.asp' depending on the web server, probably a '.htaccess',
and perhaps a '.htpwd' or '.htpassword' in case you've chosen to secure
some of your directories. In case you're using a unix or linux server it's
possible that your mail is in your directories as well.

Imagine what would happen if you'd be running a database system that
requires you to log in with a user name and password. Some systems I know
use a file named 'config.ini' or 'config.php' for storing such
configurations. Imagine a hacker who happens to know or guess the system
you use, and then requests your gallery.php to show the contents of that
configuration file? They'd get immediate access to your password, user
name, and path to the database.
>

third
am working on finding a security way for the forms and will sure get
your openion if you dont mind.
I don't mind at all.

Some things you can do:
1) Use an indexed file system, where you number your images, and you only
pass the image numbers through your form. The gallery.php will then pick
up the selected number and use it to fetch the accompanying picture. If
you add a check to see whether the received number actually is a number
and not just some text some hacker threw together, you'd be fairly safe.

2) If you insist on passing the actual directory and file names, you may
want to apply an encoding (base-64 for instance, see the b64_encode()
function) to obfuscate the names in the form. Then decode the names in the
form handler (using b64_decode() for instance) AND check to see whether
the wanted file exists in a directory of your liking (see the real_name()
and basedir() functions), AND check to see whether it's an image file and
not something else.
>

fouth and finally for now is
to Thanks you for your detailed answers and your help for now and
later :D
Much obliged! I hope it helps!

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Feb 27 '07 #8
Message-ID: <op************ ***@cp139795-a.landg1.lb.hom e.nlfrom
OmegaJunior contained the following:
>Imagine a hacker who happens to know or guess the system
you use, and then requests your gallery.php to show the contents of that
configuratio n file?

How would a gallery script show the contents of a .php file?
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Feb 27 '07 #9
On Feb 27, 10:56 am, Geoff Berrow <blthe...@ckdog .co.ukwrote:
Message-ID: <op************ ***@cp139795-a.landg1.lb.hom e.nlfrom
OmegaJunior contained the following:
Imagine a hacker who happens to know or guess the system
you use, and then requests your gallery.php to show the contents of that
configuration file?

How would a gallery script show the contents of a .php file?
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDshttp://www.ckdog.co.uk/rfdmaker/
The idea here is not to see the contents or the code of the
gallery.php but to get the code of the form and understand what it
pass to the gallery.php script which will be in this case the value of
the radio button.

second i'd like to tell you Thanks you OmegaJunior and sure you help
me and am working on what you told me and when i passed an image
containing in its name spaces i just replaced the space with %20 and
its working in the gallery.php
but if i added the image name with a space in the value of the radio
button its not read correctly in the gallery.php file so we have to
deal in the spaces with%20

shror
shror

Feb 27 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3410
by: Daniel Kelly \(AKA Jack\) | last post by:
Hi! I'm searching for a Photo Gallery software package (like Coppermine and Gallery) that works, from the ground up, like a database-driven app. In other words, I want a gallery which entirely does away with the hierarchical structure of traditional gallery apps and allows the user to select, from a list of criteria, whatever photos he or she wishes to see. For example, each photo would have entries for photographer, category, date,...
10
2878
by: matt | last post by:
I have this code, works perfectly on Windows server, but now i'm trying to run it on a Linux server, the form submits, i get no errors, but the photo doesnt upload, and the caption file doesnt write.... any ideas why?? <?php include 'gall_settings.inc';
7
3271
by: Eric Lindsay | last post by:
I would like to do a photo gallery with a liquid layout. I wanted to center a caption below each photo (or above each photo). I can do that easily with tables, but then I don't have a liquid layout. Besides, I wanted to try to do it with CSS. I can do centered captions with text-align. This works provided the element containing each photo is floated left. I have found several examples of how to do this. However I didn't want the...
1
2915
by: desjardins.daniel | last post by:
Hi ! Excuse my english, i'm a french canadien... So here my message : I have put on my site a photo gallery and at the right a nav menu. This menu has a red dot visible want someone is passing over one item or clickong one item. I want to make two things in this page (the sameone http://www.danieldesjardins.com/gallery/1202015) so it would be like a
13
4347
by: Viken Karaguesian | last post by:
Hello everyone, Can anyone recommend a good online site to learn PHP? The W3Schools website is quite lacking - leaves much to be desired. I'm sure there are many places, but which ones are good? I currently run a site with an extensive photo gallery. Hundreds of photos. Right now I have a system which the thumbnails are laid out in a table. You click on a thumbnail and you see the full size picture. That full size picture is in its...
1
2228
by: Throw | last post by:
G'day everyone I'm looking for a simple photo gallery script in PHP (or Perl), but not too simple. I have tried several photo gallery scripts in either language and I have found that they are either too complex or too simple for my purpose. Most photo gallery scripts are intended primarily for sharing new photos continuously and allowing visitors to comment on them. I want something more static, which allows more text content.
1
3606
by: cumupkid | last post by:
II am trying to create a form that will allow me to upload photos to a folder in the site root directory and add the information to the mysql db at the same time. I have created two forms, one that uploads to photo to the folder in the site root diorectory. One that uploads the info to mysql database. but... When I try to upload them both ways at the same time i cant get it. I am Including code for both pages i have working. Code for...
1
1831
by: popotz | last post by:
Hi..I really need a big help.. I was wondering how to make my own photo gallery for my own website. The photo must be uploaded first, and then it automaticly putted into the gallery..if we click the photo, then it will go to the photo full sreen.. I don't know how to make the script for put it into the gallery.. best regards, Erwin Chrisman
0
2306
nomad
by: nomad | last post by:
Hello Everyone. I founded an Flash and xml photo gallery. It works but I took it to another step What I want is to have six different galleries in one Flash file. I figure out how to do that but when I click on the the galleries I can see the pervious gallery files. The gallery works like this: When you open the gallery there are links on top of the page where you can go to other gallery; with gallery one which has small thumbnails on...
0
8997
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8833
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9335
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6801
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6079
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4709
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4881
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2794
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2218
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.