• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

SetContext(''login_up'');

R

ryanryan

Guest
For some reason I'm getting this :
Code:
SetContext(''login_up'');

double single quotes, which is preventing me from logging in.

another user posted his rendered html and he had :

Code:
SetContext('login_up');

My php.ini in /etc/ - Magic quotes are off. Is there anything else either in php.ini or apache.conf which would cause this?

reference article: http://forum.plesk.com/showthread.php?s=&postid=131541#post131541
 
I forgot to mention it is 7.5.4, FC2 and my php version:

Code:
PHP 4.3.10 (cgi) (built: Dec 21 2004 10:27:48)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
    with the ionCube PHP Loader v2.5, Copyright (c) 2002-2004, by ionCube Ltd., and
    with Zend Extension Manager v1.0.8, Copyright (c) 2003-2005, by Zend Technologies
    with Zend Optimizer v2.5.10, Copyright (c) 1998-2005, by Zend Technologies
 
ok solved

in the upgrade

Code:
; Magic quotes for incoming GET/POST/Cookie data.
+magic_quotes_gpc = Off 

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

were on

Which I checked, but I didn't realise psa ran its own apache and php versions, with seperate configs. So i changed them to off, restarted psa and it worked.

ARG :D
 
Back
Top