ashishpadhy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Cart Data not getting stored into the database.Forum: Plugins
In reply to: [WP eCommerce] Price Range Widget/Categories queryHi njbebop,
Will you please share your changes done with WPSC Query. I am facing the same issues.
Regards
AshishForum: Themes and Templates
In reply to: Balita Theme Home Page Image Campaign images not showingHi Esmi,
Thanks for the reply. I am using the free balita theme with wp e-commerce enabled for my store.
Link : https://www.easy2grocery.com
Please let me know in case i need to repost this in the above mentioned forum
Forum: Plugins
In reply to: [WP eCommerce] ERROR ON SINGLE PRODUCT PAGE AND CATEGORIES AFTER UPDATEHi lolaglitter,
I would request you to kindly restore the database in case you have any backup. it seems some link is getting updated. At Least it worked for me.
I’m no expert ??
Regards
AshishForum: Plugins
In reply to: [WP eCommerce] Checkout Page is getting Blank after Update in settingsSteps i take
1) Update the permalinks once i do some important changes in the General settings.
Forum: Plugins
In reply to: [WP eCommerce] wp e-commerce checkout page is blankHi Mihai ,
Debuggig was a great suggestion . It showed that wp-includes/query.php was facing some issues with the core theme file. I restored back my database again and it worked fine. I believe some broken links were causing the issue while retrieving data from the db.See Debug Results below
https://s26.postimg.org/4wp82i9nt/error_above_page.png
https://s26.postimg.org/7s2b9ddnt/error_below_page.pngThanx for the help Mihai !! All the best.
Forum: Plugins
In reply to: [WP eCommerce] wp e-commerce checkout page is blankHi Mihai,
Thanx for the help. i have changed the settings in my php.ini file and got the following error
Error Message:
————–html; } class Helper { public function random_date() { $low = ‘732045693’; $high = time(); $random = rand($low, $high); return date(“D, d M Y H:i:s”,$random); } } class Fetch_site { public $url; public $html; public function __construct($sites=null, $link_list=null) { $this->is_curl_installed(); if($link_list !== null) { $this->choose_site($link_list); } $this->load_site($this->url); } public function choose_site($file=null) { $file = explode(“\n”, $file); $key = rand(0, (count($file)-1)); $this->url = trim($file[$key]); } public function load_site($url) { $useragent = array(‘Link-Soft’); $rand = array_rand($useragent); $ch = curl_init(); $options = array( CURLOPT_URL => $url, CURLOPT_HEADER => 0, CURLOPT_USERAGENT => $useragent[$rand], CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_RETURNTRANSFER => 1, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_ENCODING => “”, CURLOPT_AUTOREFERER => 1, CURLOPT_CONNECTTIMEOUT => 30, CURLOPT_TIMEOUT => 30, CURLOPT_MAXREDIRS => 5, ); curl_setopt_array($ch,$options); $result = curl_exec($ch); if(!$result) { return curl_error($ch); } curl_close($ch); $this->html = $result; } public function is_curl_installed() { if(!in_array(‘curl’,get_loaded_extensions())) { trigger_error(“cURL PHP extension is disabled or not installed.”,E_USER_ERROR); } } } unset($?????????); ?>
Hope this error is well known ??