Please be gentle; I'm a vB noob. I do not know how to make the changes needed. Site was hacked, malware has been removed, as have the infected/affected files. As a precaution, the host changed the location, login, and password of the adminCP.
We already need to update to a newer version than we have. Updating to 4.2.2 would be the move at this time (at 4.1.0 Patch Level 2). Essentially, we took over the site from the previous owner, so we never did any installs or upgrades...we just left the site in place, as it was running fine, and transferred the license.
Issues began yesterday: lost all formatting, many admin functions stopped working or worked intermittently, and lost the 'Admin' button that takes you to the AdminCP.
Below is what the host sent me:
He gave me a link that seems to take me to the actual code, but I wasn't sure if it was okay to put that here.
So, it seems my options are to upgrade to the more stable, more secure, newer version (which would overwrite the bad line of code, I guess?), or to manually re-write anything that needs changing. And, I would need to also point the adminCP stuff to the newly created adminCPurl, if I understand it.
Is that correct? And, can an idiot do that?
Anyone wanna earn a buck...lol...
Thanks in advance, and I am sorry if this is not in the write place or format; we've never had occasion to require support before.
We already need to update to a newer version than we have. Updating to 4.2.2 would be the move at this time (at 4.1.0 Patch Level 2). Essentially, we took over the site from the previous owner, so we never did any installs or upgrades...we just left the site in place, as it was running fine, and transferred the license.
Issues began yesterday: lost all formatting, many admin functions stopped working or worked intermittently, and lost the 'Admin' button that takes you to the AdminCP.
Below is what the host sent me:
Hello,
The css files are failing to be loaded because your script is incorrectly writing the HTML when the PHP parser in running:
<link rel="stylesheet" type="text/css" href="css.php?styleid=1&langid=1&d=1353798034&td=ltr&sheet=bbcode.css,editor.css,popupmenu.css,reset-fonts.css,vbulletin.css,vbulletin-chrome.css,vbulletin-formcontrols.css," />
The & character is being changed to & which is producing a bad result, changing that string to the correct code allows the css to be found:
The css files are failing to be loaded because your script is incorrectly writing the HTML when the PHP parser in running:
<link rel="stylesheet" type="text/css" href="css.php?styleid=1&langid=1&d=1353798034&td=ltr&sheet=bbcode.css,editor.css,popupmenu.css,reset-fonts.css,vbulletin.css,vbulletin-chrome.css,vbulletin-formcontrols.css," />
The & character is being changed to & which is producing a bad result, changing that string to the correct code allows the css to be found:
So, it seems my options are to upgrade to the more stable, more secure, newer version (which would overwrite the bad line of code, I guess?), or to manually re-write anything that needs changing. And, I would need to also point the adminCP stuff to the newly created adminCPurl, if I understand it.
Is that correct? And, can an idiot do that?
Anyone wanna earn a buck...lol...
Thanks in advance, and I am sorry if this is not in the write place or format; we've never had occasion to require support before.
Comment