{"id":3569,"date":"2014-03-28T11:01:41","date_gmt":"2014-03-28T11:01:41","guid":{"rendered":"https:\/\/unknownerror.org\/index.php\/2014\/03\/28\/csvdownloadprestashoprelated-issues-collection-of-common-programming-errors\/"},"modified":"2014-03-28T11:01:41","modified_gmt":"2014-03-28T11:01:41","slug":"csvdownloadprestashoprelated-issues-collection-of-common-programming-errors","status":"publish","type":"post","link":"https:\/\/unknownerror.org\/index.php\/2014\/03\/28\/csvdownloadprestashoprelated-issues-collection-of-common-programming-errors\/","title":{"rendered":"csv,download,prestashopRelated issues-Collection of common programming errors"},"content":{"rendered":"<ul>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/2f90e858672c079741471f72cba5480c?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nBen<br \/>\ndatabase csv bulk<br \/>\nI try to load my database with tons of data from a .csv file sized 1.4 GB. But when I try to run my code I get errors. Here&#8217;s my code:USE [Intradata NYSE] GO CREATE TABLE CSVTest1 (Ticker varchar(10) NULL, dateval date NULL, timevale time(0) NULL, Openval varchar(10) NULL, Highval varchar(10) NULL, Lowval varchar(10) NULL, Closeval varchar(10) NULL, Volume varchar(10) NULL ) GOBULK INSERT CSVTest1 FROM &#8216;c:\\intramerge.csv&#8217; WITH ( FIELDTERMINATOR = &#8216;,&#8217;, ROWTERMINATOR = &#8216;\\n&#8217; ) GO &#8211;Check the conte<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/506d1c51192be184eea0d612f7255bd0?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nmnel<br \/>\nr csv<br \/>\nI am stumped. Normally, read.csv works as expected, but I have come across an issue where the behavior is unexpected. It most likely is user error on my part, but any help will be appreciated.Here is the URL for the filehttp:\/\/nces.ed.gov\/ipeds\/datacenter\/data\/SFA0910.zipHere is my code to get the file, unzip, and read it in:URL &lt;- &#8220;http:\/\/nces.ed.gov\/ipeds\/datacenter\/data\/SFA0910.zip&#8221;download.file(URL, destfile=&#8221;temp.zip&#8221;)unzip(&#8220;temp.zip&#8221;)tmp &lt;- read.table(&#8220;sfa0910.csv&#8221;, header=T, strin<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/fcb38ecefb1f0dbb9d6a511a799269e5?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nLayla<br \/>\nr csv<br \/>\nI have a table in csv format, the data is the following:1 3 1 2 1415_at 1 8.512147859 8.196725061 8.174426394 8.62388149 1411_at 2 9.119200527 9.190318548 9.149239039 9.211401637 1412_at 3 10.03383593 9.575728316 10.06998673 9.735217522 1413_at 4 5.925999419 5.692092375 5.689299161 7.807354922When I read it with:m &lt;- read.csv(&#8220;table.csv&#8221;)and print the values of m, I notice that they change to:X X.1 X1 X3 X1.1 X4 1 1415_at 1<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c6cbd980c12c034645c5cfdc5d4e768b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nJohn Riselvato<br \/>\nios csv<br \/>\nI&#8217;m trying to implement a label that shows me the current location&#8217;s weather data as the following:NSString *request = [NSString stringWithFormat:@&#8221;http:\/\/api.worldweatheronline.com\/free\/v1\/weather.ashx?q=%@&amp;format=csv&amp;num_of_days=0&amp;show_comments=no&amp;key=myKeyThatIRemovedForThisQuestion&#8221;,city];NSURL *URL = [NSURL URLWithString:request];NSError *error;NSString *csv = [NSString stringWithContentsOfURL:URL encoding:NSASCIIStringEncoding error:&amp;error];NSArray *items = [csv compone<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/02aece665d5b35d09c3adce3bfe078a3?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nMitul<br \/>\npowershell csv collections<br \/>\nI am trying to query AD for a list of users and a particular variable like so:get-aduser -filter * -Properties * | select Samaccountname,vasco-LinkUserToDPToken | Export-Csv U:\\test.csv -NoTypeInformationHowever this returns the samaccountname and Microsoft.ActiveDirectory.Management.ADPropertyValueCollection.Looking at the web I have ascertained that this property is a collection and I would need something along the lines of this to expand it and allow it to be exported to CSV:get-aduser -filte<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/41f3881c6b30c3ebe9466e32424d2af0?s=32&amp;d=identicon&amp;r=PG&amp;f=1\" \/><br \/>\nuser3329002<br \/>\njava angularjs http post csv<br \/>\nSo , I have some thing like this in the back end.response.setContentType(&#8220;text\/csv; name=&#8221; + fileName);response.addHeader(&#8220;content-disposition&#8221;, &#8220;attachment; filename=\\&#8221;&#8221; + fileName + &#8220;\\&#8221;&#8221;);try {final String csvBuilder = this.reportService.tripSummaryCsvBuilder(trips);response.getOutputStream().write(csvBuilder.getBytes());} catch (Exception e) {logger.error(&#8220;downloadTripSummary() &#8211; Unexpected exception: &#8220;, e);throw new ServerErrorException(&#8220;download trip summary csv file failed&#8221;);}So, All the b<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/cae26147fded86ff56bce643fb305f73?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nChriss<br \/>\njava csv<br \/>\nI have a program I wrote that can read a csv file. The csv file have two columns one for clusters number and the other is for users. what I need for the program is not to repeat the user. Instead, to write the user once and in each cluster to simply write 1 if the user had shown in that cluster number. package parsing;public static void main(String[]args){String fileName= &#8220;ClusterResult(final1).csv&#8221;;\/\/reading the fileFile file = new File(fileName);try {Scanner inputStream = new Scanner(file);whi<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/1233ec65168f4aae4d939ae8fe6cde1e?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nRobert Harvey<br \/>\nphp programming-languages csv fgetcsv<br \/>\nI&#8217;m trying to import data from a csv file to some html code to use it in a graph I have already coded. I&#8217;m trying to use PHP and fgetcsv to create arrays for each separate piece of data to use PHP to put it into the html code. I know how to open the csv file and to print it using PHP, and how to print each separate row, but not each piece of data separated by a comma. Is there a way to do this?If this helps, this is the csv data I am trying to import.May 10,72,12,60 May 11,86,24,62 May 12,67,32,<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.stack.imgur.com\/rIukh.jpg?s=32&amp;g=1\" \/><br \/>\nKnightKing<br \/>\nruby-on-rails ruby parsing csv header<br \/>\nmy rb file reads:require &#8220;csv&#8221; puts &#8220;Program1 initialized.&#8221;contents = CSV.open &#8220;data.csv&#8221;, headers: true contents.each do |row|name = row[4]puts name end&#8230;but when i run it in ruby it wont load the program. it gives me the error message about the headers:syntax error, unexpected &#8216;:&#8217;, expecting $end contents = CSV.open &#8220;data.csv&#8221;, headers: trueso im trying to figure out, why wont ruby let me parse this file? ive tried using other csv files i have and it wont load, and gives me an error message.<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/1cdb5125899a4544c41a8ca8c51c8120?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nFurqan Asghar<br \/>\nruby-on-rails validation csv carrierwave uploading<br \/>\nI have this scenario on which i need some design suggestions, maybe a little structure definition:I have a user that can upload a csv file and based on the contents of that file i have to populate the database, sounds simple-eh!Ok so far so good, now the thing is that this csv is quite large, i mean it&#8217;s got some 100+ header fields (sounds crazy) and who knows how many records per file, but anyways, so far we have this csv uploading and db population. But wait, this csv file needs to be classifi<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/8a0b76e28d302a510ae76156be611e69?s=32&amp;d=identicon&amp;r=PG&amp;f=1\" \/><br \/>\nlinuxnoob<br \/>\nlinux search hyperlink download webpage<br \/>\nI am trying to write a linux script to search for a link on a web page and download the file from that link&#8230;the webpage is: http:\/\/ocram.github.io\/picons\/downloads.htmlThe link I am interested in is: &#8220;hd.reflection-black.7z&#8221;The original way I was doing this was using these commands..lynx -dump -listonly http:\/\/ocram.github.io\/picons\/downloads.html &amp;&gt; output1.txt cat output1.txt | grep &#8220;17&#8221; &amp;&gt; output2.txt cut -b 1-6 &#8211;complement output2.txt &amp;&gt; output3.txt wget -i output3.tx<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/8a0e32559784b66e390553812573878b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nPerception<br \/>\nphp curl download binary<br \/>\nI wrote function below:function download_xfs($url) {$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_COOKIE, &#8216;login=michael; xfss=08ruiweu4tuhb5xqs8&#8217;);curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);$string = curl_exec ($ch); curl_close ($ch); \/\/ Set headers }When I use download_xfs(&#8220;http:\/\/address.com\/file.html&#8221;); it returns binary of file instead of actual file. Can anyone re-write this code to handle file for download?<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/68c381be021d82e1dfe938eaf3f77435?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nc4p<br \/>\ndjango file csv download xls<br \/>\nI am a new to django and python. Need some guidance in this quest.Case: When the user hits the submit button on a form, it should display Success page and a link where they can download the results. The results are in excel file. I can create output to excel file using xlwt module and display the success page individually but not both at the same time. What i have: I am running django1.1.1 on windows XP with python 2.6. There was similar question asked but was not able to make it work.my success<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/62b2afdccdf0a4aa366c46b99aed8e2b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nnamehere<br \/>\npowershell replace download<br \/>\nI&#8217;m a beginner in powershell and know C# pretty well. I have this command http:\/\/www.f2ko.de\/programs.php?lang=en&amp;pid=cmd that downloads stuff. I&#8217;m writing this script to download all the sgf go games from this url http:\/\/www.gogameworld.com\/gophp\/pg_samplegames.php, and was trying to write a powershell script to do it for me. So I wrote a script:Get-Content test.txt|ForEach-Object{if($_ -eq &#8220;=`&#8221;javascript:viewdemogame(`&#8217;*.sgf`&#8217;)`&#8221; tit&#8221;){$filename = $_ -replace &#8216;=`&#8221;javascript:viewdemogame(`&#8217;<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/240e262d224c86674c33eea72dec14f7?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nStyler<br \/>\njava download applet io<br \/>\nI wrote a simple downloader as Java applet. During some tests I discover that my way of downloading files is not even half as perfect as e.g. Firefox&#8217;s way of doing it.My code:InputStream is = null; FileOutputStream os = null; os = new FileOutputStream(&#8230;); URL u = new URL(&#8230;); URLConnection uc = u.openConnection(); is = uc.getInputStream(); final byte[] buf = new byte[1024]; for(int count = is.read(buf);count != -1;count = is.read(buf)) {os.write(buf, 0, count); }Sometimes my applet works fin<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c3ba8d5e440f00f11c7df365a19342b4?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nEdGruberman<br \/>\n.net powershell download httpwebrequest<br \/>\nSeriously? It can&#8217;t be this much code to simply download a file. Basic authentication and redirects seem like simple stuff. After I got through this code, I sat back and thought there has got to be a simpler approach that I am overlooking. I think there are even problems with this code (Doesn&#8217;t compensate for all successful status codes, not robust on header parsing, etc.)Edit: I need to know the file name supplied by the web server to save it locally as the same name.Do I really have to kee<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/472fa883cb41427ebae653ca1cb6005b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nMoonLight<br \/>\nc# asp.net file permissions download<br \/>\ni have a handler for download files like below : using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using NiceFileExplorer.Classes;namespace NiceFileExplorer {\/\/\/ &lt;summary&gt;\/\/\/ Summary description for HandlerForMyFE\/\/\/ &lt;\/summary&gt;public class HandlerForMyFE : IHttpHandler, System.Web.SessionState.IRequiresSessionState{private HttpContext _context;private HttpContext Context{get{return _context;}set{_context = value;}}public void Proce<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/b510e9cb741e4f4e1aed1c4642f21066?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nConner<br \/>\npython download terminal webcomic<br \/>\nI&#8217;ve tried using the following commands to download the ctrl alt del comics.$ for filename in $(seq 20021023 20100503); do wget http:\/\/www.ctrlaltdel-online.com\/comics\/&#8221;$filename&#8221;.jpg; doneI get the following error code, &#8220;bash: syntax error near unexpected token &#8216;do'&#8221;I&#8217;ve also tried using cURL, using this command,curl http:\/\/ctrlaltdel-online.com\/comics[20021023..20100503].jpgI get the following error code, &#8220;curl: (3) [globbing] error: bad range specification after pos 37&#8243;Any help would be great<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/9511d2d079e5387d3240a79c32335136?s=32&amp;d=identicon&amp;r=PG&amp;f=1\" \/><br \/>\njackrobert<br \/>\njsf tomcat download richfaces<br \/>\nIn my application developed by JSF2.0 + Richfaces3.3.3 + Tomcat6.0.29. I maintain my log file into this location : E:\\Tomcat-6.0.29\\Tomcat6.0\\logs\\project.log My tomcat(webapps) Location : E:\\Tomcat-6.0.29\\Tomcat 6.0\\webapps When i click that a4j:commandbutton i want to download that log file, without change the content and filename. The following code worked in (JSF1.2). But After convert JSF2.0, the following code doesn&#8217;t work.download.jsp&lt;h:form id=&#8221;downloadForm&#8221; binding=&#8221;#{Download.initFo<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/fabb5ba8b79d6c14b10de606e8bc64b3?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nChilledrat<br \/>\ndownload amazon-s3<br \/>\nWe just added an autoupdater in our software and got some bug report saying that the autoupdate wouldn&#8217;t complete properly because the downloaded file&#8217;s sha1 checksum wasn&#8217;t matching. We&#8217;re hosted on Amazon S3&#8230;That&#8217;s either something wrong with my code or something wrong with S3.I reread my code for suspicious stuff and wrote a simple script downloading and checking the checksum of the downloaded file, and indeed got a few errors once in while (1 out of 40 yesterday). Today it seems okay.Did y<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/d33f875b2529d5c81c5aab20ee86ca54?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nKestion<br \/>\nsmarty prestashop<br \/>\nI&#8217;m trying to add a new google analytics event in a form. So I have something like this : &lt;a href=&#8221;#&#8221; name=&#8221;button1&#8243; onclick=&#8221;dataLayer.push({&#8216;event&#8217;: &#8216;button1-click&#8217;});&#8221; &gt;Button 1&lt;\/a&gt;So far, so good. But I get this weird smarty error : Fatal error: Uncaught exception &#8216;SmartyCompilerException&#8217; with message &#8216;Syntax Error in template &#8220;C:\\wamp\\www\\mycookit\/themes\/cookit\/delivery.tpl&#8221; on line 164 &#8220;dataLayer.push({&#8216;event&#8217;: &#8216;event_name&#8217;});&#8221; &#8211; Unexpected &#8220;: &#8220;, expected one of: &#8220;}&#8221; , &#8221; &#8220;&#8216; i<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/06f00dd2022147af672e947d76caa111?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nsmerny<br \/>\nprestashop prestashop-1.5<br \/>\nI have a very simple piece of code :$dropOrder = new DropOrder($dropOrderId); $dropOrder-&gt;is_supplier_paid = $payValue; $dropOrder-&gt;save();It works and saves a &#8216;is_supplier_paid&#8217; field value into the database. But it also does unexpected actions and fills all null valued fields with 0 values.I try to save it like this :$dropOrder-&gt;save(true);But I still have the same strange behavior. I want to change one field only and don&#8217;t touch the other ones.<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/bc93d02d76060d95b5b367153e4ca12a?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nuser159377<br \/>\nphp mysql module prestashop<br \/>\nIn prestashop I am doing a module. Where I need to insert some values to the database. So for that I made my code look like this DB::getInstance()-&gt;Execute(&#8216;INSERT INTO `&#8217;._DB_PREFIX_.&#8217;socialapps` (`app_id`, `app_name`, `status`, `title`) VALUES (1, &#8216;google plus&#8217;, 0, &#8216;google title&#8217;)&#8217;);But every time I am getting error like Parse error: syntax error, unexpected T_STRING in the line. So can someone kindly tell me what is the wrong here? Any help and suggestions will be really appreciable. Thank<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/aee3b44e5f0b4dfa0e2da672897b3751?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nj0k<br \/>\njavascript smarty prestashop<br \/>\nI&#8217;m developing a Prestashop website, and I&#8217;m getting a &#8220;SyntaxError: unterminated string literal&#8221; javascript error. The problem is when I get an address, this works nice:,&#8221;address1&#8243;:&#8221;Pza libertad&#8221; ,&#8221;address2&#8243;:&#8221;4&amp;ordm; 3&amp;ordf;&#8221; ,&#8221;postcode&#8221;:&#8221;08905&#8243;The problem comes here:,&#8221;address1&#8243;:&#8221;Plaza libertad 3&#8243;,&#8221;address2&#8243;:&#8221; 4&amp;ordm;3&amp;ordf;&#8221;,&#8221;postcode&#8221;:&#8221;08905&#8243;This code is generated like this:{foreach from=$type.formated_fields_values key=pattern_name item=field_name name=inv_loop} {if !$smarty.<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/aee3b44e5f0b4dfa0e2da672897b3751?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nj0k<br \/>\nphp prestashop<br \/>\nmaybe someone can shed some light on this: why when I upload big image to my prestashop powered website it gives &#8220;memory exhausted error&#8221; (which is what I&#8217;ve expected), but only when php version is 5.3.14. When I switch to 5.4.4 &#8211; the same procedure gives blank page. display_errors is set to &#8216;on&#8217; both times.From php.net documentation &#8211; &#8220;Although display_errors may be set at runtime (with ini_set()), it won&#8217;t have any affect if the script has fatal errors. This is because the desired runtime acti<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c0d4c48fe5f5e8499b2e3241c3de4dc0?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\ndazfx<br \/>\nphp function smarty prestashop<br \/>\nIs a function that is called in product-list.php.{mycat id_product_my=$product.id_product}In this form, write a line above, the variable($product.id_product) is not passed to function:{$product.id_product}returns right result as id.{mycat id_product_my=15}returns right result as categories of product with id(15).What&#8217;s wrong?&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;php funct:function smarty_compiler_mycat($params, &amp;$smarty) {$id_product_my = $params[&#8216;id_product_my&#8217;];$ret = &#8220;&#8221;;if ($row = D<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/55c009f80972754e91f06b29a7dce0fc?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nSid<br \/>\nphp prestashop<br \/>\nI am using a prestashop and I need to change the max_input_vars so translation changes are applied from the Translation section.I cannot use php_value in .htaccess because of my hosting provider policy, so I need to use the php.ini file. I&#8217;ve created it into the prestashop administration folder with the content:max_input_vars = 3000But when I update the translations, I get the error of max_input_vars, so it is not being changed with the php.ini. I&#8217;ve also tried without blanks, with a trailing &#8220;;<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/078cae22efd363336b6bf0f6116d7441?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nPetr Sr\u00e1mek<br \/>\nmysql database innodb prestashop myisam<br \/>\nI make my first eshop using Prestashop and I&#8217;m not sure if is better use MyISAM or InnoDB. In eshop could be max about 3 000 items. I think that most important for that question is how much items will be in eshop, but if I didn&#8217;t write some other important information, please ask me.<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.stack.imgur.com\/KMGQ4.png?s=32&amp;g=1\" \/><br \/>\nVit Kos<br \/>\nphp prestashop<br \/>\nI have a back office controller in my module that displays my info. I&#8217;m trying to redirect manager to another controller by clicking on a button in toolbar. For this I have made a button using the initToolbar() method: everything seems fine but it crashes on click. here is the code of the initToolbar():public function initToolbar() {parent::initToolbar();$this-&gt;toolbar_btn[&#8216;preview&#8217;]=array(&#8216;href&#8217;=&gt;$this-&gt;context-&gt;link-&gt;getAdminLink(&#8216;AdminClaim&#8217;,true),&#8217;desc&#8217;=&gt;$this-&gt;l(&#8220;Claims<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/622754e8a50f74b616e91c3513091337?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nAndrewS<br \/>\njquery prestashop<br \/>\nI can&#8217;t figure out how to configure jQuery NoConflict(). This small function (jquery) works fine:$(&#8216;.product_list &gt; li&#8217;).css(&#8216;width&#8217;, &#8216;50%&#8217;).css(&#8216;width&#8217;, &#8216;-=42px&#8217;);$(&#8216;.product_grid &gt; li&#8217;).css(&#8216;width&#8217;, &#8216;20%&#8217;).css(&#8216;width&#8217;, &#8216;-=42px&#8217;);$(&#8216;.product_grid ul.buttons li&#8217;).css(&#8216;width&#8217;, &#8216;100%&#8217;).css(&#8216;width&#8217;, &#8216;-=21px&#8217;);It stops working when I run another jQuery script.This is a &#8220;blocklayered.js&#8221; and it also uses some AJAX script (this si a script that works for filtering products in prestashop)How can<\/li>\n<\/ul>\n<p>Web site is in building<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ben database csv bulk I try to load my database with tons of data from a .csv file sized 1.4 GB. But when I try to run my code I get errors. Here&#8217;s my code:USE [Intradata NYSE] GO CREATE TABLE CSVTest1 (Ticker varchar(10) NULL, dateval date NULL, timevale time(0) NULL, Openval varchar(10) NULL, Highval varchar(10) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-3569","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/3569","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/comments?post=3569"}],"version-history":[{"count":0,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/3569\/revisions"}],"wp:attachment":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/media?parent=3569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/categories?post=3569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/tags?post=3569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}