Search found 3 matches
- Fri Jun 27, 2003 5:56 am
- Forum: Databases
- Topic: BACKUP TABLE - file rights
- Replies: 3
- Views: 531
Permission problem
Thanks for your message! But is it possible to give other file rights from php to the output of this backup methode than those of the mysql server? I want to compress backup tables from within php. But thats not possible because of the permission problem. $sql = ' BACKUP TABLE test_table TO "/b...
- Thu Jun 26, 2003 11:12 am
- Forum: Databases
- Topic: BACKUP TABLE - file rights
- Replies: 3
- Views: 531
BACKUP TABLE - file rights
Hi, Doing a backup of db tables under mysql using $sql = ' BACKUP TABLE test_table TO "/backup" '; give the backup files the rights of the mysql server. I my environement this is: user: mysql group: daemon If the apache isn't a member of the "daemon" group, php can not do some wo...
- Sat Jun 21, 2003 10:45 am
- Forum: PHP - Code
- Topic: Regex delimiter problem
- Replies: 1
- Views: 473
Regex delimiter problem
Some delimiters chars wont work under windows. Ex. in preg_match: "°[a-z]?°" works on linux but on windows you get a warning: Warning: Unknown modifier '?' in ........ on line xx "/[a-z]?/" works on both systems So my question is: Are there similar problems in other functions or ...