- http://i.cmaas.net/pc/Linux/Wine/1368700507 (ja)
- https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/939301
- https://forums.ubuntulinux.jp/viewtopic.php?id=13910 (ja)
- OS: Knoppix 7.0.3 LCR
- DE: LXDE
RewriteEngine on | |
RewriteCond %{SERVER_NAME} =tk.opdev.eu | |
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] |
Notice típus: Undefined offset: 1 üzenet varbase_bootstrap_paragraphs_field_widget_entity_reference_paragraphs_form_alter() függvényben (/home/magnet/www/magnet/docroot/modules/contrib/varbase_bootstrap_paragraphs/varbase_bootstrap_paragraphs.module fájl 141. sorában). => Array | |
( | |
[33: varbase_bootstrap_paragraphs_field_widget_entity_reference_paragraphs_form_alter()] => Array | |
( | |
[file] => modules/contrib/varbase_bootstrap_paragraphs/varbase_bootstrap_paragraphs.module:141 | |
[args] => Array | |
( | |
[0] => Array | |
( | |
[#title] => |
.bg-edge2edge { | |
width: 100vw; | |
position: relative; | |
left: 50%; | |
right: 50%; | |
margin-left: -50vw; | |
margin-right: -50vw; | |
} |
add_action('wp', 'add_login_check'); | |
add_action( 'template_redirect', function() { | |
if ( is_page('szavaz') && ! is_user_logged_in() ){ | |
wp_redirect( site_url( '/' ) ); | |
exit(); | |
} |
<?php | |
namespace App; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\SoftDeletes; | |
class Article extends Model | |
{ | |
// use soft delete instead of permanent delete |
#!/bin/bash | |
path=${1%/} | |
user=${2} | |
group=${2} | |
help="\nHelp: This script is used to fix permissions of a Drupal 8 installation in which the PHP Handler is FastCGI\nYou need to provide the following arguments:\n\t 1) Path to your drupal installation\n\t 2) Username of the user that you want to give files/directories ownership\n\nNote: This script assumes that the group is the same as the username if your PHP is compiled to run as FastCGI. If this is different you need to modify it manually by editing this script or checking out forks on GitHub.\nUsage: bash ${0##*/} drupal_path user_name\n" | |
echo "Refer to https://www.Drupal.org/node/244924" |
//https://chiefthemes.com/create-wordpress-recent-posts-shortcode/ | |
<?php | |
function chiefthemes_posts_shortcode($atts, $content = NULL) | |
{ | |
$atts = shortcode_atts( | |
[ | |
'orderby' => 'date', |