Jump to content

Dexter_X

Clients
  • Posts

    396
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Thanks
    Dexter_X reacted to Martin A. in Community Map   
    That is definitely something I'm going to look into. Should be an easy fix.
    It will come as part of the 4.6 update, which unfortunately isn't backwards compatible with 4.5.
    Given that I just installed 4.6 for the first time this evening it might take a few days. Looks like it's not too much involved in getting it updated. I'll first do a compatibility update, then I'll add new features later on.
  2. Like
    Dexter_X reacted to SeNioR- in Achievements icons   
  3. Like
    Dexter_X got a reaction from Jordan Miller in Achievements icons   
    Thankyou !
  4. Thanks
    Dexter_X reacted to marklcfc in Achievements icons   
    It's not been updated in a while but it still works
  5. Like
    Dexter_X got a reaction from DamonT in How to create a topic last comments flow to integrate ?   
    Thankyou, but I already can't manage to find out how to create a block that displays a single topic last messages flow (?) Maybe it needs some specific php coding ? I'm not yet familiar with IPS API... 😞 
  6. Like
    Dexter_X got a reaction from DawPi in Captcha on "contact us" form for guests ?   
    so... I've installed it... You can choose the group for which the captcha is displayed... except for guests... (!!!???)
     
    Edit : sorry, guests are always set to get the captcha and it works !

    Thank you alll !
     
  7. Thanks
    Dexter_X reacted to CoffeeCake in Captcha on "contact us" form for guests ?   
    Confirming that the addition of this plugin completely stopped that nonsense.
  8. Thanks
    Dexter_X reacted to DawPi in Captcha on "contact us" form for guests ?   
  9. Thanks
    Dexter_X got a reaction from TAMAN in Swiper Slider [ support topic ]   
    ok, thankyou for the news. Hope you'll have time one of those days...
  10. Thanks
    Dexter_X got a reaction from DSystem in Create a sandbox copy of your comunity   
    After a few trials I've finally succeed on creating a sandbox copy of our comunity. It allows us to make some development, modules or functionalities tests before setting them into the production one.
    Our need was to create a copy into the same hosting space without polluting the production one. So here is how I made it :
    I - Copy
    Files
    First of all you need to create a copy of your community files, in our hosted space the files where located into the /www/ folder, so I simply ssh loged in and ran a :
    copy -aR ./www ./sandbox
    It is the fastest way to create a local copy, but you can also FTP-download your community files then FTP-upload them again into the new folder : Depending on the size of your community it can take very long to perform in that way.
    To ensure there is no damage done to the original community, we move it to a new folder during the time the sandbox is created (and set-up an apologize under maintenance page during this time), something like : mv ./www ./protect . So the sandbox will not be able to overwrite anything into the original files path considering it'll not be able to find them...  
     
    DataBase
    You'll also need to create a copy of your community database :
    1) Create an empty new MySQL database ;
    2) I use MySQLDumper to create a database backup file from the production community database ;
    3) Then I set up MySQLDumper to connect into the new empty MySQL database and restore the database. If you've a big database like us, you may consider to ignore the forum_core_search_index table, some logs tables and private messages tables, depending on your needs.
     
    II - Setup
    For the moment you just have some kind of a "raw copy" of your community, but you can't use it  : dont even try, you may damage your original community if you do. So don't try to access your copy sandbox before step III-Final Adjustments here below.
     
    Access
    For our needs I've created a subdomain to access the sandbox content, something like sandbox.mycommunity.com, pointing to the new ./sandbox copy folder just created before. I suppose it may work in a subfolder of your main website too, but I considered it too risky before even try it.
     
    Files 
    As usually when moving a CMS to another place, the first file to set up is conf_global.php , you'll need to set-up your new database name, user and password. But don't forget to change the "board_url" field in order to set the access url to access your sandbox copy.
    You'll also need to modify the .htaccess file at the root folder of your community to set the right (sub)domain name or path into the rewrite rules.
     
    Database
    Now we're gettin' into the serious part of this. You'll need to modify "by hand" your new database : I use phpMyAdmin, kindly provided by our hosting company as a standard service. But you can install it by yourself or even use MySQLDumper just after the restoration to perform these modifications. So here are the list of the tables and fields you'll need to fix by setting your access url and most important of all : the absolute storage path of your sandbox copy. Through an ssh access just type pwd and you'll see where you are... (example : original /home/me/www -> sandbox /home/me/sandbox ) 
    . In table forum_core_sys_conf_settings, update the conf_value field, for the following conf_key values
    - sitemap_url
    - posts_add_nofollow_exclude
    - home_url
    - theme_disk_cache_path
    - board_name (optional)
    - home_name (optional)
    . In table forum_core_file_storage, for the field ID=1, update the configuration field value ;
     
    III - Final Adjustments
    Now you can access to your copy sandbox through your navigator : but try to connect directly to the APC in order to make the final adjustments.
    . First of all : if you're caching files, you may need to change the cahing files folder : you'll need to download then upload a configuration.php file in order to apply it.
    . Set a valid licence number : in the APC, go to the licence number menu item then set a valid key distinct from the original community one. We use the -TESTINSTALL key for that (your original key by adding -TESTINSTALL at the end).
    . Run a support diagnose to reset the theme cache and check everything is ok. If needed fix any encountered problem.
    . Depending on how you've copied your database, you may need to rebuild the index database by going to the "search" tab (in the APC) then "rebuild search index". If you have a big community, it could take several hours.
    . Don't forget to create a new cron task if you were scheduling in that way...
    . Finally, if you've moved your original comunity for a safer copy creation, now you can restore it back.
     
    It's done ! You've your full copy sandbox for whatever you may need it !
    Thankyou for reading !
  11. Thanks
    Dexter_X got a reaction from Meddysong in Create a sandbox copy of your comunity   
    After a few trials I've finally succeed on creating a sandbox copy of our comunity. It allows us to make some development, modules or functionalities tests before setting them into the production one.
    Our need was to create a copy into the same hosting space without polluting the production one. So here is how I made it :
    I - Copy
    Files
    First of all you need to create a copy of your community files, in our hosted space the files where located into the /www/ folder, so I simply ssh loged in and ran a :
    copy -aR ./www ./sandbox
    It is the fastest way to create a local copy, but you can also FTP-download your community files then FTP-upload them again into the new folder : Depending on the size of your community it can take very long to perform in that way.
    To ensure there is no damage done to the original community, we move it to a new folder during the time the sandbox is created (and set-up an apologize under maintenance page during this time), something like : mv ./www ./protect . So the sandbox will not be able to overwrite anything into the original files path considering it'll not be able to find them...  
     
    DataBase
    You'll also need to create a copy of your community database :
    1) Create an empty new MySQL database ;
    2) I use MySQLDumper to create a database backup file from the production community database ;
    3) Then I set up MySQLDumper to connect into the new empty MySQL database and restore the database. If you've a big database like us, you may consider to ignore the forum_core_search_index table, some logs tables and private messages tables, depending on your needs.
     
    II - Setup
    For the moment you just have some kind of a "raw copy" of your community, but you can't use it  : dont even try, you may damage your original community if you do. So don't try to access your copy sandbox before step III-Final Adjustments here below.
     
    Access
    For our needs I've created a subdomain to access the sandbox content, something like sandbox.mycommunity.com, pointing to the new ./sandbox copy folder just created before. I suppose it may work in a subfolder of your main website too, but I considered it too risky before even try it.
     
    Files 
    As usually when moving a CMS to another place, the first file to set up is conf_global.php , you'll need to set-up your new database name, user and password. But don't forget to change the "board_url" field in order to set the access url to access your sandbox copy.
    You'll also need to modify the .htaccess file at the root folder of your community to set the right (sub)domain name or path into the rewrite rules.
     
    Database
    Now we're gettin' into the serious part of this. You'll need to modify "by hand" your new database : I use phpMyAdmin, kindly provided by our hosting company as a standard service. But you can install it by yourself or even use MySQLDumper just after the restoration to perform these modifications. So here are the list of the tables and fields you'll need to fix by setting your access url and most important of all : the absolute storage path of your sandbox copy. Through an ssh access just type pwd and you'll see where you are... (example : original /home/me/www -> sandbox /home/me/sandbox ) 
    . In table forum_core_sys_conf_settings, update the conf_value field, for the following conf_key values
    - sitemap_url
    - posts_add_nofollow_exclude
    - home_url
    - theme_disk_cache_path
    - board_name (optional)
    - home_name (optional)
    . In table forum_core_file_storage, for the field ID=1, update the configuration field value ;
     
    III - Final Adjustments
    Now you can access to your copy sandbox through your navigator : but try to connect directly to the APC in order to make the final adjustments.
    . First of all : if you're caching files, you may need to change the cahing files folder : you'll need to download then upload a configuration.php file in order to apply it.
    . Set a valid licence number : in the APC, go to the licence number menu item then set a valid key distinct from the original community one. We use the -TESTINSTALL key for that (your original key by adding -TESTINSTALL at the end).
    . Run a support diagnose to reset the theme cache and check everything is ok. If needed fix any encountered problem.
    . Depending on how you've copied your database, you may need to rebuild the index database by going to the "search" tab (in the APC) then "rebuild search index". If you have a big community, it could take several hours.
    . Don't forget to create a new cron task if you were scheduling in that way...
    . Finally, if you've moved your original comunity for a safer copy creation, now you can restore it back.
     
    It's done ! You've your full copy sandbox for whatever you may need it !
    Thankyou for reading !
  12. Thanks
    Dexter_X reacted to Michael.J in Auto Welcome Support   
    This is currently a confirmed bug.
    Do you have ftp access to your files? If so, I can give you the necessary edit to test this out first.
    I'm not seeing any improvements with this change. Still not creating flag.
    Edit: I might have some work around code for the PM notification. If anyone is available to test, please PM me.
  13. Like
    Dexter_X got a reaction from Martin A. in Member Map   
    I've seen it is already in the new version : thankyou very much !
  14. Thanks
    Dexter_X reacted to Martin A. in Member Map   
    That is accidentall hardcoded. Will change that to a translatable string in the next release.
  15. Thanks
    Dexter_X reacted to Adriano Faria in Member Map   
    Newest version of Clubs Enhancement released a few hours ago fixes this. 
  16. Thanks
    Dexter_X reacted to Martin A. in Member Map   
    Are you using @Adriano Faria's Club Enhancement? I think that may conflict with this.
  17. Thanks
    Dexter_X reacted to Adriano Faria in Clubs Enhancements   
    No, permissions must be handled by the core. 
×
×
  • Create New...