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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,048
» Latest member: Adrianagrils
» Forum threads: 1,052
» Forum posts: 1,197

Full Statistics

Latest Threads
ADD DOMAIN (can't find v...
Forum: Ehcp General, uncategorized yet
Last Post: servisnyy_gnEt
Yesterday, 10:01 PM
» Replies: 73
» Views: 90,822
5 sulfosalicylic acid dih...
Forum: Ehcp General, uncategorized yet
Last Post: Lavillsauro
11-15-2025, 05:40 PM
» Replies: 0
» Views: 150
Hi, I would like to ask f...
Forum: Ubuntu Topics
Last Post: Juliaseema
11-10-2025, 01:35 PM
» Replies: 0
» Views: 0
Hello, I need a recommend...
Forum: General Linux
Last Post: Juliaseema
11-10-2025, 01:34 PM
» Replies: 0
» Views: 0
Hello, I need a recommend...
Forum: Ehcp for Developers and Programmers/Designers
Last Post: Juliaseema
11-10-2025, 01:33 PM
» Replies: 0
» Views: 0
Hello, I need a recommend...
Forum: Ehcp Problems - After Installation
Last Post: Juliaseema
11-10-2025, 01:31 PM
» Replies: 0
» Views: 0
Hello, I need a recommend...
Forum: Ehcp Development
Last Post: Juliaseema
11-10-2025, 01:30 PM
» Replies: 0
» Views: 2
Hello! Can you advise me?
Forum: Ehcp General, uncategorized yet
Last Post: Juliaseema
11-10-2025, 01:29 PM
» Replies: 0
» Views: 139
Email DKIM
Forum: Ehcp HowTos
Last Post: Lavillsauro
11-08-2025, 03:24 PM
» Replies: 3
» Views: 16
run ehcp on rasperry pi
Forum: Ehcp HowTos
Last Post: Lavillsauro
11-02-2025, 10:18 AM
» Replies: 3
» Views: 19

 
  Interface 'Iterator' not found error, php bug.
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

English below.
--
Eğer php programınız,
Interface 'Iterator' not found

hatası vererek kapanıyorsa,
ozaman php'niz Türkçe ayarlarıyla çalışırken büyük I harfi içeren fonksiyonları okuyamıyor demektir. bu konudaki php bug'ı şu: https://bugs.php.net/bug.php?id=18556
Bu bug, ne hikmetse 2002 yılından beri düzeltilmemiş.

Tek çıkış yolu, ilgili php/apache init scriptinin içine şunu yazmak:

export LOCALE=en_US.UTF-8
export LANG=en_US.UTF-8

bunu yazıp, /etc/init.d/php5-fpm restart
demek.
böyle yazınca bende çalıştı.. başka biçok şey denedim, olmadı, bu oldu.

English:
if you have error "Interface 'Iterator' not found error", then, most probably you are using Turkish locale and php has a bug related to this.
the only solution that I found is:
put following into init.d/startup scripts of related programs, php or apache.
export LOCALE=en_US.UTF-8
export LANG=en_US.UTF-8

at start of it.


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

  Directory structure
Posted by: shovenose - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (3)

Sorry for all the questions lol...
OK so I host a site on an Ubuntu Server 11.10 PC with EHCP.
I use DynDNS because I have lousy DSL with dynamic IP addresses...
Anyway, that means I have to access my EHCP control panel (if I'm home) with http://10.0.1.48/ehcp/ instead of http://shovenose.dyndns.org/ehcp/
because for some reason if I use the dyndns address from within my LAN it times out (even though it works perfectly from anywhere else in the world)...

BUT that means I can't access my forum! I created a new user on my EHCP server, added the domain shovenose.dyndns.org to the server, so it works bautifully from everywhere else, except I have to use a proxy (like ProxFree.com or something) to go on my forum... very annoying!
How do I access it? like http://10.0.1.48/something/something/something
thanks!

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

Print this item

  PhpMyAdmin
Posted by: shovenose - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (2)

I have 3 servers in my house:
<!--break-->
1. Minecraft server, Windows 2003 Server, port 25565
2. Web and database server for a forum http://shovenose.dyndns.org/ ,Ubuntu Server 11.10, port 80
3. THE ONE I NEED HELP WITH, internal LAN IP 10.0.1.52

It's also running Ubuntu Server 11.10, both linux servers (2&3) use EHCP hosting control panel...
If I type in http://10.0.1.52/phpmyadmin/ then it takes me to PHPMYADMIN properly...
But if I'm anywhere else and type in http://shovenose.dyndns.org/phpmyadmin it takes me to the login for #2 (local IP 10.0.1.48) because port 80 forwards to that.

So I'm wondering, can I make it so that people can type in http://shovenose.dyndns.org/phpmyadmin and they end up at the login for SERVER #3 not SERVER #2?
It looks like phpMyAdmin uses port 80 for its interface, while the actual MySQL uses port TCP3306 (I think?)
I'm sure I can get a database connection to 3006 to route to server 3 but how would I get the web interface for phpmyadmin to go to server 3 while all other web stuff (also port 80) goes to server #2 because I have a website/forum that needs to show up there.

Help please! Thanks!

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

Print this item

  Backup
Posted by: shovenose - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (10)

How do I backup my server to my Windows Server 2003 server?

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

Print this item

  python format strings
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

# format % 2
%d : '2'
%5d : ' 2'
%-5d : '2 '
%05d : '00002'
%.2e : '2.00e+000'
%.2f : '2.00'

%s : string, applying str()
%-20s : left-adjust

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 9.10 headphone jack does not work alone, (both speaker and headphone working)
Posted by: ehcpdeveloper - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (1)

The problem:
I cannot use headphone output only, under ubuntu 9.10
when listening some voice/audio, voice is sent to both headphone and speaker.


solution:

install using:

aptitude install gnome-alsamixer

then, run: gnome-alsamixer,

then, click on "headphone jack sense"

thats it..

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

  Creating Server Based Programs
Posted by: ehcpuser - 04-14-2023, 10:11 PM - Forum: General Linux - Replies (5)

Alright so here is the situation. I want to create my own ubuntu based daemon, as you did with ehcp. I am ging to make it a php application on a web server. What did you do to allow ehcp to run on a Ubuntu? What language did you make ehcp daemon out of? I know it's not just PHP, or it wouldn't install on the server. I posted what I wanted to make here.

http://ubuntuforums.org/showthread.php?p=8712689&posted=1#post8712689

Help would be appreciated.

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

Print this item

  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


Vidinli.net Shopping Platform
Vidinli.net Shopping Platform
Vidinli.net Shopping Platform