- Introduction
-
Getting Started
- How to Enable or Disable Users Registration
- How to Enable or Disable User Account Activation
- How to Add Auto Follow Accounts
- How to Enable/Disable Debug
- How to Create A Language Pack
- How to Import A Language Pack
- How to Manage Language Packs
- How to Manage Phrase
- How to Verify, Activate, Ban, and Set Members Role
- How to Update System
- How to Manage Plugins
- How to Manage Core Plugins
- How To Setup Bing Translator
- How to install crea8social script
- Quick Links
- How To Detect And Face Tag
- How to extract the zipped crea8social android application
-
Android App and Messenger Setup
- Google settings Instruction
- Twitter Login Setup Instruction
- Facebook Login Setup Instruction
- Creating Admob Unit Instrution
- How to compile Crea8social Messenger App
- How to extract and import the messenger folder to android studio
- Changing the logo and icon launcher of Crea8social Messenger App
- How to add different languages to the Messenger code
- How to generate google Service JSON file for Messenger
- Inserting google service JSON file to code
- Package name in crea8social Messenger
- Linking messenger to app and website and including twitter key and secret
- How to Setup LiveStreaming Server
- Installing Android Studio
- How to extract zipped messenger folder
- How to change the logo and icon launcher of Crea8social Messenger App
-
Setup
- How to Setup Social Integration Plugin for Facebook
- How to Setup Social Integration Plugins for Twitter
- How to Setup social integration plugins for VK
- How to Set Up Your Social Integration Plugins for G+
- How To Setup Amazon S3 As Your CDN Servers
- How To Setup CDN Storage
- How To Setup Email
- How to setup Video / Audio Call
-
Website Management
- How to Change or Edit Site Title
- How to send mail to members in the mailing list
- How to set site logo and favicon
- How to add emoticon
- How to send push notification
- How to manage emoticon
- How to manage posts
- How to Activate a Theme
- How to add custom fields
- How to create/edit Announcement
- How to Edit Country
- How To Change Your Password
- How to edit your profile
- How To Delete Announcement
- How to Add Custom Fields to the Page Creation Form
- How to add music
- How to Edit/Delete Event Category
- How to add music category
- How to Add Event Category
- How to Edit / Delete Blog Categories
- How to Add Blogs Category
- How to change music category, title, artist, album, and cover art
- How to change music privacy
- How to edit music info
- How to add video category
- How to Edit Blogs
- How to Add New Blog
- How to create ads
- How to add ads plans
- How to edit ads plans
- How to do Ads Settings
- How to Edit / Delete Game Category
- How to Add Game Category
- How to Add Game
- How to create new forum topic
- How to add forum category
- How to add forum tag
- How to edit, delete forum tag
- How to edit, delete forum thread
- How to edit, delete group in admin panel
- How to add help
- How to Add Feedback Severity
- How to add help category
- How to add marketplace category
- How to delete, edit marketplace category
- How to manage marketplace listing
- How to add new marketplace listing
- How to Add feedback Category
- How to manage feedback
- How to Create New feedback
- How to Backup & Restore Files
- Automatic system upgrade settings
- How to move Lite Version Database to Pro Version Database
- How to edit a static page
- How to create a static page
- How to Enable or Disable HTTPS
- How to Add Verification Question
- How to Setup Memory
- How Activate Modal Editor for Feed
- Background Features for Feed Post
- How to activate video pop up
- How to Clear Temporary Data from Admincp Menu
- How to Set Live Streaming Server
- How to make LiveStreaming Video
- How to Activate Plugins
- How to Set Currency Conveter
- How to Add Category on Auction plugin And Adding of Auction
- How to Add Categories and Business Plan
- How to Activate Note Plugin and How it Works
- How to Add Confession
- How to Add Contact
- How to Purchase Credit, Add and Send Credit
- How To Add Relationship
- How To Add Slide Show
- How To Detect And Face Tag
- How to Setup and Add Testimonial
- How To Create Category, Plan and Add Survey
- Hacked
- User Management
- Installation
- Support Policy
- Customization
- Plugins Developer Documentation
- Theme Developer Documentation
- How To Upgrade
- General FAQ
- Policy FAQ
- Refund Policy
Using cache system
Using cache system in your plugin involve you usiing our cache library. crea8social makes use of simple and bootstrap functions to manipulate/cache data.This function are readily available on any page.
To save a data to cache the function set_cache() can be called.
users would be cached for 300 seconds.
users would be cached for a default time of 60 seconds.
This function set_cache() automatically generates a file and serializes the data into it.When not passed the third arguement which is the amount in seconds to cache data for will assume a default of 60 seconds to cache data.
#Get_Cache()
This function get_cache() accepts a key and a default value to return as parameters to retrieve data assigned to that key from cache, and if no
such key is found it returns $default value passed to it or if time data was cached for as elapsed it also returns $default.
#Set_CacheForever()
This function set_cacheForever() functions similarly to set_cache(), but instead takes two parameters the key and value without the time.It saves data forever. It can be deleted when cache_flush() is called
#Forget_Cache()
Thanks for reading