Re: [PacketFence-users] Error importing OVA file in vcenter 6.5

2017-10-23 Thread Stephen Appleby via PacketFence-users
I had the Same issue. If you import the ova into VMware workstation, then 
export it as a OVF again. You can import that into vcenter. If you don’t have 
workstation available there are some free ova tools available on the VMware 
website that will do the same him via command line

Get Outlook for iOS

From: Roberto Lulli via PacketFence-users 

Sent: Monday, October 23, 2017 8:07:13 AM
To: packetfence-users@lists.sourceforge.net
Cc: Roberto Lulli
Subject: [PacketFence-users] Error importing OVA file in vcenter 6.5

Good morning,
I'm looking for a while in the archive but I do not find much. I'm
trying to import the OVA packetFence-ZEN-7.3.0.zip file to vcenter 6.5
but I get the error: "the provided manifest file is invalid: invalid OVF
manifest entry".
I have already tried to unpack the OVA and import the OVF files directly
as well as to rebuild everything with OVF tools, but I always get the
same error.

Best regard,
Roberto

--
System & Network Administrator

Dipartimento di Fisica - Università di Roma Tor Vergata
INFN - Sez. di Roma Tor Vergata

Via della Ricerca Scientifica, 1
00133 - Rome - Italy

Tel.: +39-06-72594527E-Mail: roberto.lu...@roma2.infn.it


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] SMS gateway configuration

2017-10-23 Thread Nicolay Rytchev via PacketFence-users
Ok,
By this way I will insert a new entry in the database table on PF server.
But where can I add my own SMS Gateway  ip address configuration?
I will try to explain, It is my local SMTP SMS gateway , it is not
provider's SMS server.

Thank you in advance.
Nicolay


2017-10-23 15:59 GMT+02:00 Fabrice Durand via PacketFence-users <
packetfence-users@lists.sourceforge.net>:

> Hello Nicolay,
>
> just do:
>
> mysql -upf -p pf
>
> INSERT INTO sms_carrier
> (id, name, email_pattern, created)
> VALUES
> (100122, 'MyGateway', '%s@mygateway.gateway', now());
>
> exit
>
>
> That's it.
>
> Regards
>
> Fabrice
>
>
>
> Le 2017-10-23 à 09:55, Nicolay Rytchev via PacketFence-users a écrit :
>
> Hello Fabrice,
>
> Thank you for your advice. I am not really familiar with database
> configuration.
> I am network engineer.
> Could you be more specific about how and where to do that?
>
>
> Regards,
> Nicolay
>
>
> 2017-10-23 15:30 GMT+02:00 Fabrice Durand via PacketFence-users <
> packetfence-users@lists.sourceforge.net>:
>
>> Hello Nicolay,
>>
>> if it's a new SMS gateway then you will need to import it in the database.
>>
>> So connect to the database and:
>>
>> INSERT INTO sms_carrier
>> (id, name, email_pattern, created)
>> VALUES
>> (100122, 'MyGateway', '%s@mygateway.gateway', now());
>>
>> Regards
>>
>> Fabrice
>>
>>
>> Le 2017-10-20 à 09:50, Nicolay Rytchev via PacketFence-users a écrit :
>>
>> Hello All,
>>
>> I want to implement SMS authentication by PF Captive Portal, as I
>> understand it works via email.
>> PF takes phone number and PIN information from the body of the letter and
>> can send this information to the SMS gateway by SMTP.
>> Where can I do that ?
>> How can I specify my own SMS Gateway  in the menu?
>>
>>
>> Thank you in advance.
>>
>>
>>
>>
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>
>>
>>
>> ___
>> PacketFence-users mailing 
>> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>>
>>
>> --
>> Fabrice durandfdur...@inverse.ca ::  +1.514.447.4918 <%28514%29%20447-4918> 
>> (x135) ::  www.inverse.ca
>> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
>> (http://packetfence.org)
>>
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> PacketFence-users mailing list
>> PacketFence-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>>
>>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
>
> ___
> PacketFence-users mailing 
> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
> --
> Fabrice durandfdur...@inverse.ca ::  +1.514.447.4918 <(514)%20447-4918> 
> (x135) ::  www.inverse.ca
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org)
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] SMS gateway configuration

