XF 1.5 There are manual rebuild processes that have been stopped before completion.

Chris Goldsmith

New member
I started a install of the tapatalk plugin and during the install it was at
Processing...

The PC I was running it from locked up during and had to be hard rebooted once I came back tapatalk appeared to have been installed so i figured it finished running in back ground on server ( I have complete root access it is not a shared vps )

today I logged into the admin control panel to do other "stuffs" and saw this ( screenshot attached )

I clicked on the link to complete them and it has been back at Processing for over 30 minutes now


How can I best clean this up?
 

Attachments

  • Screenshot_2016-12-19_11-12-37.webp
    Screenshot_2016-12-19_11-12-37.webp
    31.8 KB · Views: 5
Depending on how large the DB is, how many styles you have installed and the speed of the server, it can take a bit sometimes - especially if there are other background processes going on (deferred).
 
In general files and directories should be 0644 and 0755 respectively.

The /data and /internal_data directories should be:
0666/0777 if PHP runs as "nobody" (the web server user)
0644/0755 if it runs as "your" user (suPHP for example)

Note that 0644/0755 only works if PHP is running as the user that owns the file (e.g. with cPanel setups).
 
You can also use 664/775 on an nginx setup. That way you allow a specific group to have R/W permissions also so that you don't have to continue to chown the files recursively when you do any modifications/additions such as manually installing an add-on from the CLI.
 
permissions updated and fixed - this look optimal to you?? apache/php run as apache:apache

# ls -la <DocRoot>/xenforo/
total 1264
drwxr-xr-x 9 apache apache 4096 Dec 17 19:37 .
drwxr-xr-x 4 root root 4096 Dec 2 05:42 ..
-rw-r--r-- 1 apache apache 39990 Dec 17 19:37 addon-Tapatalk.xml
-rw-r--r-- 1 apache apache 198674 Dec 16 09:22 addon-uix.xml
-rw-r--r-- 1 apache apache 1791 Dec 2 05:37 admindav.php
-rw-r--r-- 1 apache apache 415 Dec 2 05:37 admin.php
-rw-r--r-- 1 apache apache 359 Dec 2 05:37 css.php
drwxrwxrwx 3 apache apache 4096 Dec 13 10:32 data
-rw-r--r-- 1 apache apache 1134 Dec 2 05:37 deferred.php
-rw-r--r-- 1 apache apache 535 Dec 2 05:37 fb_channel.php
-rw-r--r-- 1 apache apache 1186 Dec 2 05:37 .htaccess
-rw-r--r-- 1 apache apache 1186 Dec 2 05:37 htaccess.txt
-rw-r--r-- 1 apache apache 416 Dec 2 05:37 index.php
drwxr-xr-x 4 apache apache 4096 Dec 2 05:37 install
drwxrwxrwx 6 apache apache 4096 Dec 13 10:32 internal_data
drwxr-xr-x 10 apache apache 4096 Sep 26 15:53 js
drwxr-xr-x 9 apache apache 4096 Sep 21 17:03 library
drwxr-xr-x 13 apache apache 4096 Sep 21 17:03 mobiquo
-rw-r--r-- 1 apache apache 1524 Dec 2 05:37 payment_callback.php
-rw-r--r-- 1 apache apache 350 Dec 2 05:37 proxy.php
-rw-r--r-- 1 apache apache 1025 Dec 2 05:37 rgba.php
-rw-r--r-- 1 apache apache 1623 Dec 2 05:37 sitemap.php
-rw-r--r-- 1 apache apache 963473 Dec 16 10:10 style-Bliss.xml
drwxr-xr-x 4 apache apache 4096 Sep 26 09:12 styles



ls -la<DocRoot>/xenforo/data/
total 16
drwxrwxrwx 3 apache apache 4096 Dec 13 10:32 .
drwxr-xr-x 9 apache apache 4096 Dec 17 19:37 ..
drwxrwxrwx 3 apache apache 4096 Dec 13 10:32 attachments
-rw-rw-rw- 1 apache apache 1 Dec 2 05:37 index.html
 
Top Bottom