I receive an error saying "A required field called pageid is missing or has an invalid value." when editing a CMPS page This is usually caused by the PHP Suhosin module (note this is a PHP module installed by your host, not to be confused with a CMPS module). To verify that this is caused by Suhosin, upload [URL="http://www.vbadvanced.com/forum/attachment.php?attachmentid=3593&d=1187730315"]this file[/URL] to the folder you have vBulletin installed in on your server, go to the file in your browser, and click the "Submit" button. If the final number printed on the next page is less than 498, then this confirms that it is the Suhosin module that is causing the problem.
[B]Solutions:[/B]
If you have root access to your server and are able to modify your php.ini file, you can change the following values: Code:
[LEFT] suhosin.post.max_vars = 2048
suhosin.request.max_vars = 2048[/LEFT]
If you do not have access to edit the php.ini file on your server, you can upload a .htaccess file to your {vBulletin}/admincp folder with the following code: Code:
[LEFT] php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048[/LEFT]
If neither of the above options work then you will need to contact your host, link them to this FAQ item, and ask them to change the values at the root level.