This page is a NO-INDEX summary of comments posted in this blog.
Total 849 Comments (19/34 Pages) - Newer Comments - Older Comments
451. 2017-03-04 18:53:30 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
1. you can login to mysql console and run source db.sql
2. you can drop table if exists first then create database.
452. 2017-03-04 18:52:36 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
drop database if exists?
453. 2017-03-04 14:57:44 Jawad Amin Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
Because when I re-run the script. It says "Can't create database 'XXXXXX'; database exists"..
Thats why I need to update it frequently. How can I do this?
454. 2017-03-04 14:55:22 Jawad Amin Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
Give the proper permissions to the DB user you have assigned to handle the DB.
455. 2017-03-04 14:54:13 Jawad Amin Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
I need some guidance. I have implemented this method in my project.
I want to take backup whenever I want, which is working fine with this script. Need few clarification:
1) How can I restore the data from copy db to original db when I want?
2) Is there a way that I frequently UPDATE the copy my db via cron job rather than using CREATE DATABASE $newDB?
456. 2017-03-04 08:42:25 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
You are welcome
457. 2017-03-04 07:37:01 Jawad Amin Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
Awesome. I was looking for this script, as the way it is..!!
Thanks 🙂
458. 2017-03-03 13:20:52 ACMer Comments on Why and When should you do a Profiling on Your Application?:
then welcome 🙂
459. 2017-03-03 13:19:33 Editor Comments on Why and When should you do a Profiling on Your Application?:
I am new
460. 2017-03-01 20:31:03 bb Comments on Using Voice Engine in VBScript:
Mine is transgender 🙂
461. 2017-02-28 23:52:59 ACMer Comments on Creating Sitemap Generator for PHPBB3.1 using PHP:
yes, but you can always create sub-sitemaps.
462. 2017-02-28 23:47:17 andreas Comments on Creating Sitemap Generator for PHPBB3.1 using PHP:
Hi, isn't there a limit of 50.000 links in a sitemap from google ??
463. 2017-02-27 19:06:27 ACMer Comments on Coding Exercise - Remove Duplicates From Sorted List - C++ - Online Judge:
you can use the hash table to store the existing unique values.
464. 2017-02-27 17:47:24 xyz Comments on Coding Exercise - Remove Duplicates From Sorted List - C++ - Online Judge:
how we can delete user defined duplicates only
465. 2017-02-27 09:26:53 ACMer Comments on Easy Rate Limit in PHP using Simple Strategy - An API Example:
Yes, you are right. That is why, this is called 'easy' barrier.
466. 2017-02-27 02:59:30 Danton Comments on Easy Rate Limit in PHP using Simple Strategy - An API Example:
Isn't session stored on cookie (session ID... not the variables on php...)? So if user wants to bypass API call limit, he could only clean browser data... Or I am wrong?
467. 2017-02-22 15:11:16 ACMer Comments on Easy Rate Limit in PHP using Simple Strategy - An API Example:
too many contents?
468. 2017-02-22 15:10:35 Paolo Comments on Easy Rate Limit in PHP using Simple Strategy - An API Example:
Why this website is so "heavy" ?
469. 2017-02-15 16:36:08 ACMer Comments on Creating Sitemap Generator for PHPBB3.1 using PHP:
Yes, it should work.
470. 2017-02-15 16:34:41 Gek Comments on Creating Sitemap Generator for PHPBB3.1 using PHP:
Hi,
May I know if this methid would work with phpbb 3.2.
Regards,
G
471. 2017-02-13 09:27:50 ACMer Comments on How to Remove Product Review in Woocommerce/Wordpress?:
I am Glad it helps
472. 2017-02-13 07:35:23 MakeOnlineShop Comments on How to Remove Product Review in Woocommerce/Wordpress?:
Hello an Thank you !
I don;'t know why but it was not possible anymore to hide the products review from Woocommerce settings, so I used your code below and it worked !
Thank you again
add_filter( 'woocommerce_product_tabs', 'helloacm_remove_product_review', 99);
function helloacm_remove_product_review($tabs) {
unset($tabs['reviews']);
return $tabs;
}
473. 2017-02-03 15:34:08 Robert Comments on Script32: A Freeware to Convert VBScript/JScript/HTA to Executables:
That is exactly what iexpress does and its free in all versions of windows, Select in iexpress "compress" and it creates a single executable file for your .bat files and scripts files you add and creates a install wizard cad for the installer.. ExeScript is also Free in Windows and it will create or convert all the files you listed into BAT files from .all the files types you listed..
474. 2017-02-03 13:38:48 ACMer Comments on Script32: A Freeware to Convert VBScript/JScript/HTA to Executables:
we want an exe only. Windows pack these files, but it will unpack them at some point to the temp directory.
475. 2017-02-03 03:07:27 Robert Comments on Script32: A Freeware to Convert VBScript/JScript/HTA to Executables:
Windows has a hidden program called iexpress that will create, package and CAD all file types such as .js, .hta, vb, and .bat files into perfectly executable and or install-able programs and also saves Versioning as saved SAD files,, It allows you to compress them into .cad files for easy deployment as well. So why does anyone need all this for? lol It even works with python files if you add a promt in your .hta index file to have the user add that version of python or add it as a zip installer with your cad package, have your bat execute the unzip and it will install it and have the .bat point and execute that python.py file.. A deployment package can have many executable's too. Another secret is all windows come with a ExeScript app.. It will convert all the scripts you mentioned into single executable's too.
Newer Comments - Older Comments
–EOF (The Ultimate Computing & Technology Blog) — 46 words