목록php (4)
우도비
wp-config.phpdefine('FS_METHOD', 'direct') - 웹에서 다이렉트로 받게 해줌 ( ssh, ftp 안씀)sudo chown -R www-data:www-data /var/www/wordpress - 폴더 소유주에 아파치 등록 ( 요래야 웹에서 업로드 사용가능) 권한 변경find . -type f -exec chmod 664 {} \;find . -type d -exec chmod 775 {} \; sudo usermod -a -G ubuntu www-data - www-data 그룹에 ubuntu 유저 추가
ORMhttps://github.com/kladd/slim-eloquent templatehttps://github.com/clickcoder/slim-blade
http://creatingawebstore.com/how-to-install-woocommerce-dummy-data.html
reference url : http://swiftmailer.org/sample code // Create the Transport$transport = Swift_SmtpTransport::newInstance('smtp.cafe24.com', 587, 'tls') ->setUsername('아이디') ->setPassword('비번'); // Create the Mailer using your created Transport$mailer = Swift_Mailer::newInstance($transport); $message = Swift_Message::newInstance();$message->setSubject('Welcome') ->setFrom(array('sm.oh@visualrhyme...