2017-10-23 Thread Fabrice Durand via PacketFence-users
Hello Nicolay,

just do:

mysql -upf -p pf

INSERT INTO sms_carrier
    (id, name, email_pattern, created)
VALUES
    (100122, 'MyGateway', '%s@mygateway.gateway', now());

exit


That's it.

Regards

Fabrice



Le 2017-10-23 à 09:55, Nicolay Rytchev via PacketFence-users a écrit :
> Hello Fabrice,
>
> Thank you for your advice. I am not really familiar with database
> configuration.
> I am network engineer.
> Could you be more specific about how and where to do that?
>
>
> Regards,
> Nicolay
>
>
> 2017-10-23 15:30 GMT+02:00 Fabrice Durand via PacketFence-users
>  >:
>
> Hello Nicolay,
>
> if it's a new SMS gateway then you will need to import it in the
> database.
>
> So connect to the database and:
>
> INSERT INTO sms_carrier
>     (id, name, email_pattern, created)
> VALUES
>     (100122, 'MyGateway', '%s@mygateway.gateway', now());
>
> Regards
>
> Fabrice
>
>
> Le 2017-10-20 à 09:50, Nicolay Rytchev via PacketFence-users a écrit :
>> Hello All,
>>
>> I want to implement SMS authentication by PF Captive Portal, as I
>> understand it works via email.
>> PF takes phone number and PIN information from the body of the
>> letter and can send this information to the SMS gateway by SMTP.
>> Where can I do that ?
>> How can I specify my own SMS Gateway  in the menu?
>>
>>
>> Thank you in advance.
>>
>>
>>
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>
>>
>> ___
>> PacketFence-users mailing list
>> PacketFence-users@lists.sourceforge.net
>> 
>> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>> 
>
> -- 
> Fabrice Durand
> fdur...@inverse.ca  ::  +1.514.447.4918 
>  (x135) ::  www.inverse.ca 
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org) 
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
> 
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Logo change problem

2017-10-23 Thread Nicolay Rytchev via PacketFence-users
Hello Fabrice,

Yes it works.
Thanks a lot.

Regards,
Nicolay


2017-10-23 15:25 GMT+02:00 Fabrice Durand via PacketFence-users <
packetfence-users@lists.sourceforge.net>:

> Hello Nicolay,
>
> something like that should work:
>
> /common/IPGL.png
> Regards
> Fabrice
>
> Le 2017-10-20 à 03:37, Nicolay Rytchev via PacketFence-users a écrit :
>
> Hello All,
>
> I try to change logo on portal web page but without success.
> May be special path for the file should be specified ?
>
>
>
> [image: Встроенное изображение 1]
>
> Thank you in advance.
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
>
> ___
> PacketFence-users mailing 
> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
> --
> Fabrice durandfdur...@inverse.ca ::  +1.514.447.4918 <%28514%29%20447-4918> 
> (x135) ::  www.inverse.ca
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org)
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] SMS gateway configuration

2017-10-23 Thread Nicolay Rytchev via PacketFence-users
Hello Fabrice,

Thank you for your advice. I am not really familiar with database
configuration.
I am network engineer.
Could you be more specific about how and where to do that?


Regards,
Nicolay



2017-10-23 15:30 GMT+02:00 Fabrice Durand via PacketFence-users <
packetfence-users@lists.sourceforge.net>:

