Installing MongoDB in XAMPP Windows

https://carlofontanos.com/installing-mongodb-in-xampp-windows/   Go to your c:/ drive and create a folder “mongodb“ Download mongoDB from this link: http://www.mongodb.org/downloads (the download button…

6 سال پیش

Cakephp using bindmodel to get to deep relations

http://mark-story.com/posts/view/using-bindmodel-to-get-to-deep-relations   Now we want to find the Division that a particular Item belongs to. In normal SQL we could do Show…

7 سال پیش

Cakephp Multiple languages

http://blog.designs.codes/multi-language-website-using-cakephp/   Multiple languages in a CakePHP 2.* application in 5 steps https://book.cakephp.org/2.0/en/core-libraries/internationalization-and-localization.html  

7 سال پیش

Add file to media library programmatically

<?php $file = ‘/path/to/file.png’; $filename = basename($file); $upload_file = wp_upload_bits($filename, null, file_get_contents($file)); if (!$upload_file[‘error’]) { $wp_filetype = wp_check_filetype($filename, null );…

7 سال پیش

Using The WordPress Debug Log

define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_DISPLAY’, false ); define( ‘WP_DEBUG_LOG’, true ); if ( ! function_exists(‘write_log’)) { function write_log (…

7 سال پیش

How to merge / concatenate mp3s with PHP

http://www.theblog.ca/merge-mp3s-php   One of the new features of my anti-spam plugin is the ability to create auto-generated mp3 files. The plugin concatenates individual…

7 سال پیش

Android Generating Signed apk

ساخت فایل (گرفتن خروجی) APK و AAB در اندروید استودیو   https://developer.android.com/studio/publish/app-signing.html

7 سال پیش