Search found 192 matches

by mister_v
Sun Jul 31, 2011 2:11 pm
Forum: General
Topic: phpBB error: Could not get style data
Replies: 1
Views: 27924

phpBB error: Could not get style data

Hello,

I restored a backup of my forum (phpBB).
Put no I get the follwong error:
General Error
Could not get style data
As far as I know the backup has all the files, including those of styles.
Anyone got any ideas
by mister_v
Tue Mar 15, 2011 4:55 pm
Forum: Apache
Topic: Solved:You don't have permission to access / on this server.
Replies: 2
Views: 27099

Re: You don't have permission to access / on this server.

yes, it was indeed a problem with the permissions. I had a symbolic link to my home directory. In my config-file everything was OK /etc/apache2/sites-available/immo <VirtualHost *:8084> ServerAdmin webmaster@localhost DocumentRoot /var/www/immo <Directory /> Options FollowSymLinks AllowOverride None...
by mister_v
Wed Feb 09, 2011 8:08 pm
Forum: PHP
Topic: solved: split() is deprecated
Replies: 2
Views: 23449

solved: split() is deprecated

I get the following warning message

Code: Select all

PHP Deprecated:  Function split() is deprecated 
Should I use another function?
by mister_v
Thu Jan 20, 2011 1:42 pm
Forum: Servers
Topic: fetchmail problem: fetchmail: Query status=4 (PROTOCOL)
Replies: 1
Views: 30964

Re: fetchmail problem: fetchmail: Query status=4 (PROTOCOL)

I solved my problem with a workaround.

I deleted the mailbox-file on the mail-server. (Made a backup first)

Let the new mail come in and it worked!

I don't know what went wrong.
The file was 10Mb, which isn't supper large.
Perhaps some faulty characters in it?
by mister_v
Thu Jan 20, 2011 1:17 pm
Forum: Servers
Topic: fetchmail problem: fetchmail: Query status=4 (PROTOCOL)
Replies: 1
Views: 30964

fetchmail problem: fetchmail: Query status=4 (PROTOCOL)

Hi, I have a problem with fetching mail from a account. I always get the error: fetchmail: client/server protocol error while fetching from user@site.com fetchmail: Query status=4 (PROTOCOL) When I do it with verbose (fetchmail -v): fetchmail: POP3> USER user fetchmail: POP3< +OK fetchmail: POP3> PA...
by mister_v
Mon Dec 27, 2010 8:04 pm
Forum: SQL
Topic: Solved: How to execute a SQL query from shell
Replies: 1
Views: 18820

Solved: How to execute a SQL query from shell

Hello,

How do I execute a SQL query directly from shell command line?

Thanks,
by mister_v
Wed Dec 01, 2010 5:29 pm
Forum: Apache
Topic: Solved:You don't have permission to access / on this server.
Replies: 2
Views: 27099

Solved:You don't have permission to access / on this server.

Hi,

Installed apache, set up the virtual hosts.
But i get the following message:

Code: Select all

You don't have permission to access / on this server.
But everyone should have access,
and I'm accessing it from the local host.
by mister_v
Sat Oct 02, 2010 11:29 pm
Forum: General
Topic: Save webpage with firefox command line
Replies: 1
Views: 23190

Save webpage with firefox command line

Hi,

I would like to use firefox (or another browser) to save a web page.

I know I can use wget to get a file,
But I need to process javascript before it prints the layout.

I tried Links and Lynx but they didn't process the javascript.

Anyone got any ideas?
by mister_v
Wed Sep 22, 2010 11:53 am
Forum: SQL
Topic: How do I load a csv file in MYSQL
Replies: 4
Views: 24946

Re: How do I load a csv file in MYSQL

Hi,

it doesn't work!
Everytime I try, I get a "file not found" error.
But the file is there!

Code: Select all

mysql> LOAD DATA INFILE '/home/me/postcodes.csv' INTO TABLE i_city;
ERROR 29 (HY000): File '/home/me/postcodes.csv' not found (Errcode: 13)
by mister_v
Fri Sep 03, 2010 12:34 pm
Forum: General
Topic: Solved: Remove the ^M Character
Replies: 2
Views: 24680

Re: Remove the ^M Character

Code: Select all

sed s/\r// hello.txt > goodhello.txt
works fine,

Thanks