- Check
wp-config.php
permission(Set644
) - Show error setting on
.htaccess
php_flag display_errors on
- Set debug mode on
wp-config.php
- Access by Firefox.(not Chrome)
# Import everything needed to edit video clips | |
from moviepy.editor import * | |
from vectortween.PointAnimation import PointAnimation | |
fps = 25 | |
duration = 10 | |
W = 2000 | |
H = 500 | |
# Generate a text clip |
/* | |
save this file as "rendered_fonts.js" | |
yarn add puppeteer | |
node rendered_fonts.js | |
*/ | |
const puppeteer = require('puppeteer'); | |
(async () => { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); |
wp-config.php
permission(Set 644
).htaccess
php_flag display_errors on
wp-config.php
>vagrant up |
.clearfix:before { | |
display: table; | |
content: " "; | |
} | |
.clearfix:after { | |
display: table; | |
content: " "; | |
clear: both; | |
} |
<?php | |
/* One of the upload fields as an example */ | |
?> | |
<tr> | |
<th><label for="ols_user_meta_image_1"><?php _e( 'OLS Image 1', 'textdomain' ); ?></label></th> | |
<td> | |
<!-- Outputs the image after save --> | |
<img src="<?php echo esc_url( get_the_author_meta( 'ols_user_meta_image_1', $user->ID ) ); ?>" style="width:150px;"><br /> | |
<!-- Outputs the text field and displays the URL of the image retrieved by the media uploader --> |
This should help you get Sendmail installed with basic configuration on Ubuntu.
sudo apt-get install sendmail
/etc/hosts
file: nano /etc/hosts
127.0.0.1 localhost yourhostname
sudo sendmailconfig
sudo service apache2 restart