- From old documents: https://laravel.com/docs/5.1/validation#rule-unique
- An excelent answer in SO: https://stackoverflow.com/questions/41300438/how-to-ignore-soft-delete-in-laravel-multiple-unique-columns-in-laravel-5-3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName my.domain.com | |
ServerAlias my.domain.com | |
DocumentRoot /var/www/my.domain.com | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
<Directory "/var/www/my.domain.com"> | |
Options Includes FollowSymLinks MultiViews | |
AllowOverride All |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system systemId="https://footballpool.dataaccess.eu/info.wso?WSDL" uri="wsdl/footballpool.dataaccess.eu/info.wso.wsdl"/> |
/*try {
HelloWebService_Service service = new HelloWebService_Service();
HelloWebService port = service.getHelloWebServicePort();
this.texto = port.hello("Jacobo");
} catch(Exception e) {
throw e;
}*/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT id, name, discount from (SELECT (property_tier.tier_id) as active_tier_id from (property_tier, user_tier) WHERE property_tier.tier_id = user_tier.tier_id) q INNER JOIN tiers on q.active_tier_id = tiers.id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<audio id="player" controls></audio> | |
<script> | |
var player = document.getElementById('player'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SSLProtocol ALL -SSLv2 -SSLv3 | |
SSLHonorCipherOrder On | |
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS | |
//Then default at apache global suites |
Tras mover la página a un servidor de privado, tuvimos automáticamente la versión solicitada de Exim. exim-4.89.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var enviado; | |
jQuery(document).ready(function () { | |
jQuery("#frmContacto").submit(function (event) { | |
jQuery("#alertaContacto").empty(); | |
jQuery.ajax({ | |
url: "/Contactanos/DetalleContactos", | |
data: jQuery("#frmContacto").serialize(), | |
dataType: "json", | |
type: "get", | |
contentType: "application/json; charset=utf-8", |