You guys are AWESOME! That did it.
[FIX]
I installed XAMPP 1.7.0 for Windows and by default it created a php folder with a php.ini and all the other php files and directories. I have been editing this file...
Code:
C:\xampp\php\php.ini
I assumed this was the only php.ini file and have been racking my brains wondering why i was still getting the scheduler error in Sugar.
After taking a closer look at the phpinfo output, per the really smart forum guys instructions, I found that another path was used.....
Loaded Configuration File Code:
C:\xampp\apache\bin\php.ini
I uncommented php_curl.dll line in this file by removing the semi-colon...
Before
Code:
;extension=php_curl.dll
After
Code:
extension=php_curl.dll
I saved it, restarted Apache, and logged into Sugar and what do you know......the scheduler error was gone.
Another thing I had to do was edit the batch file I created, per another cURL post I found in the forum.
My new batch file is called sugarscheduler.bat and it has the following lines in it....
Code:
cd c:\xampp\htdocs\crm
c:\xampp\php\php.exe -c c:\xampp\apache\bin\php.ini -f cron.php
I have it running every 3 minutes via the Windows task scheduler. The task scheduler show the last result as...
Not sure what that means, but i get no errors in sugar or in task scheduler, so I assume all is well????
Additional NOTE.....
My phpinfo also shows that the "Configuration File (php.ini) Path" is C:\WINDOWS
I looked in that dir and found another php.ini file that contained some old CRM settings (from ......). I edited this file as mentioned above for good measure.
Thanks,
Darren
Bookmarks