> Hello Nicolay,
>
> if it's a new SMS gateway then you will need to import it in the database.
>
> So connect to the database and:
>
> INSERT INTO sms_carrier
> (id, name, email_pattern, created)
> VALUES
> (100122, 'MyGateway', '%s@mygateway.gateway', now());
>
> Regards
>
> Fabrice
>
>
> Le 2017-10-20 à 09:50, Nicolay Rytchev via PacketFence-users a écrit :
>
> Hello All,
>
> I want to implement SMS authentication by PF Captive Portal, as I
> understand it works via email.
> PF takes phone number and PIN information from the body of the letter and
> can send this information to the SMS gateway by SMTP.
> Where can I do that ?
> How can I specify my own SMS Gateway  in the menu?
>
>
> Thank you in advance.
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
>
> ___
> PacketFence-users mailing 
> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
> --
> Fabrice durandfdur...@inverse.ca ::  +1.514.447.4918 <%28514%29%20447-4918> 
> (x135) ::  www.inverse.ca
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org)
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] R: Radiusd don't start after upgarde

2017-10-23 Thread Fabrice Durand via PacketFence-users
Hello Luca,

can you check in conf/radiusd if you have some .conf.rpmnew files ?
And if yes can you rename them to .conf and retry ?

Regards
Fabrice



Le 2017-10-19 à 10:52, Luca Messori a écrit :
>
> Ho Fabrice,
>
> this is my auth,conf file:
>
>  
>
> [root@PacketFence-ZEN conf]# cat  /usr/local/pf/raddb/auth.conf
>
>  
>
> pidfile = /usr/local/pf/var/run/radiusd.pid
>
>  
>
> $INCLUDE radiusd.conf
>
>  
>
> listen {
>
>     ipaddr = 127.0.0.1
>
>     port = 18120
>
>     type = auth
>
>     virtual_server = packetfence
>
> }
>
>  
>
>  
>
> listen {
>
>     ipaddr = 10.33.33.50
>
>     port = 0
>
>     type = auth
>
>     virtual_server = packetfence
>
> }
>
>  
>
> listen {
>
>     ipaddr = 10.33.33.50
>
>     port = 2083
>
>     type = auth+acct
>
>     proto = tcp
>
>     virtual_server = packetfence
>
>  
>
>     limit {
>
>   max_connections = 16
>
>   lifetime = 0
>
>   idle_timeout = 30
>
>     }
>
>  
>
>     tls {
>
>     private_key_file = /usr/local/pf/raddb/certs/server.key
>
>     certificate_file = /usr/local/pf/raddb/certs/server.crt
>
>     ca_file = /usr/local/pf/raddb/certs/ca.pem
>
>     dh_file = ${certdir}/dh
>
>     fragment_size = 8192
>
>     ca_path = ${cadir}
>
>     cipher_list = "DEFAULT"
>
>     require_client_cert = yes
>
>     }
>
> }
>
>  
>
>  
>
>  
>
> listen {
>
>     type = control
>
>     socket = /usr/local/pf/var/run/radiusd.sock
>
>     mode = rw
>
> }
>
>  
>
> log {
>
>    #
>
>     #  Destination for log messages.  This can be one of:
>
>     #
>
>     #   files - log to "file", as defined below.
>
>     #   syslog - to syslog (see also the "syslog_facility", below.
>
>     #   stdout - standard output
>
>     #   stderr - standard error.
>
>     #
>
>     #  The command-line option "-X" over-rides this option, and forces
>
>     #  logging to go to stdout.
>
>     #
>
>     destination = syslog
>
>  
>
>     #
>
>     #  Highlight important messages sent to stderr and stdout.
>
>     #
>
>     #  Option will be ignored (disabled) if output if TERM is not
>
>     #  an xterm or output is not to a TTY.
>
>     #
>
>     colourise = yes
>
>  
>
>     #
>
>     #  The logging messages for the server are appended to the
>
>     #  tail of this file if destination == "files"
>
>     #
>
>     #  If the server is running in debugging mode, this file is
>
>     #  NOT used.
>
>     #
>
>     file = ${logdir}/radius.log
>
>  
>
>     #
>
>     #  If this configuration parameter is set, then log messages for
>
>     #  a *request* go to this file, rather than to radius.log.
>
>     #
>
>     #  i.e. This is a log file per request, once the server has
> accepted
>
>     #  the request as being from a valid client.  Messages that are
>
>     #  not associated with a request still go to radius.log.
>
>     #
>
>     #  Not all log messages in the server core have been updated
> to use
>
>     #  this new internal API.  As a result, some messages will still
>
>     #  go to radius.log.  Please submit patches to fix this behavior.
>
>     #
>
>     #  The file name is expanded dynamically.  You should ONLY user
>
>     #  server-side attributes for the filename (e.g. things you
> control).
>
>     #  Using this feature MAY also slow down the server substantially,
>
>     #  especially if you do thinks like SQL calls as part of the
>
>     #  expansion of the filename.
>
>     #
>
>     #  The name of the log file should use attributes that don't
> change
>
>     #  over the lifetime of a request, such as User-Name,
>
>     #  Virtual-Server or Packet-Src-IP-Address.  Otherwise, the log
>
>     #  messages will be distributed over multiple files.
>
>     #
>
>     #  Logging can be enabled for an individual request by a special
>
>     #  dynamic expansion macro:  %{debug: 1}, where the debug level
>
>     #  for this request is set to '1' (or 2, 3, etc.).  e.g.
>
>     #
>
>     #   ...
>
>     #   update control {
>
>     #  Tmp-String-0 = "%{debug:1}"
>
>     #   }
>
>     #   ...
>
>     #
>
>     #  The attribute that the value is assigned to is unimportant,
>
>     #  and should be a "throw-away" attribute with no side effects.
>
>     #
>
>     #requests =
> ${logdir}/radiusd-%{%{Virtual-Server}:-DEFAULT}-%Y%m%d.log
>
>  
>
>     #
>
>     #  Which syslog facility to use, if ${destination} == "syslog"
>
>     #
>
>     #  The exact values permitted here are OS-dependent.  You probably
>
>     #  don't want to change this.
>
>     #
>
>     syslog_facility = 

