![]() |
|
#1
|
|||
|
|||
|
Hi guys,
Running VB v4.1.12 Patch Level 1. Running VBA v4.2.0 When installing the CMS to my forums folder it works fine. For example the template works here: http://example.net/forums/cmps_index.php But this does not: http://example.net/cmps_index.php I copied the same file over, and changed forumpath to /home/my-login-name/example.net/forums'. I changed the setting in VBa Admin panel "The full URL to the CMPS file." to /cmps_index.php. This does not help. The require_once lines are working it seems because there's no errors and the portal displays. Any ideas? EDIT --- More info: I looked at the source and saw that the forums/ subfolder is not added to the line that calls for the style sheet: Code:
http://example.net/css.php?styleid=45&langid=1&d=1337576397&td=ltr&sheet=bbcode.css,editor.css,popupmenu.css,reset-fonts.css,vbulletin.css,vbulletin-chrome.css,vbulletin-formcontrols.css, Last edited by deMonkey; 05-22-2012 at 12:04 AM. |
|
#2
|
|||
|
|||
|
I found the answer to this, pretty obvious but somehow I had missed it.
Under Admin CP, Options, Site Name / URL / Contact Details Quote:
|
|
#3
|
|||
|
|||
|
I realized that IE (7 or 8.x) still does not work for the same problem. It's accessing a relative URL for the stylesheet instead of the absolute URL defined by the admin CP etc. Probably not VBA's fault but the problem arrives when you move VBA's CMPS index outside the forums folder.
Code:
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00045l/popupmenu-ie.css?d=1337710261" /> <link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00045l/vbulletin-ie.css?d=1337710261" /> <link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00045l/vbulletin-chrome-ie.css?d=1337710261" /> <link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00045l/vbulletin-formcontrols-ie.css?d=1337710261" /> <link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00045l/editor-ie.css?d=1337710261" /> <![endif]--><meta http-equiv="a"/> Last edited by deMonkey; 05-22-2012 at 02:31 PM. |
|
#4
|
|||
|
|||
|
make sure you edit the forum location line inside of the cmps_index.php file and set it to the correct location for your forums.
Code:
$forumpath = 'full_path_to_forums_folder'; |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| This is just plain silly | germinus | "How Do I..." Questions | 8 | 05-09-2007 06:44 PM |
| Question about style images folder path | unforgotten | "How Do I..." Questions | 1 | 03-29-2007 08:28 PM |
| moved directory, lost my style | silkie | Troubleshooting & Problems | 5 | 04-19-2006 03:57 PM |
| Plain text... | OllieRocks | Troubleshooting, Problems, Questions | 2 | 11-27-2005 03:22 PM |
| Problem when cmps_index.php is in root folder | chris g | Troubleshooting & Problems | 7 | 07-12-2005 04:36 PM |