Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,064
» Latest member: Brendawax
» Forum threads: 1,045
» Forum posts: 1,114

Full Statistics

Latest Threads
ADD DOMAIN (can't find v...
Forum: Ehcp General, uncategorized yet
Last Post: RichardCrite
11-24-2024, 02:03 AM
» Replies: 29
» Views: 53,053
EHCP API1 error
Forum: Ehcp Development
Last Post: robind99
04-14-2023, 10:14 PM
» Replies: 4
» Views: 3
EHCP API Setup subdomain
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 2
» Views: 67
EHCP auto startup nginx i...
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 2
» Views: 0
VSFTPD
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 3
» Views: 5
PHP failed copy
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 2
» Views: 3
install echp + node js
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 2
» Views: 0
About Beta Software, Ehcp...
Forum: Ehcp Development
Last Post: ehcpdeveloper
04-14-2023, 10:14 PM
» Replies: 1
» Views: 1
La marque de l'enseigne C...
Forum: Ehcp Development
Last Post: shanmao
04-14-2023, 10:14 PM
» Replies: 1
» Views: 0
On portera une attention ...
Forum: Ehcp Development
Last Post: shanmao
04-14-2023, 10:14 PM
» Replies: 1
» Views: 1

 
  apt-get remove problem
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

problem was:
<code>
# dpkg --remove --force-all adobe-flashplugin
dpkg: warning: overriding problem because --force enabled:
Package is in a very bad inconsistent state - you should
reinstall it before attempting a removal.
(Reading database ... 200274 files and directories currently installed.)
adobe-flashplugin kaldırılıyor ...
update-alternatives: error: no alternatives for iceape-flashplugin.
update-alternatives: error: no alternatives for iceape-flashplugin.
dpkg: error processing adobe-flashplugin (--remove):
installed pre-removal script alt işlemi çıkış durumunda hata döndürdü : 2
postinst called with argument `abort-remove'
dpkg: temizleme esnasında hata oluştu:
installed post-installation script alt işlemi çıkış durumunda hata döndürdü : 1
Errors were encountered while processing:
adobe-flashplugin
</code>

solution: (really bad but working solution, i found no else.. )
<code>
rm /var/lib/dpkg/info/adobe-flashplugin.prerm
</code>

I found that solution in:
https://lists.ubuntu.com/archives/ubuntu...03602.html

Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  google chrome os image download
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

http://download.softpedia.ro/dl/3b493ab7a6e3304947c9eccef8e42d34/4b0c79ed/500052489/linux/chromiumos-0.4.22.8.tar.gz

http://gdgt.com/google/chrome-os/download/



Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  Incremental Debian backup
Posted by: luke duck - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (2)

Hi,

I look for incremental backup open source software. Can someone tell me the best solution ?

I would like to have this capacity :

restore one site (joomla files + mysql) web easilly.

I use Acronis for windows in another server and i can restore a site in less than 5 minutes, il would like to do this in Debian.

Restored from old drupal forum, for user uid:2979 username:luke duck
You may reset your password to access your new account here.

Print this item

  wma to mp3 convertor
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

you need to first:
apt-get install lame mplayer


#!/bin/bash
#############################################################
# wma2mp3 v0.12
# by Calum and Void Main
#
# e.g. wma2mp3 myfile.wma
# e.g. wma2mp3 myfile.wma myfile2.wma myfile3.wma
# e.g. wma2mp3 "my file.wma" "my file 2.wma" "my file 3.wma"
# e.g. wma2mp3 *.wma
# e.g. wma2mp3 /directory/containing/wma/files
# e.g. wma2mp3 .
#
# http://voidmain.is-a-geek.net/forums/viewtopic.php?t=407
#
# History:
# 16 May 2003 - v0.1 wma2mp3 script created
# 27 August 2005 - v0.11 -aofile had been deprecated, corrected
# 28 August 2005 - v0.12 Added "IFS=" -Void
#############################################################

# Turn off input field separation so filenames with spaces work
IFS=

#############################################################
# Move the conversion process into a function that can
# be called.
# The "&&" makes it so each step must be successful before
# the next step will be done.
#############################################################

function wma2mp3 () {
if [ ! -f "$1" ]; then
echo "File $1 not found!"
else
mplayer -ao pcm:file="${1%%.[Ww][Mm][Aa]}.wav" "$1" &&
lame -h -b 192 "${1%%.[Ww][Mm][Aa]}.wav" "${1%%.[Ww][Mm][Aa]}.mp3" &&
rm -f "${1%%.[Ww][Mm][Aa]}.wav" ||
echo "There was a problem with the conversion process!"
fi
}

#############################################################
# Not enough information to compute
#############################################################
if [ $# -lt 1 ]; then
echo "Syntax: `basename $0` <wmaFilename(s)|wmaDirectory>"
exit
fi

#############################################################
# Directory was passed so convert all wma files in directory
#############################################################
if [ $# -eq 1 -a -d "$1" ]; then
for file in $1/*.[Ww][Mm][Aa]
do
wma2mp3 "$file"
done
exit
fi

#############################################################
# One or more wma files were passed, convert them
#############################################################
for file in $*
do
wma2mp3 "$file"
done
exit


Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  howto renew a domain
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

Question:
Can you tell me how to reregister my domain.

Answer:
Domain renewals are done some different ways in different registrars (domain sellers).

Some of them do keep domain for 2 months, you can renew (re-register) domain with no additional cost,

Some of registrars, do lock domain, and wants some extra money for domain renewal..

I dont know specifically the seller of rendokan.ca, how they behave,

you should login to your acount on your registrar, (where you bought rendokan) and look for renew somewhere there,

or just try to register domain rendokan, it may redirect you to a buy/renew page...

Ideally, you should not be too late for a domain renew, and renew it before it expires...

hope that helped you.

Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  Admin support we can help you Admininstrator your server Check it out
Posted by: tdog89 - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

Hello, okay some people don't know about linux don't know how to use the linux command line and much much more. Well Trower Hosting Service Provider, LLC. offer administrator help. Yes we do charge 90/an hour for "Straight admin work" meaning if we setup everything including configs than we will charge. We don't mind install ehcp on your server through putty. So ask us click livezilla Live Help under comments or go to our website http://www.trowerhosting.com

Restored from old drupal forum, for user uid:735 username:tdog89
You may reset your password to access your new account here.

Print this item

  linphone installation problem
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (2)

In Ubuntu 9.04,
checking for LIBGTK... configure: error: Package requirements (gtk+-2.0 >= 2.4.0 gthread-2.0) were not met
No package 'gtk+-2.0' found
configure: error: Could not find osip2 headers
checking for SPEEX... configure: error: Package requirements (speex >= 1.1.6) were not met:


solution:
aptitude install libexosip2-dev libosip2-dev
aptitude install libglade2-dev libgtk-dev libgtk2.0-dev

i downloaded speex from http://speex.org/downloads/
and builded from source

then i got an error complaining ffmpeg, for video support,
i did: ./configuer --disable-video

make
make install

but linphone did not run again...


Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  Ubuntu Dual Head Monitor
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

Worked for Ati Radeon 2400 pro
should work for all ati cards..


for normal dual head monitor, with xinerama on ati,

open console,
run followings:

aticonfig --initial=dual-head --screen-layout=right
aticonfig --dtop=horizontal --overlay-on=0
aticonfig --xinerama=on


this will setup an xorg.conf with dual head, one large desktop, you can drag a windows from one monitor to another...


Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  qt released qt-creator beta which is a programming ide
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

This was what i am looking forward to..
There is no good ide in Linux world, that is able to do desktop gui programming..

with qt-creator, qt done a good job.
I downloaded beta and tested, it was resonably easy... i was able to make a basic desktop application with it..

here is what i found as a tutorial: http://doc.trolltech.com/qtcreator-0.9.1-beta/creator-writing-program.html

qt-creator is at: http://trolltech.com/developer/qt-creator

Restored from old drupal forum, for user uid:1 username:ehcpdeveloper
You may reset your password to access your new account here.

Print this item

  Server kurmak joomla ehcp
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

Aşağıda, server kurmak hakkında ilginç bir diyalog joomlatr forumundan alınmıştır. sayın joomlatr yöneticileri, konuyu kapatmış, üyeliğimi de dondurmuşlardır.. Bu davranışlarından dolayı kınıyorum... birçok kurumun sansüründen yakınırken, kendinizin sansür uygulaması son derece yanlıştır. sansüre konu olan yer lüzumsuz görünse bile yanlıştır... ne biliyorsunuz, size göre lüzumsuz olan bir konu başkasına göre lüzumlu belkide ? neymiş, konu lüzumsuz uzadığından kapanmışmış...


neyse işte diyalog:
<!--break-->
A:
Arkadaşlar biz urfada yerel bir radyo yayını yapıyoruz. Kendi serverımızı kurduk ama windows. Ben bir linux server kurup joomla ile bir site hazırlamak istiyorum ve buradan radyo yayınımızı sunmak istiyorum bunu nasıl yapabillirim? acil yardımlarınızı ve fikirlerinizi bekliyorum.

B:
valla bildiğim kadar bi web sayfası alıyosun böle bedava alıyosun bunları hotmail,gmail....vb. gibialıyosun onun üstüne kuruyosun ama bunlar senin web sitende reklam yapıyo işte bunların SQL destekli olanları fln var onları tavsiye ederim yalnız bende tam emin deilim
arkadaşım kusura bakma yanlış herhalde benim sölediğim özür dilerim

C:
Arkadaşım eğer server kurmak istiyorsan öncelikle bir linux sürümü bulmalısın (seçmelisin).

Ben Debian 4.0 netinstall kullanıyorum 180 mb lık bir iso dosyası internetten indirip cd ye yazıyorsun sonra kuruyorsun.

İnternetten istediğin eklentileride çevrimiçi kuruyor böylece Gb larca download yapmana gerek kalmıyor.

Bunun üstünede EHCP diye bir hosting panel var tamamen ücretsiz.

Belki inanamayacaksınız ama bir ilk bu paneli yazan bir türk ankarada yaşıyor.

Debian ın üzerine EHCP yide kuruyorsun hepsi bu kadar sınırsız domain sınırsız veritabanı sınırsız email alsana hosting.

Birde piyasada yok adsl ile hot yapılmazmız yok hızı yetmezmiş diye söylentiler var hiçbirine inanma 300 kişi online oldu tık demedi. Hemde adsl 1024/256

Ayrıca windows üzerine virtual pc kurupta sanal kurulumda yapabilirsin çalışıyor.

Joomladada hiç sorun çıkarmıyor.
Kolay gelsin


C:
Haa bu arada unuttum EHCP nin (Easy Hosting Control Panel) web sitesi www.ehcp.net burada gerekli dökğmanları bulabilirsin.

A:
ben siteye girdimde orada birçok indirme seçeneği var hangisiini indirmem gerekiyor..


ehcp:
ehcp version 0.27 cikti..
www.ehcp.net sayfasinda gerekli bilgiler var.

www.ehcp.net/download adresinden indirebilirsiniz.

direk linux sunucunuzda kurmak icin, asagidaki komutları komut satırında giriniz, direk kurmaya baslayacaktır....:




wget www.ehcp.net/download
tar -zxvf ehcp_latest.tgz
cd ehcp
./install.sh
#



Ayrıca, versiyon 0.27 ile beraber, easy one click install özelligi eklendi..
yani mesela hostinginiz icine joomla kuracaksınız, joomlayı kendi bilgisarına indir, aç, teker teker sunucuya ftp ile at, bunları yapmıyorsunuz.
onun yerine,
ehcp panelde, install scripts e tıklıyorsunuz, joomla seciyorsunuz, falan dizine kur diyorsunuz. kendisi indirip açıp dosyaları dizine kopyalıyor.. geri kalan joomla kurulumunu webden direk yapıyorsunuz... çok istenen bir özellikti... Ayrıca ehcp icine başka scriptler de , sadece url gösterilerek eklenebiliyor, yani easy oneclick install olarak...

ehcp hakkinda sorularınız olursa bana yazınız....
slmlar.



D:
Selamlar
Bu EHPC yi CentOs 5.2 versiona da kurailirmiyiz acaba?


ehcp:
centos redhat tabanlıdır,
ehcp ise debian tabanlı linuxlere kurulabilir,
bu nedenle centos da ehcpyi direk kuramazsınız.
ancak çok zorlama ile elle kurup belki çalıştırabilirsiniz ki, zor..



D:
Valla aslına bakarsanız radyo yayını filan beni pek ilgilendirmiyor ama şu ADSL üzerinde sunucu işi beni çok cezbetti.
300 kişiş aynı anda online oldu banamısın demedi diyor arkadaşımız, hemde bunun 1024/256 da olduğunu söylüyor.
Eğerki ben 300kişilik online kullanıcısı olan bir siteyi kurduğum serverda ADSL ile yayın yapabileceksem 4096/1024 e hemen geçerim.

4096kb download hızıyla sınırsız downloadımı yaparım, site kullanıcısına lazım olan zaten 1024kb lik upload bölümü. 1Mbit hızındada bir host hizmeti vermiş olurum.

Dışarıya hosting satışıda olmayacağı için Control Panelde olmazsa olmaz birşey değil benim için.
CentOS5.2 ile gayet güzel bir web sunucuda kurulabilir bence.
Zaten kiraladığımız hostlardada CentOs5.x veya 4.x sürümler kurulu değilmi




ehcp:
ubuntu artık birçok suncularda alternatif olarak var. veya debian.
ehcp tüm debian ve türevlerinde çalışıyor. kurulumu oldukça kolay. tek domain bile işletecekseniz, control panel gerekebilir, mailler için falan...

E:
öncelikle kendi işletim sisteminizde yani %99.9 umuz windows kullanıyoruz server kurup adsl ile internete bağlanabilir ve yayın yapabilirsiniz.nasıl mı?
öncelikle sabit bir ip numarası ile adsl hattı almanız gerekiyor. daha sonra kendi alan adınızı bir şirketten alıp o alan adınız için tek dns lik yönlendirme yapmazın gerekli(domaini aldığınız yerlerden dns yönlendirmelerini ayarlayabiliyorsunuz yani sizin için dns tanım

Print this item


Online Shopping App
Online Shopping - E-Commerce Platform
Online Shopping - E-Commerce Platform
Feinunze Schmuck Jewelery Online Shopping