Re: [PacketFence-users] SMS gateway configuration

2017-10-23 Thread Fabrice Durand via PacketFence-users
Hello Nicolay,

if it's a new SMS gateway then you will need to import it in the database.

So connect to the database and:

INSERT INTO sms_carrier
    (id, name, email_pattern, created)
VALUES
    (100122, 'MyGateway', '%s@mygateway.gateway', now());

Regards

Fabrice


Le 2017-10-20 à 09:50, Nicolay Rytchev via PacketFence-users a écrit :
> Hello All,
>
> I want to implement SMS authentication by PF Captive Portal, as I
> understand it works via email.
> PF takes phone number and PIN information from the body of the letter
> and can send this information to the SMS gateway by SMTP.
> Where can I do that ?
> How can I specify my own SMS Gateway  in the menu?
>
>
> Thank you in advance.
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Logo change problem

2017-10-23 Thread Fabrice Durand via PacketFence-users
Hello Nicolay,

something like that should work:

/common/IPGL.png

Regards
Fabrice

Le 2017-10-20 à 03:37, Nicolay Rytchev via PacketFence-users a écrit :
> Hello All,
>
> I try to change logo on portal web page but without success.
> May be special path for the file should be specified ?
>
>
>
> Встроенное изображение 1
>
> Thank you in advance.
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


[PacketFence-users] Error importing OVA file in vcenter 6.5

2017-10-23 Thread Roberto Lulli via PacketFence-users

Good morning,
I'm looking for a while in the archive but I do not find much. I'm 
trying to import the OVA packetFence-ZEN-7.3.0.zip file to vcenter 6.5 
but I get the error: "the provided manifest file is invalid: invalid OVF 
manifest entry".
I have already tried to unpack the OVA and import the OVF files directly 
as well as to rebuild everything with OVF tools, but I always get the 
same error.


Best regard,
Roberto

