zypper addrepo -f http://packman.inode.at/suse/openSUSE_Leap_15.2/ packman
https://opensuse-guide.org/repositories.php
zypper addrepo -f http://packman.inode.at/suse/openSUSE_Leap_15.2/ packman
https://opensuse-guide.org/repositories.php
by mflorell » Fri Nov 13, 2020 12:46 pm
by mflorell » Thu Oct 22, 2020 6:51 am
by mflorell » Sun Aug 23, 2020 11:49 am
by mflorell » Tue Jul 26, 2016 8:07 am
Have you tried not using AMD at all? We usually recommend to our clients that they try to not use it because of the delay it adds to routing calls to agents.
http://vicidial.org/VICIDIALforum/viewtopic.php?f=4&t=39700
create this file vultr.conf
on
/etc/apache2/vhosts.d
<VirtualHost *:34582>
ServerName 195.179.196.98
DocumentRoot "/srv/www/htdocs/vultr/"
</VirtualHost>
---------------------------
make the the custom port to listen 34582
/etc/apache2/Listen.conf
<IfDefine SSL>
<IfDefine !NOSSL>
<IfModule mod_ssl.c>
Listen 443
</IfModule>
</IfDefine>
</IfDefine>
# ViciBox Dynamic Portal
Listen 81
Listen 446
Listen 34582
by mflorell » Tue Aug 11, 2020 8:01 pm
<?php | |
print_r($_GET); | |
echo shell_exec("curl -d \"first_name=$_GET[first_name]&last_name=$_GET[last_name]&email=$_GET[email]&company=$_GET[company]&city=$_GET[city]&state=$_GET[state]&phone=$_GET[phone]&street=$_GET[street]&oid=$_GET[oid]\" \"https://webto.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8\" "); | |
foreach($_GET as $key=>$value) { | |
echo system("echo '$value' > /srv/www/htdocs/salesforce/post.log "); | |
} | |
?> /srv/www/htdocs/salesforce/post.php |