| Author |
Message |
krike

Joined: Apr 02, 2008
Posts: 47
|
Posted:
Fri Oct 24, 2008 2:09 pm |
|
installing digital shop on my gf site and I get the following error when I try to run the installer:
| Quote: |
| Fatal error: Call to undefined function: stripos() in /data/members/paid/d/e/deadly-design.com/htdocs/www/studio/modules/Digital_Shop/install/ioncube_installer.php on line 41 |
|
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 755
|
Posted:
Sat Oct 25, 2008 10:08 am |
|
Looks like you are still running php4
Well to get around that, there are 2 options.
1. Install the ioncube loaders manually and you will bypass the file causing the error.
2. Add this bit of code to the file pointed out in the error.
| Code: |
if (!function_exists("stripos")) {
function stripos($str,$needle,$offset=0)
{
return strpos(strtolower($str),strtolower($needle),$offset);
}
}
|
|
| |
|
|
 |
krike

Joined: Apr 02, 2008
Posts: 47
|
Posted:
Sun Oct 26, 2008 10:15 am |
|
yeah thought so.... grrr noobs .
I checked with phpinfo() command, they are running PHP4u Version 3.0 Based on PHP-4.4.7
will test it now |
| |
|
|
 |
krike

Joined: Apr 02, 2008
Posts: 47
|
Posted:
Sun Oct 26, 2008 10:34 am |
|
ah crap when i click on the links on the left it will install when I press continue to install everything is set to disable again and the links reappear on the left...
I checked the manuel and I found out that there is no runtime
Run Time Loading - No, use php.ini
so let me guess? can't install unless I edit php.ini  |
| |
|
|
 |
krike

Joined: Apr 02, 2008
Posts: 47
|
Posted:
Tue Oct 28, 2008 6:32 am |
|
ok I found it (not the fix, but the reason why i won't be able to install it lol).
so it's ok nvm this topic |
| |
|
|
 |
|
|