Solution:
Modify the File: include/arc. rssview. class. php find
| The code is as follows: |
Copy code |
$ This-> TypeFields ['typelink'] = $ GLOBALS ['cfg _ basehost']. $ this-> typelink-> GetOneTypeUrl ($ this-> TypeFields ); |
Change
| The code is as follows: |
Copy code |
$ This-> TypeFields ['typelink'] = ($ GLOBALS ['cfg _ multi_site '] = "Y ")? $ This-> TypeLink-> GetOneTypeUrl ($ this-> TypeFields): $ GLOBALS ['cfg _ basehost']. $ this-> TypeLink-> GetOneTypeUrl ($ this-> TypeFields );
|
This is the same article in the directory. It also adds whether the absolute address is enabled to be determined.
| The code is as follows: |
Copy code |
$ Row ["fullurl"] = $ GLOBALS ["cfg_basehost"]. $ row ["arcurl"];
|
Change
| The code is as follows: |
Copy code |
$ Row ["fullurl"] = ($ GLOBALS ['cfg _ multi_site '] = "Y ")? $ Row ["arcurl"]: $ GLOBALS ["cfg_basehost"]. $ row ["arcurl"]; |