Some of you may have the Domain Seller Pro Script shown here:
www.domainsellerpro.com
If your script WAS working fine, but now it doesn't work (eg, you can't log into admin, links dont work, etc), there is a reason for it. It is because your host has upgraded to PHP5 and now the way global variables are addressed is different.
The hard fix is to replace $a with $_GET['a'] in the admin.php file etc. (I will note here that I tried that, and it still didn't work, so I must have missed something)
Here is the EASY fix:
Instead of rewriting all the code (re: (2) below), what you need is a php.ini file in your directory (only in the www directory where your other domainsellerpro files are).
Open notepad, Save the file as php.ini and upload it.
The php.ini file should read simply:
register_globals = On
______________
Some more reading on all of this:
(1)http://drupal.org/node/210311
(2)http://www.issociate.de/board/post/280079/PHP_not_returning_variables!.html
So it is a 2 minute fix, real simple.
Leave all your original php files the same, no changes required.
Good luck all.
www.domainsellerpro.com
If your script WAS working fine, but now it doesn't work (eg, you can't log into admin, links dont work, etc), there is a reason for it. It is because your host has upgraded to PHP5 and now the way global variables are addressed is different.
The hard fix is to replace $a with $_GET['a'] in the admin.php file etc. (I will note here that I tried that, and it still didn't work, so I must have missed something)
Here is the EASY fix:
Instead of rewriting all the code (re: (2) below), what you need is a php.ini file in your directory (only in the www directory where your other domainsellerpro files are).
Open notepad, Save the file as php.ini and upload it.
The php.ini file should read simply:
register_globals = On
______________
Some more reading on all of this:
(1)http://drupal.org/node/210311
(2)http://www.issociate.de/board/post/280079/PHP_not_returning_variables!.html
So it is a 2 minute fix, real simple.
Leave all your original php files the same, no changes required.
Good luck all.






