![]() |
While updateing from 1.0.0: syntax error near unexpected token `(' - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Update/Upgrade (/forum-44.html) +--- Thread: While updateing from 1.0.0: syntax error near unexpected token `(' (/thread-7917.html) Pages: 1 2 |
While updateing from 1.0.0: syntax error near unexpected token `(' - kleidi - 09-21-2009 11:30 PM Hello there! I'm making an update from 1.0.0 to 1.0.2 but, on step 3 fro this "How to" http://isp-control.net/documentation/doku.php?id=start:installation:debian i receive an error while i tried to run this command: Code: # aptitude install $ (cat ./docs/Debian/debian-packages-`lsb_release -cs`) Code: (root@W003)-(/usr/local/src/ispcp/ispcp-omega-1.0.2) $ aptitude install $ (cat ./docs/Debian/debian-packages-`lsb_release -cs`) PS: I'm using an updated Debian lenny: Code: $ lsb_release -a RE: While updateing from 1.0.0: syntax error near unexpected token `(' - joximu - 09-21-2009 11:49 PM theres a space to much: "$(" instead of "$ (" Code: aptitude install $(cat ./docs/Debian/debian-packages-`lsb_release -cs`) /J RE: While updateing from 1.0.0: syntax error near unexpected token `(' - kleidi - 09-21-2009 11:59 PM (09-21-2009 11:49 PM)joximu Wrote: theres a space to much: Thank you for your fast reply! When i run that command i received: Code: (root@W003)-(/usr/local/src/ispcp/ispcp-omega-1.0.2) $ aptitude install $(cat ./docs/Debian/debian-packages-`lsb_release -cs`) ...but, at the instruction page of updateing ispcp appear those instructions on step3 Code: Make sure you have added the non-free into your /etc/apt/sources.list: ... and i don't receive any of this screens! Is this ok? Thanks again! RE: While updateing from 1.0.0: syntax error near unexpected token `(' - joximu - 09-22-2009 12:04 AM hm... try this: aptitude install $(cat ./docs/Debian/debian-packages-lenny) /J RE: While updateing from 1.0.0: syntax error near unexpected token `(' - kleidi - 09-22-2009 12:38 AM The same results ! Thx anyway ... i have made the update without problems, but, seems that ispcp settings dose not exist anymore. Can you help me to put old settings online? I have made a backup like those instructions: http://www.isp-control.net/documentation/doku.php?id=start:upgrade:rc RE: While updateing from 1.0.0: syntax error near unexpected token `(' - joximu - 09-22-2009 12:52 AM You should have the original settings in /var/www/ispcp/backup What is not working? /J RE: While updateing from 1.0.0: syntax error near unexpected token `(' - kleidi - 09-22-2009 12:55 AM I saw them , but i don't know if it is correct to copy them all in the current ispcp folder Code: (root@W003)-(/var/www/ispcp) $ cd backups RE: While updateing from 1.0.0: syntax error near unexpected token `(' - joximu - 09-22-2009 01:09 AM the tar.bz2 contain the /etc/ispcp - the sql of course the database :-) at least they should help to get the correct values... /J RE: While updateing from 1.0.0: syntax error near unexpected token `(' - kleidi - 09-22-2009 01:43 AM I hope that this will be the last question: How to restore the database ? I appreciate your help and i thank you very much ![]() RE: While updateing from 1.0.0: syntax error near unexpected token `(' - joximu - 09-22-2009 02:40 AM hm... out of my mind... extract the backup (-> ispcp-xxx.sql) log into mysql use db ispcp source the ispcp-xxx.sql file (all tables are removed and created from fresh) maybe make another backup before :-) you also can load the sql file in pma as sql-source /J |