User Tools

Site Tools


general_and_faq:faq

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
general_and_faq:faq [2015/06/21 23:32]
mooadmin
general_and_faq:faq [2015/06/21 23:38]
mooadmin
Line 1: Line 1:
 ====== Frequently Asked Questions ====== ====== Frequently Asked Questions ======
 +
 +===== General FAQ =====
  
   * **Is the source code encrypted?​** ​ \\ No, you have 100% access to the source code.   * **Is the source code encrypted?​** ​ \\ No, you have 100% access to the source code.
Line 5: Line 7:
   * **Do I need to have any mooSocial branding on my site? **  \\ Absolutely not. Unlike other prodducts, we do not force you to have our branding on your site.   * **Do I need to have any mooSocial branding on my site? **  \\ Absolutely not. Unlike other prodducts, we do not force you to have our branding on your site.
   * **Does the script include any other languages. **  \\ English is the only default language used in mooSocial. However, You could translate mooSocial yourself as it is very easy to do so or you could find third party language packs on our [[http://​community.moosocial.com|mooCommunity]] site .   * **Does the script include any other languages. **  \\ English is the only default language used in mooSocial. However, You could translate mooSocial yourself as it is very easy to do so or you could find third party language packs on our [[http://​community.moosocial.com|mooCommunity]] site .
-  * ** Is it easy to translate the software?​** ​ \\ Yes, very easy. All the language strings are in a single language file. You can also install a third party software to make your translation even easier.+  * **Is it easy to translate the software?​** ​ \\ Yes, very easy. All the language strings are in a single language file. You can also install a third party software to make your translation even easier.
   * **What are the server requirements?​** ​ \\ Minimum:   * **What are the server requirements?​** ​ \\ Minimum:
       * PHP 5.2.8 with short tags enabled or PHP 5.4+       * PHP 5.2.8 with short tags enabled or PHP 5.4+
Line 28: Line 30:
 ===== Technical FAQ ===== ===== Technical FAQ =====
  
-  * **I got a 500 error / internal server error when trying to install mooSocial. What should I do? **  \\ Enable debugging mode to see what happens (see below). Your server might be missing a required PHP extension to run mooSocial​ ​\\ +  * **I got a 500 error / internal server error when trying to install mooSocial. What should I do? **  \\ Enable debugging mode to see what happens (see below). Your server might be missing a required PHP extension to run mooSocial​ 
-  * **How do I enable debugging mode? **  \\ Open app/​Config/​core.php and change "​debug"​ param to 1 \\ +  * **How do I enable debugging mode? **  \\ Open app/​Config/​core.php and change "​debug"​ param to 1 
-  * **I made some changes ( e.g. language strings… ) but I do not see them on the site. What should I do? **  \\ Try to clear the global cache (Admin Dashboard → Clear Global Cache) ​\\ +  * **I made some changes ( e.g. language strings… ) but I do not see them on the site. What should I do? **  \\ Try to clear the global cache (Admin Dashboard → Clear Global Cache) 
-  * **I can not upload large images while smaller sizes work fine. What should I do?**  \\ Check your //​upload_max_filesize// ​ in //​php.ini//​. This is the maximum allowed size for an uploaded file. Increase this setting to let your site to accept larger image size. \\ +  * **I can not upload large images while smaller sizes work fine. What should I do?**  \\ Check your //​upload_max_filesize// ​ in //​php.ini//​. This is the maximum allowed size for an uploaded file. Increase this setting to let your site to accept larger image size. 
-  * **Why don't I see the admin settings page? **  \\ Only super admins has access to the admin settings and some other pages in the admin panel. ​\\ +  * **Why don't I see the admin settings page? **  \\ Only super admins has access to the admin settings and some other pages in the admin panel. 
-  * **I had a foo folder in the root directoty but now I cannot access it in the browser after installing mooSocial. What happened? **  \\ It's because mooSocial redirects all requests to app/webroot folder so you will need to move your foo folder to app/webroot if you want to access it in the browser (e.g. yourdomain.com/​foo) ​\\ +  * **I had a foo folder in the root directoty but now I cannot access it in the browser after installing mooSocial. What happened? **  \\ It's because mooSocial redirects all requests to app/webroot folder so you will need to move your foo folder to app/webroot if you want to access it in the browser (e.g. yourdomain.com/​foo) 
-  * **How do I change the favicon? **  \\ You can change the favicon by uploading it to app/​webroot. After that, clear your browser cache and restart your browser to see the new one. All public accessible files should be in that directory ​\\ +  * **How do I change the favicon? **  \\ You can change the favicon by uploading it to app/​webroot. After that, clear your browser cache and restart your browser to see the new one. All public accessible files should be in that directory 
-  * **What do I need to do after migrating mooSocial to a new server? **  \\ You need to update the database details in app/​Config/​config.php file and clear the persistent cache folder (app/​tmp/​cache/​persistent) ​\\ +  * **What do I need to do after migrating mooSocial to a new server? **  \\ You need to update the database details in app/​Config/​config.php file and clear the persistent cache folder (app/​tmp/​cache/​persistent) 
-  * **Where do I change the default cover image? **  \\ It's located in app/​webroot/​themes/​themefolder/​img/​cover.jpg ​\\ +  * **Where do I change the default cover image? **  \\ It's located in app/​webroot/​themes/​themefolder/​img/​cover.jpg 
-  * **My users keep getting logged out (remember me feature does not work). Why? **  \\ It's mostly because you have Suhosin installed on your server. Please ask your server admin to disable these 2 settings: suhosin.srand.ignore and suhosin.mt_srand.ignore. ​\\ +  * **My users keep getting logged out (remember me feature does not work). Why? **  \\ It's mostly because you have Suhosin installed on your server. Please ask your server admin to disable these 2 settings: suhosin.srand.ignore and suhosin.mt_srand.ignore. 
-  * **Whenever I submit a form or login, it redirects me to yourdomain.com/​somecontroller/​yourdomain.com. What do I do? **  \\ Open app/​Controllers/​AppController.php and add the line below right after the openning php tag \\ $_SERVER['​HTTP_X_FORWARDED_HOST'​] = ''; ​\\ +  * **Whenever I submit a form or login, it redirects me to yourdomain.com/​somecontroller/​yourdomain.com. What do I do? **  \\ Open app/​Controllers/​AppController.php and add the line below right after the openning php tag \\ $_SERVER['​HTTP_X_FORWARDED_HOST'​] = '';​ 
-  * **How do I integrate Facebook registration?​ **  \\ First, you need to create a Facebook app ([[https://​developers.facebook.com/​apps|https://​developers.facebook.com/​apps]]). Make sure the domain name of your app matches the one that mooSocial is installed on. After that, copy and paste your app id and secret to the Facebook integration fields in System Settings → Integration. Finally, check the Facebook Registration check box and click Save \\ +  * **How do I integrate Facebook registration?​ **  \\ First, you need to create a Facebook app ([[https://​developers.facebook.com/​apps|https://​developers.facebook.com/​apps]]). Make sure the domain name of your app matches the one that mooSocial is installed on. After that, copy and paste your app id and secret to the Facebook integration fields in System Settings → Integration. Finally, check the Facebook Registration check box and click Save 
-  * **Why do I get an internal server error when I install mooSocial in a sub directory? **  \\ Adding "​RewriteBase /" after "​RewriteEngine On" in all three .htaccess files might fix this problem. ​\\+  * **Why do I get an internal server error when I install mooSocial in a sub directory? **  \\ Adding "​RewriteBase /" after "​RewriteEngine On" in all three .htaccess files might fix this problem.
   * **Where do I get information about the framework? **  \\ mooSocial is built on top of CakePHP framework. You can find CakePHP documentation [[http://​book.cakephp.org/​2.0/​en/​index.html|here]]   * **Where do I get information about the framework? **  \\ mooSocial is built on top of CakePHP framework. You can find CakePHP documentation [[http://​book.cakephp.org/​2.0/​en/​index.html|here]]
  
general_and_faq/faq.txt · Last modified: 2015/08/24 01:12 (external edit)