PHP CURL coding
<?php$ch= curl_init();$url ="www.domain.com";curl_setopt($ch,CURLOPT_URL,$url);curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,5);$curl_result=curl_exec($ch);curl_close($ch);$curl_result=str_replace("<","<",$curl_result);$curl_result=str_replace(">",">",$curl_result);echo $curl_result;?&g...
Stuck Installing Joomla On Windows 8 and Windows 10
SOLUTION ONE:
Change max_execute_time in php.ini to a value like 200 when done or when in production change it back to 60 or less.
SOLUTION TWO:
CHANGE MYSQL ENGINE REFERENCE
in php.ini file turn
Output_Buffering=Off
Display_Errors=Off
and in wamp\www\Your joomla folder\installation\sql\mysql\Joomla.sql
replaced all the occurence of "ENGINE=InnoDB" with "ENGINE=MyIsam"...
Subscribe to:
Posts
(
Atom
)