Hi.
I have Admin Profile installed and it wont let me 'check'
m1 pos.index. This does not happen to any other checkbox.
I have made the following edits as shown in the installation instructions:
Quote:
If the checkmark cannot be entered, it is caused by the fact that Admin Profiles doesn't support dots and other symbols that are converted into underline symbol while posting data.
* To correct this open admin/admin_control.php file
* In the opened file locate line:
$field = $_POST[str_replace(' ', '_', $pages->fields['page'])];
* Replace it with the following text:
$pageField = str_replace(' ', '_', $pages->fields['page']);
$pageField = str_replace('.', '_', $pageField);
$field = $_POST[$pageField];
|
How do I fix this? I am using the trial key and I am looking to buy the Full Version IF it works. If i cannot get it to work by tomorrow, then I will have missed the deadline and won't purchase this.
Edit:
Also below are my server settings (a snippet of it):
Quote:
Server OS: Linux 2.100.3-1-amd64
Database: MySQL 5.0.85
HTTP Server: Apache
PHP Version: 5.2.42 (Zend: 2.2.0)
PHP Memory Limit: 32M
PHP Safe Mode: Off
|
Thanks