--
System & Network Administrator

Dipartimento di Fisica - Università di Roma Tor Vergata
INFN - Sez. di Roma Tor Vergata

Via della Ricerca Scientifica, 1
00133 - Rome - Italy

Tel.: +39-06-72594527E-Mail: roberto.lu...@roma2.infn.it




smime.p7s
Description: Firma crittografica S/MIME
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Logo change problem

2017-10-23 Thread Nicolay Rytchev via PacketFence-users
Hello Hubert,

I did it. Nothing changes.
I can`t  see the both files as my logo on web page.

[root@COA common]# ls -la
total 448
drwxr-xr-x. 4 pf   pf 4096 Oct 23 16:30 .
drwxr-xr-x. 6 pf   pf 4096 Sep 28 18:10 ..
-rw-r--r--. 1 pf   pf15086 Feb 24  2017 favicon.ico
-rw-r--r--. 1 pf   pf 1605 Feb 24  2017 Gruntfile.js
drwxr-xr-x. 2 pf   pf 4096 Sep 28 18:10 img
-rw-r--r--  1 root root  12616 Oct 12 10:51 IPGL.png
-rw-r--r--  1 pf   pf 6134 Jan 23  2017 ipgp-logo_large.png
-rw-r--r--. 1 pf   pf95957 Feb 24  2017 jquery-1.11.3.min.js
-rw-r--r--. 1 pf   pf   35 Feb 24  2017 network-access-detection.gif
-rw-r--r--. 1 pf   pf 1416 Feb 24  2017 package.json
-rw-r--r--. 1 pf   pf 4283 Feb 24  2017 packetfence-cp.png
-rw-r--r--. 1 pf   pf 7198 Feb 24  2017 packetfence.png
-rw-r--r--. 1 pf   pf 5313 Feb 24  2017 packetfence-white.png
-rw-r--r--. 1 pf   pf 4514 Feb 24  2017 pf.js
-rw-r--r--. 1 pf   pf   199803 Feb 24  2017 prototype.js
drwxr-xr-x. 2 pf   pf 4096 Sep 28 18:10 scss
-rw-r--r--. 1 pf   pf27696 Feb 24  2017 styles.css
-rw-r--r--. 1 pf   pf27696 Feb 24  2017 styles-dark.css

With best regards,
Nic



2017-10-23 6:40 GMT+02:00 Hubert Kupper via PacketFence-users <
packetfence-users@lists.sourceforge.net>:

> Hi,
>
> replace the /usr/local/pf/html/common/packetfence-cp.png with your logo
> .png file.
>
> Regards,
> Hubert
>
> Am 20.10.2017 um 09:37 schrieb Nicolay Rytchev via PacketFence-users:
>
> Hello All,
>
> I try to change logo on portal web page but without success.
> May be special path for the file should be specified ?
>
>
>
> [image: Встроенное изображение 1]
>
> Thank you in advance.
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
>
> ___
> PacketFence-users mailing 
> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
> --
> _
> Hubert Kupper
> Universitaetsrechenzentrum in Landau
> Fortstrasse 7, D-76829 Landau
> Tel: +49 6341/28031173 <+49%206341%2028031173> Fax: +49 6341/28031267 
> <+49%206341%2028031267>
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Logo change problem

2017-10-23 Thread Hubert Kupper via PacketFence-users

Hi,

replace the /usr/local/pf/html/common/packetfence-cp.png with your logo 
.png file.


Regards,
Hubert

Am 20.10.2017 um 09:37 schrieb Nicolay Rytchev via PacketFence-users:

Hello All,

I try to change logo on portal web page but without success.
May be special path for the file should be specified ?



Встроенное изображение 1

Thank you in advance.




--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot


___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


--
_
Hubert Kupper
Universitaetsrechenzentrum in Landau
Fortstrasse 7, D-76829 Landau
Tel: +49 6341/28031173 Fax: +49 6341/28031267

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users